@media (min-width:1400px) {
.navbar2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    height: 80px;
    transition: all 0.3s ease;
}
}

@media (max-width:1400px) {
.navbar2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0;
    height: 80px;
    transition: all 0.3s ease;
}
}

/* Logo Styles */
.nav-logo-link {
    text-decoration: none;
    min-width: 200px;
}

.nav-logo {
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    color: #191919;
}

.nav-icon {
    height: 32px;
    width: 32px;
    margin-right: 10px;
}

/* Desktop Search Container */
.search-container {
    flex: 1;
    max-width: 830px;
    margin: 0 2rem;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    justify-content: center;
}

.search-fields {
    display: flex;
    align-items: center;
    border-radius: 12px;
    padding: 6px;
}

.search-field {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    margin-right: 6px;
    justify-content: center;
}

.search-field:last-child {
    margin-right: 0;
}

.search-input,
.location-input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: none;
    background: transparent;
    font-size: 14px;
    outline: none;
    color: #495057;
}

.search-input::placeholder,
.location-input::placeholder {
    color: #6c757d;
}

.search-icon,
.location-icon {
    position: absolute;
    left: 12px;
    color: #6c757d;
    z-index: 1;
}

/* Category Dropdown */
.dropdown-field {
    position: relative;
    min-width: 140px;
}

.category-select {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: none;
    background: transparent;
    font-size: 14px;
    outline: none;
    color: #495057;
    appearance: none;
    cursor: pointer;
}

.dropdown-arrow {
    position: absolute;
    right: 12px;
    color: #6c757d;
    pointer-events: none;
}

/* Search Button */
.search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #E91E63;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 28px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.search-btn:hover {
    background: #C2185B;
    transform: translateY(-1px);
}

/* Desktop Right Navigation */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
    justify-content: flex-end;
    margin-left: 0 !important;
}


/* Sort Container */
.sort-container {
    margin-right: 1rem;
}
/* Sort Container - Fix dropdown arrow spacing */
.sort-select {
    padding: 10px 40px 10px 16px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 14px;
    color: #495057;
    background: white;
    cursor: pointer;
    min-width: 180px;
    /* Remove default arrow and add custom one */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236c757d' xmlns='http://www.w3.org/2000/svg'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    outline: none; /* Remove default outline */
    transition: all 0.2s ease;
}

/* Keep same border color on focus/click */
.sort-select:focus {
    border-color: #dee2e6 !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Optional: Add subtle effect on hover */
.sort-select:hover {
    border-color: #E91E63;
}

/* For Firefox */
.sort-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #495057;
}


/* View Toggle */
.view-toggle {
    display: flex;
    margin-right: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.view-btn {
    padding: 10px 12px;
    background: white;
    border: none;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.2s ease;
}

.view-btn.active {
    background: #E91E63;
    color: white;
}

.view-btn:hover:not(.active) {
    background: #f8f9fa;
}

/* Filters Dropdown */
.filters-dropdown {
    position: relative;
}

.more-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid #dee2e6;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    transition: all 0.2s ease;
}

.more-btn:hover {
    background: #f8f9fa;
    border-color: #E91E63;
    color: #E91E63;
}

/* Filters Panel */
.filters-panel {
    position: absolute;
    top: 100%;
    right: -120px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 24px;
    width: 320px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    margin-top: 3px;
}

.filters-dropdown:hover .filters-panel,
.filters-panel:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Filter Section */
.filter-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: #E91E63;
    border-bottom: 2px solid #E91E63;
    padding-bottom: 4px;
}

.filter-options {
    display: flex;
    flex-direction: column;
}

/* Custom Radio Buttons */
.radio-option,
.checkbox-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #495057;
    padding: 4px 0;
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
    display: none;
}

.radio-custom,
.checkbox-custom {
    width: 16px;
    height: 16px;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    transition: all 0.2s ease;
}

.checkbox-custom {
    border-radius: 3px;
}

.radio-option input[type="radio"]:checked + .radio-custom,
.checkbox-option input[type="checkbox"]:checked + .checkbox-custom {
    border-color: #E91E63;
    background: #E91E63;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Stars */
.stars {
    color: #ffc107;
    font-size: 14px;
}

/* Filter Actions */
.filter-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.apply-filter-btn,
.reset-filter-btn {
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 12px 16px;
    font-weight: 500;
}

.apply-filter-btn {
    background: #E91E63;
    color: white;
    border: none;
}

.apply-filter-btn:hover {
    background: #C2185B;
}

.reset-filter-btn {
    background: none;
    border: 1px solid #dee2e6;
    color: #6c757d;
}

.reset-filter-btn:hover {
    background: #f8f9fa;
    color: #495057;
}

/* Mobile controls */
.mobile-controls-section {
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    margin: 20px 0;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #495057;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999 !important;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu-content {
    padding: 20px;
}

/* Responsive */
.desktop-only {}
@media (max-width: 1400px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Content spacing */
body { padding-top: 80px; }
.breadcrumb-area { margin-top: 0; }
main { padding-top: 0; }




/* ============================================
   NAVBAR2 AUTOMATIC LOGO SIZING
   ============================================ */

/* Logo Container */
.nav-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0px 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-width: 60px;
    max-width: 250px;
}

/* Automatic Logo Sizing - Fits Any Logo */
.navbar2-logo {
    max-height: 50px; /* Maximum height */
    min-height: 30px; /* Minimum height */
    max-width: 220px; /* Maximum width for wide logos */
    width: auto; /* Automatic width to maintain aspect ratio */
    height: auto; /* Automatic height */
    object-fit: contain; /* Maintain aspect ratio */
    object-position: center; /* Center the logo */
    display: block;
    transition: all 0.3s ease;
}

/* For square/icon logos - automatically adjust */
.navbar2-logo {
    aspect-ratio: attr(width) / attr(height); /* Maintains original ratio */
}

/* Hover effect (optional) */
.nav-logo-link:hover .navbar2-logo {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .navbar2-logo {
        max-height: 45px;
        max-width: 200px;
    }
}

@media (max-width: 1200px) {
    .navbar2-logo {
        max-height: 42px;
        max-width: 180px;
    }
}

@media (max-width: 1024px) {
    .navbar2-logo {
        max-height: 40px;
        max-width: 160px;
    }
}

@media (max-width: 768px) {
    .navbar2-logo {
        max-height: 36px;
        max-width: 140px;
    }

    .nav-logo {
        min-width: 50px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .navbar2-logo {
        max-height: 32px;
        max-width: 120px;
    }

    .nav-logo {
        min-width: 40px;
        max-width: 130px;
    }
}

@media (max-width: 360px) {
    .navbar2-logo {
        max-height: 28px;
        max-width: 100px;
    }
}

/* Specific handling for different logo shapes */

/* Wide text-based logos */
.navbar2-logo[style*="width: 4rem"] {
    max-width: 220px !important;
    max-height: 45px !important;
}

/* Square/icon logos */
img.navbar2-logo[src*="icon"],
img.navbar2-logo[src*="square"] {
    max-width: 55px;
    max-height: 55px;
}

/* Ensure logo doesn't break navbar layout */
.navbar2 {
    min-height: 70px; /* Ensure navbar has enough height */
}

.nav-logo {
    overflow: visible;
    flex-shrink: 0; /* Don't shrink logo container */
}



/* ============================================
   MOBILE MENU COMPLETE STYLING
   ============================================ */

/* Mobile Search Container */
.mobile-search-container {
    margin-bottom: 20px;
}

.mobile-search-container h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #E91E63;
}

.mobile-search-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-search-field {
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-search-input,
.mobile-location-input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    background: white;
}

.mobile-search-input:focus,
.mobile-location-input:focus {
    border-color: #E91E63;
}

.mobile-search-field .search-icon,
.mobile-search-field .location-icon {
    position: absolute;
    left: 12px;
    color: #6c757d;
}

/* Mobile Category Dropdown */
.mobile-search-field.dropdown-field {
    position: relative;
}

.mobile-category-select {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    color: #495057;
    appearance: none;
    cursor: pointer;
    outline: none;
}

.mobile-category-select:focus {
    border-color: #E91E63;
}

.mobile-search-field .dropdown-arrow {
    position: absolute;
    right: 12px;
    color: #6c757d;
    pointer-events: none;
}

/* Mobile Time Field */
.mobile-time-field {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-time-field:hover {
    border-color: #E91E63;
    background: #fdf2f8;
}

.mobile-time-field .clock-icon {
    color: #6c757d;
}

.mobile-time-field span {
    font-size: 14px;
    color: #495057;
}

/* Mobile Search Button */
.mobile-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #E91E63;
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-search-btn:hover {
    background: #C2185B;
}

/* Mobile Controls Section */
.mobile-controls-section {
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    margin: 20px 0;
}

.mobile-sort-container {
    margin-bottom: 15px;
}

.mobile-sort-container label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

.mobile-sort-select {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    color: #495057;
    appearance: none;
    cursor: pointer;
    outline: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236c757d' xmlns='http://www.w3.org/2000/svg'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.mobile-sort-select:focus {
    border-color: #E91E63;
}

/* Mobile View Toggle */
.mobile-view-toggle {
    display: flex;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.mobile-view-btn {
    flex: 1;
    padding: 10px;
    background: white;
    border: none;
    color: #6c757d;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.mobile-view-btn.active {
    background: #E91E63;
    color: white;
}

/* Mobile More Section */
.mobile-more-section {
    margin: 20px 0;
}

.mobile-more-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-more-btn:hover {
    background: #f8f9fa;
    border-color: #E91E63;
    color: #E91E63;
}

.mobile-more-btn .dropdown-arrow {
    transition: transform 0.3s ease;
}

.mobile-more-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mobile Filters Container */
.mobile-filters-container {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-top: 12px;
}

.mobile-filter-section {
    margin-bottom: 20px;
}

.mobile-filter-section:last-child {
    margin-bottom: 0;
}

.mobile-filter-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: #E91E63;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #E91E63;
}

.mobile-filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Mobile Radio Options */
.mobile-radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #495057;
    padding: 8px;
    background: white;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.mobile-radio-option:hover {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-radio-option input[type="radio"] {
    display: none;
}

.mobile-radio-option .radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.mobile-radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #E91E63;
    background: #E91E63;
}

.mobile-radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

/* Mobile Filter Actions */
.mobile-filter-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
}

.mobile-apply-filter-btn,
.mobile-reset-filter-btn {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.mobile-apply-filter-btn {
    background: #E91E63;
    color: white;
}

.mobile-apply-filter-btn:hover {
    background: #C2185B;
}

.mobile-reset-filter-btn {
    background: white;
    border: 1px solid #dee2e6;
    color: #6c757d;
}

.mobile-reset-filter-btn:hover {
    background: #f8f9fa;
    color: #495057;
}

/* Responsive */
@media (min-width: 1401px) {
    .mobile-menu-toggle {
        display: none !important;
    }

    .mobile-menu {
        display: none !important;
    }
}

@media (max-width: 1400px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important ;
    }
}












/* Grid Layout - Responsive Fix */
.venues-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
    justify-content: flex-start;
}

/* New Venue Card */
.venue-card-new {
     /* background: #ffffff; */
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    cursor: pointer;
    transition: all 0.3s
ease;
    /* border: 1px solid #f0f0f0; */
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
    max-width: 16%;
}


/* .venue-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
} */

/* Image Container */
.venue-image-container {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    /* background: #f5f5f5; */
}

.venue-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 12px;
}


/* .venue-card-new:hover .venue-main-image {
    transform: scale(1.05);
} */

.location-badge {
position: absolute;
    top: 5px;
    left: -1px;
    /* background: rgba(0, 0, 0, 0.75); */
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 500;
    display: flex
;
    align-items: center;
    gap: 5px;
    z-index: 4;
    font-weight: 600;
}

.location-badge svg {
    flex-shrink: 0;
    margin-top: 3px;
}

/* Status Badge - Top Right */
.status-badge {
    position: absolute;
    top: 9px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
}

.badge-open {
    background: #4CAF50;
    color: white;
}

.badge-closed {
    background: #f44336;
    color: white;
}

/* Image Navigation Dots */
.image-dots {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 6px;
    z-index: 2;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    width: 20px;
    border-radius: 10px;
}

/* Next Arrow */
.image-arrow {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.image-arrow:hover {
    background: #e91e63;
}

.image-arrow:hover svg {
    stroke: white;
}

.image-arrow svg {
    stroke: #333;
    transition: stroke 0.3s ease;
}

/* Card Content */
.venue-card-content {
    padding: 7px;
}

.venue-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.venue-card-new:hover .venue-card-title {
    color: #e91e63;
    text-decoration: underline;
    text-decoration-color: #e91e63;
    text-transform: none;
}

/* Features List */
.venue-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.feature-item {
    font-size: 13px;
    color: #666;
    position: relative;
    padding-right: 12px;
    font-weight: 500;
}

.feature-item:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: 0;
    color: #ddd;
}

.feature-item:last-child {
    padding-right: 0;
}

/* Bottom Info */
.venue-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid #f0f0f0;
    padding-top: 11px;
}

/* Price */
.venue-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-duration {
    font-size: 12px;
    color: #999;
}

.price-amount {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

/* Rating */
.venue-rating-box {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rating-score {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.rating-stars-small {
    display: flex;
    gap: 2px;
}

.star-small {
    font-size: 14px;
    color: #ddd;
}

.star-small.filled {
    color: #FFD700;
}

.rating-count {
    font-size: 12px;
    color: #999;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .venue-card-new {
        flex: 0 1 calc(33.333% - 20px);
        min-width: 280px;
    }
}

@media (max-width: 1200px) {
    .venues-grid {
        gap: 25px;
    }

    .venue-card-new {
        flex: 0 1 calc(50% - 12.5px);
        min-width: 300px;
    }
}

@media (max-width: 992px) {
    .venue-card-new {
        flex: 0 1 calc(50% - 12.5px);
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .venues-grid {
        gap: 20px;
        justify-content: center;
    }

    .venue-card-new {
        flex: 0 1 100%;
        max-width: 450px;
        min-width: 0;
    }

    .venue-image-container {
        height: 220px;
    }

    .venue-card-content {
        padding: 16px;
    }

    .venue-card-title {
        font-size: 16px;
    }

    .feature-item {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .venue-image-container {
        height: 200px;
    }

    .location-badge,
    .status-badge {
        font-size: 12px;
        padding: 5px 10px;
    }

    .image-arrow {
        width: 32px;
        height: 32px;
    }

    .image-arrow svg {
        width: 16px;
        height: 16px;
    }

    .venue-card-new {
        flex: 0 1 100%;
        max-width: 400px;
    }
}

@media (max-width: 360px) {
    .venue-card-new {
        max-width: 100%;
    }
}

/* Pagination Styling */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination-wrapper .pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-wrapper .page-item {
    margin: 0;
}

.pagination-wrapper .page-link {
    padding: 10px 16px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
    background: #fff;
}

.pagination-wrapper .page-link:hover {
    background: #E91E63;
    color: white;
    border-color: #E91E63;
}

.pagination-wrapper .page-item.active .page-link {
    background: #E91E63;
    color: white;
    border-color: #E91E63;
}

.pagination-wrapper .page-item.disabled .page-link {
    background: #f8f9fa;
    color: #999;
    cursor: not-allowed;
}

/* Info Box Styling */
.info-box {
    text-align: center;
    padding: 80px 20px;
    background: #fafbfc;
    border-radius: 20px;
    margin: 40px 0;
}

.info-icon {
    font-size: 64px;
    color: #E91E63;
    margin-bottom: 20px;
}

.info__title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
}










