/* ========================================
   Business Profile Modern - Complete Styles
   ======================================== */

:root {
    /* Modern Color Palette */
    --primary: #00a4ff;
    --primary-dark: #0284C7;
    --primary-light: #7DD3FC;
    --secondary: #8B5CF6;
    --secondary-dark: #7C3AED;
    --accent: #EC4899;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;

    /* Gradients */
    --primary-gradient: linear-gradient(135deg, #0EA5E9 0%, #2563EB 100%);
    --secondary-gradient: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    --success-gradient: linear-gradient(135deg, #059669 0%, #10b981 100%);
    --warm-gradient: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);

    /* Neutral Colors */
    --dark: #0f172a;
    --text-dark: #0f172a;
    --text-medium: #475569;
    --text-light: #00b6ff;
    --text-lighter: #94a3b8;
    --light: #f8fafc;
    --light-dark: #f1f5f9;
    --light-darker: #e2e8f0;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --white: #ffffff;
    --border-color: #00b6ff;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 16px 48px rgba(15, 23, 42, 0.16);
    --shadow-2xl: 0 24px 64px rgba(15, 23, 42, 0.20);
    --shadow-primary: 0 8px 24px rgba(14, 165, 233, 0.25);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
}

/* ========================================
   Hero Section - Modern Gradient
   ======================================== */

.hero-modern-gradient {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}


.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
    rgba(60, 55, 55, 0.95) 0%,
    rgba(40, 38, 43, 0.92) 50%,
    rgba(29, 27, 28, 0.9) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 50px 0;
}

/* Business Profile Card */
.business-profile-card {
    border-radius: 32px;
    padding: 48px;
    max-width: 700px;
    margin: 0 auto;
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.container-contend{
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-avatar-section {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 32px;
}

.avatar-glow {
    position: absolute;
    inset: -20px;
    background: var(--primary-gradient);
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.4;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.business-avatar {
    position: relative;
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 90px;
    padding: 8px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.business-avatar:hover {
    transform: scale(1.05) rotate(2deg);
}

.verified-badge {
    position: absolute;
    bottom: 10px;
    right: 1px;
    width: 14px;
    height: 14px;
    background: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@keyframes stamp {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

.business-name {
    font-size: 62px;
    font-weight: 700;
    color: var(--light);
    background-clip: text;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.2;
}

.business-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 32px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--light);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.meta-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.meta-item i {
    color: var(--primary);
    font-size: 16px;
}

/* Stats Row */
.stats-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 0 0 auto;
    min-width: 250px;
    padding: 16px 12px;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.stat-icon-wrapper,
.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00b6ff 0%, #ffffff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

.stat-icon-wrapper i,
.stat-icon i {
    color: white;
    font-size: 26px;
}

.stat-content {
    text-align: center;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    text-align: center;
}

.stat-value.status-open {
    color: var(--success);
}

.stat-value.status-closed {
    color: var(--danger);
}

.stat-label {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
    text-align: center;
    line-height: 1.3;
    margin-top: 15px;
}


/* ========================================
   Booking Bar Sticky
   ======================================== */

.booking-bar-sticky {
    background: var(--white);
    box-shadow: 0 4px 24px rgb(148, 219, 255);
    padding: 24px 0;
    width: 80%;
    bottom: 70px;
    position: relative;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 90px;
    margin: auto;
}

.bookingbar-container{
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.booking-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

.field-label i {
    color: var(--primary);
    font-size: 25px;
}

.field-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 18px;
    transition: var(--transition);
    background: var(--white);
    cursor: pointer;
}

.field-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
}

/* Occupancy Dropdown */
.occupancy-field {
    position: relative;
}

.occupancy-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-weight: 500;
    cursor: pointer;
}

.occupancy-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
}

.occupancy-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.occupancy-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.occupancy-row:last-of-type {
    border-bottom: none;
}

.occupancy-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.counter-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.counter-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.counter-value {
    font-size: 16px;
    font-weight: 700;
    min-width: 32px;
    text-align: center;
}

.apply-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 16px;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.search-btn {
    padding: 14px 32px;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Main Content Section
   ======================================== */

.main-content-section {
    padding: 5px 0;
}

/* Content Tabs */
.content-tabs {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 12px;
    margin-bottom: 40px;
    position: sticky;
    top: 100px;
    z-index: 99;
    display: flex;
    gap: 8px;
    overflow-x: auto;
}

.content-tabs::-webkit-scrollbar {
    height: 4px;
}

.content-tabs::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.tab-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.tab-link:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.tab-link.active {
    background: var(--primary-gradient);
    color: var(--white);
}


.tab-link i {
    font-size: 18px;
}

/* Tab Content */
.tab-content-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 80px 50px;
    box-shadow: var(--shadow-sm);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ========================================
   Product Cards - Modern Design
   ======================================== */

.product-list-item {
    margin-bottom: 24px;
}

.product-card-modern {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-modern:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary);
}

/* Product Image Container */
.product-image-container {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 aspect ratio */
    overflow: hidden;
    background: var(--light);
}

.product-image-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card-modern:hover .product-image {
    transform: scale(1.05);
}

/* Wishlist Button */
.product-wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.product-wishlist-btn:hover {
    background: var(--danger);
    color: var(--white);
    transform: scale(1.1);
}

.product-wishlist-btn i {
    font-size: 18px;
    color: var(--danger);
    transition: var(--transition);
}

.product-wishlist-btn:hover i {
    color: var(--white);
}

.product-wishlist-btn.active {
    background: var(--danger);
}

.product-wishlist-btn.active i {
    color: var(--white);
    font-weight: 900;
}

/* Featured Ribbon */
.featured-ribbon {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold-gradient);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    z-index: 9;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.featured-ribbon i {
    font-size: 14px;
}

/* Discount Badge */
.discount-badge {
    position: absolute;
    top: 60px;
    left: 12px;
    background: var(--danger);
    color: var(--white);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9;
    box-shadow: var(--shadow-md);
    min-width: 60px;
}

.discount-value {
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2px;
}

.discount-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card-modern:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white);
    transform: translateY(20px);
    transition: var(--transition);
}

.product-card-modern:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 32px;
}

.overlay-content span {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gallery Indicator */
.gallery-indicator {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    z-index: 8;
}

.gallery-indicator i {
    font-size: 14px;
}

/* Availability Badge */
.availability-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    z-index: 8;
    backdrop-filter: blur(8px);
}

.availability-badge.available {
    background: rgba(16, 185, 129, 0.9);
    color: var(--white);
}

.availability-badge.sold-out {
    background: rgba(239, 68, 68, 0.9);
    color: var(--white);
}

.availability-badge i {
    font-size: 14px;
}

/* Deal Timer */
.deal-timer {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(239, 68, 68, 0.95);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    z-index: 9;
    box-shadow: var(--shadow-md);
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.deal-timer i {
    font-size: 14px;
}

/* Product Details Container */
.product-details-container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

/* Product Header */
.product-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.product-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.product-category-badge i {
    font-size: 11px;
}

/* Product Title */
.product-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    flex: 1;
    min-width: 0;
}

.product-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title a:hover {
    color: var(--primary);
}

/* Product Info Grid */
.product-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.info-item:hover {
    background: var(--light-dark);
    transform: translateY(-2px);
}

.info-item i {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 4px;
}

.info-label {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
}

/* Product Footer */
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

/* Price Container */
.price-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-label {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.currency {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-medium);
}

.amount {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

/* Reserve Button */


/* ========================================
   Filters Section
   ======================================== */

.filters-section {
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 32px;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.filter-item {
    position: relative;
    display: flex;
    align-items: center;
}

.filter-item i {
    position: absolute;
    left: 16px;
    color: var(--text-light);
    font-size: 16px;
    z-index: 2;
}

.filter-select,
.filter-input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 14px;
    background: var(--white);
    transition: var(--transition);
}

.filter-select:focus,
.filter-input:focus {
    outline: none;
    border-color: var(--primary);
}

.search-filter {
    grid-column: span 1;
}

/* ========================================
   Categories Section
   ======================================== */

.categories-section {
    margin-bottom: 40px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.section-title i {
    color: var(--primary);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 -1px 14px rgb(148, 219, 255);
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-name {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

/* ========================================
   Products Section
   ======================================== */

.products-section {
    width: 100%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon {
    font-size: 64px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.empty-state i {
    font-size: 64px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.empty-state h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.empty-state p {
    color: var(--text-light);
}

/* ========================================
   About Section
   ======================================== */

.about-section {
    max-width: 800px;
}

.page-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.about-text p {
    margin-bottom: 16px;
}

/* ========================================
   Gallery Section
   ======================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 165, 233, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 32px;
}

/* ========================================
   Facilities Section
   ======================================== */

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.facility-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
    width: 100%;
    max-width: 200px;
}

.facility-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.facility-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.facility-name {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

/* ========================================
   Hours Section
   ======================================== */

.hours-section {
    width: 100%;
}

.hours-list {
    width: 100%;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item:hover {
    background: var(--bg-light);
}

.hours-day {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.hours-day i {
    color: var(--primary);
}

.hours-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
}

.hours-time i {
    font-size: 12px;
}

.time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.badge {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.badge-closed {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.badge-undefined {
    background: var(--bg-light);
    color: var(--text-light);
}

/* ========================================
   Location Section
   ======================================== */

.location-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
}

.location-icon i {
    font-size: 32px;
    color: var(--white);
}

.location-details {
    flex: 1;
}

.location-details h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.address i {
    margin-top: 4px;
    color: var(--primary);
    font-size: 16px;
}

.location-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.location-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.location-btn i {
    font-size: 18px;
}

.location-btn.primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.location-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
}

.location-btn.secondary {
    background: var(--success-gradient);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.location-btn.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.location-btn.tertiary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.location-btn.tertiary:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.map-wrapper {
    width: 100%;
    margin-bottom: 40px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--white);
    position: relative;
}

.map-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    z-index: -1;
}

/* ========================================
   Location Section - Modern Design
   ======================================== */

.location-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.location-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.location-header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.location-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon-wrapper i {
    font-size: 28px;
    color: white;
}

.location-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0 0 4px 0;
}

.location-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.location-info-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.location-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.location-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(237, 100, 166, 0.1) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.info-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    word-break: break-word;
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.location-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    flex: 1;
    justify-content: center;
    min-width: 160px;
}

.location-action-btn.primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.location-action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.location-action-btn.secondary {
    background: var(--light);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.location-action-btn.secondary:hover {
    background: var(--light-dark);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.location-action-btn.tertiary {
    background: var(--success);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.location-action-btn.tertiary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.location-action-btn i {
    font-size: 16px;
}

.map-container {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.location-map {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: var(--radius-md);
}

/* ========================================
   Video Section
   ======================================== */

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ========================================
   Ads Section
   ======================================== */

.ads-section {
    padding: 80px 0;
}

.section-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 48px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 100%;
    justify-content: center;
}

.section-heading i {
    color: var(--warning);
    -webkit-text-fill-color: var(--warning);
}

.ads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.ad-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
}

.ad-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.ad-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ad-card:hover .ad-image img {
    transform: scale(1.1);
}

.placeholder-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.placeholder-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    z-index: 1;
}

.placeholder-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(226, 232, 240, 0.6) 0%, rgba(203, 213, 225, 0.3) 100%);
    border-radius: 50%;
    z-index: 2;
    animation: pulseRing 3s ease-in-out infinite;
}

.placeholder-icon i {
    position: relative;
    z-index: 3;
    font-size: 64px;
    color: #94a3b8;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-shadow: 0 4px 12px rgba(148, 163, 184, 0.2);
}

.ad-card:hover .placeholder-icon {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #cbd5e1 100%);
}

.ad-card:hover .placeholder-icon i {
    color: #64748b;
    transform: scale(1.15) rotate(-5deg);
    text-shadow: 0 6px 16px rgba(100, 116, 139, 0.3);
}

.ad-card:hover .placeholder-icon::after {
    animation: pulseRingHover 0.6s ease-out;
}

@keyframes pulseRing {
    0% {
        width: 100px;
        height: 100px;
        opacity: 0.6;
    }
    50% {
        width: 140px;
        height: 140px;
        opacity: 0.3;
    }
    100% {
        width: 100px;
        height: 100px;
        opacity: 0.6;
    }
}

@keyframes pulseRingHover {
    0% {
        width: 100px;
        height: 100px;
        opacity: 0.8;
    }
    100% {
        width: 160px;
        height: 160px;
        opacity: 0;
    }
}

.ad-content {
    padding: 20px;
}

.ad-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.ad-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* ========================================
   Responsive Design
   ======================================== */

/* ========================================
   RESPONSIVE - TABLET (1024px)
   ======================================== */
@media (max-width: 1024px) {
    .hero-modern-gradient {
        min-height: 75vh;
    }

    .hero-content-wrapper {
        padding: 60px 0;
    }

    .business-profile-card {
        padding: 60px 32px;
        margin-top: 30px;
    }

    .business-name {
        font-size: 38px;
    }

    .stats-row {
        gap: 10px;
    }

    .stat-item {
        min-width: 120px;
        padding: 14px 10px;
        height: 100px;
    }
    .stat-icon {
        width: 25px;
        height: 25px;
        background: linear-gradient(135deg, #00b6ff 0%, #ffffff 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 2px;
    }
    .stat-icon i{
        color: #0ca8fd;
        font-size: 12px;
    }

    .stat-value{
        font-size: 16px;
    }

    .stat-label{
        font-size: 10px;
        margin-top: 5px;
    }

    .stat-value.status-open{
        font-size: 16px;

    }

    .field-label i{
        font-size: 15px;
    }

    .field-label{
        font-size: 14px;
    }

    /* Booking Bar - Compact Row Style Layout */
    .booking-bar-sticky {
        padding: 20px 20px;
        height: auto;
    }

    .booking-form {
        width: 100%;
        max-width: 100%;
    }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr auto;
        gap: 10px;
        align-items: end;
    }

    .form-field {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .field-label {
        font-size: 11px;
        font-weight: 600;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .field-label i {
        font-size: 11px;
    }

    .field-input {
        width: 100%;
        padding: 8px 10px;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        font-size: 12px;
        transition: var(--transition);
        background: var(--white);
        cursor: pointer;
        min-height: 36px;
    }

    .occupancy-trigger {
        width: 100%;
        padding: 8px 10px;
        font-size: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 43px;
    }

    .search-btn {
        padding: 8px 16px;
        background: var(--primary-gradient);
        color: var(--white);
        border: none;
        border-radius: var(--radius-md);
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        white-space: nowrap;
        min-height: 36px;
        height: 36px;
    }

    .search-btn i {
        font-size: 13px;
    }

    /* Occupancy Dropdown - Compact */
    .occupancy-dropdown {
        max-width: 350px;
        padding: 14px;
    }

    .occupancy-row {
        padding: 8px 0;
    }

    .occupancy-label {
        font-size: 12px;
    }

    .counter-controls {
        gap: 12px;
    }

    .counter-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .counter-value {
        font-size: 13px;
        min-width: 30px;
    }

    .apply-btn {
        padding: 10px 16px;
        font-size: 12px;
        margin-top: 8px;
    }

    .content-tabs {
        gap: 6px;
        padding: 10px;
    }

    .tab-link {
        padding: 10px 16px;
        font-size: 14px;
    }

    .tab-content-wrapper {
        padding: 32px;
    }

    /* Filters - Compact Row Style (1024px) */
    .filters-section {
        padding: 16px;
        margin-bottom: 24px;
        border-radius: var(--radius-lg);
    }

    .filters-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
        align-items: center;
    }

    .filter-item {
        position: relative;
    }

    .filter-item i {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 13px;
        color: var(--text-light);
        z-index: 2;
    }

    .filter-select,
    .filter-input {
        width: 100%;
        padding: 9px 12px 9px 36px;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        font-size: 12px;
        background: var(--white);
        min-height: 38px;
        transition: var(--transition);
    }

    .filter-select:focus,
    .filter-input:focus {
        border-color: var(--primary);
    }

    .search-filter {
        grid-column: span 1;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }

    .location-header {
        padding: 28px;
    }

    .location-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-map {
        height: 450px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .facilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    /* ==========================================
       Product List Item - Desktop (1024px)
       ========================================== */
    .product-list-item {
        margin-bottom: 18px;
    }

    .product-details-container {
        padding: 18px 16px;
    }

    .product-title {
        font-size: 17px;
    }

    .product-category-badge {
        padding: 6px 12px;
        font-size: 11px;
    }

    .info-item {
        padding: 11px 8px;
    }

    .info-item i {
        font-size: 19px;
    }

    .info-label {
        font-size: 10px;
    }

    .info-value {
        font-size: 15px;
    }

    .price-label {
        font-size: 10px;
    }

    .price-amount .currency {
        font-size: 13px;
    }

    .price-amount .amount {
        font-size: 22px;
    }

    .btn-reserve-modern {
        padding: 10px 16px;
        font-size: 13px;
    }

    .product-wishlist-btn {
        width: 38px;
        height: 38px;
    }

    .featured-ribbon {
        padding: 7px 14px;
        font-size: 12px;
    }

    .discount-badge {
        padding: 9px 13px;
        min-width: 58px;
    }

    .discount-value {
        font-size: 17px;
    }

    .discount-label {
        font-size: 9px;
    }
}

/* ========================================
   RESPONSIVE - TABLET (768px)
   ======================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero-modern-gradient {
        min-height: 70vh;
        top: 0;
    }

    .hero-content-wrapper {
        padding: 45px 0;
        margin-top: 60px;
    }

    .business-profile-card {
        padding: 35px 28px;
    }

    .profile-avatar-section,
    .business-avatar {
        width: 115px;
        height: 115px;
    }

    .verified-badge {
        width: 11px;
        height: 11px;
        bottom: 8px;
        right: 8px;
    }

    .business-name {
        font-size: 34px;
        margin-bottom: 14px;
    }

    .business-meta {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 28px;
    }

    .meta-item {
        padding: 9px 14px;
        font-size: 12px;
        flex: 0 0 auto;
    }

    .meta-item i {
        font-size: 12px;
    }

    .stats-row {
        flex-direction: row;
        justify-content: center;
        gap: 9px;
        margin-top: 28px;
    }

    .stat-item {
        min-width: 110px;
        padding: 13px 9px;
        flex-direction: column;
        align-items: center;
    }

    .stat-icon-wrapper,
    .stat-icon {
        width: 34px;
        height: 34px;
        margin-bottom: 2px;
    }

    .stat-icon-wrapper i,
    .stat-icon i {
        font-size: 15px;
    }

    .stat-value {
        font-size: 17px;
        text-align: center;
    }

    .stat-label {
        font-size: 10px;
        text-align: center;
    }

    /* Booking Bar - Compact Row Style (768px) */
    .booking-bar-sticky {
        padding: 20px 20px;
        height: auto;
        top:  -50px;
    }

    .booking-form {
        width: 100%;
        max-width: 100%;
    }

    .main-content-section{
        padding: 5px 0;
    }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr auto;
        gap: 8px;
        align-items: end;
    }

    .form-field {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .field-label {
        font-size: 10px;
        font-weight: 600;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        gap: 3px;
    }

    .field-label i {
        font-size: 10px;
    }

    .field-input {
        width: 100%;
        padding: 7px 9px;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        font-size: 11px;
        transition: var(--transition);
        background: var(--white);
        cursor: pointer;
        min-height: 32px;
    }

    .occupancy-trigger {
        width: 100%;
        padding: 7px 9px;
        font-size: 11px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 39px;
    }

    .search-btn {
        padding: 7px 14px;
        background: var(--primary-gradient);
        color: var(--white);
        border: none;
        border-radius: var(--radius-md);
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        white-space: nowrap;
        min-height: 32px;
        height: 39px;
    }

    .search-btn i {
        font-size: 12px;
    }

    /* Occupancy Dropdown - Compact (768px) */
    .occupancy-dropdown {
        max-width: 320px;
        padding: 12px;
    }

    .occupancy-row {
        padding: 7px 0;
    }

    .occupancy-label {
        font-size: 11px;
    }

    .counter-controls {
        gap: 10px;
    }

    .counter-btn {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .counter-value {
        font-size: 12px;
        min-width: 28px;
    }

    .apply-btn {
        padding: 9px 14px;
        font-size: 11px;
        margin-top: 7px;
    }

    .content-tabs {
        overflow-x: auto;
        gap: 2px;
        padding: 3px;
        margin-bottom: 20px;
    }

    .tab-link {
        font-size: 10px;
        white-space: nowrap;
    }
    .tab-content-wrapper {
        padding: 14px;
    }

    /* Filters - Compact Row Style (768px) */
    .filters-section {
        padding: 14px;
        margin-bottom: 20px;
        border-radius: var(--radius-lg);
    }

    .filters-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
        align-items: center;
    }

    .filter-item {
        position: relative;
    }

    .filter-item i {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 11px;
        color: var(--text-light);
        z-index: 2;
    }

    .filter-select,
    .filter-input {
        width: 100%;
        padding: 8px 10px 8px 32px;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        font-size: 11px;
        background: var(--white);
        min-height: 34px;
        transition: var(--transition);
    }

    .filter-select:focus,
    .filter-input:focus {
        border-color: var(--primary);
    }

    .search-filter {
        grid-column: span 1;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }

    .location-header {
        padding: 24px;
    }

    .location-header-content {
        flex-direction: column;
        text-align: center;
    }

    .location-title {
        font-size: 24px;
    }

    .location-info-card {
        padding: 24px;
    }

    .location-info-grid {
        grid-template-columns: 1fr;
    }

    .location-actions {
        flex-direction: column;
    }

    .location-action-btn {
        width: 100%;
        min-width: auto;
    }

    .location-map {
        height: 350px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .facilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    }

    .facility-card {
        max-width: 100%;
    }

    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .ads-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    }

    .section-heading {
        font-size: 24px;
    }

    /* ==========================================
       Product List Item - Compact for Tablet (768px)
       ========================================== */
    .product-list-item {
        width: 100%;
        margin-bottom: 12px;
    }

    .product-card-modern {
        display: flex;
        flex-direction: column;
        height: 100%;
        border-radius: var(--radius-md);
    }

    .product-image-container {
        width: 100%;
        padding-top: 75%;
    }

    .product-details-container {
        padding: 14px 12px;
        gap: 10px;
    }

    /* Product Header */
    .product-header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 8px;
        margin-bottom: 10px;
        flex-wrap: nowrap;
    }

    .product-title {
        font-size: 14px;
        line-height: 1.3;
        margin: 0;
        flex: 1 1 auto;
        min-width: 0;
    }

    .product-title a {
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-category-badge {
        padding: 4px 8px;
        font-size: 9px;
        border-radius: 4px;
        flex-shrink: 0;
        align-self: flex-start;
    }

    .product-category-badge i {
        font-size: 8px;
    }

    /* Product Info Grid */
    .product-info-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important;
    }

    .info-item {
        padding: 8px 4px;
        border-radius: 4px;
    }

    .info-item i {
        font-size: 14px;
        margin-bottom: 3px;
    }

    .info-label {
        font-size: 8px;
        letter-spacing: 0.3px;
    }

    .info-value {
        font-size: 12px;
        font-weight: 700;
    }

    /* Product Footer */
    .product-footer {
        gap: 10px;
        padding-top: 10px;
        border-top: 1px solid var(--border-color);
    }

    .price-container {
        gap: 3px;
    }

    .price-label {
        font-size: 8px;
    }

    .price-amount {
        gap: 3px;
    }

    .price-amount .currency {
        font-size: 11px;
    }

    .price-amount .amount {
        font-size: 18px;
        font-weight: 800;
    }

    /* Reserve Button */
    .btn-reserve-modern {
        padding: 7px 11px;
        font-size: 11px;
        gap: 4px;
        border-radius: 6px;
        white-space: nowrap;
    }

    .btn-reserve-modern i {
        font-size: 10px;
    }

    /* Badges - Much Smaller for Tablet */
    .product-wishlist-btn {
        width: 32px;
        height: 32px;
        top: 8px;
        right: 8px;
    }

    .product-wishlist-btn i {
        font-size: 14px;
    }

    .featured-ribbon {
        padding: 5px 10px;
        font-size: 9px;
        top: 8px;
        left: 8px;
        border-radius: 4px;
        gap: 4px;
    }

    .featured-ribbon i {
        font-size: 9px;
    }

    .featured-ribbon span {
        font-size: 9px;
    }

    .discount-badge {
        top: 42px;
        left: 8px;
        padding: 7px 9px;
        min-width: 42px;
        border-radius: 4px;
    }

    .discount-value {
        font-size: 14px;
        margin-bottom: 1px;
    }

    .discount-label {
        font-size: 7px;
        letter-spacing: 0.5px;
    }

    .gallery-indicator {
        left: 8px;
        bottom: 8px;
        padding: 4px 8px;
        font-size: 9px;
        gap: 4px;
        border-radius: 4px;
    }

    .gallery-indicator i {
        font-size: 9px;
    }

    .gallery-indicator span {
        font-size: 9px;
    }

    .availability-badge {
        right: 8px;
        bottom: 8px;
        padding: 4px 8px;
        font-size: 9px;
        gap: 4px;
        border-radius: 4px;
    }

    .availability-badge.available {
        background: rgba(16, 185, 129, 0.9);
        color: var(--white);
    }

    .availability-badge.sold-out {
        background: rgba(239, 68, 68, 0.9);
        color: var(--white);
    }

    .availability-badge i {
        font-size: 9px;
    }

    .availability-badge span {
        font-size: 9px;
    }

    .deal-timer {
        padding: 5px 10px;
        font-size: 9px;
        top: 8px;
        gap: 4px;
        border-radius: 12px;
    }

    .deal-timer i {
        font-size: 9px;
    }

    .deal-timer .timer-text {
        font-size: 9px;
    }

    /* Image Overlay */
    .image-overlay {
        background: rgba(0, 0, 0, 0.6);
    }

    .overlay-content i {
        font-size: 26px;
    }

    .overlay-content span {
        font-size: 11px;
    }

    .ads-section{
        padding: 30px 0;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (480px)
   ======================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-bg-image {
        margin-top: 80px;
        height: 300px;
        width: 100%;
    }

    .hero-gradient-overlay{
        height: 480px;
    }

    .hero-modern-gradient {
        min-height: 70vh;
    }

    .hero-content-wrapper {
        margin-top: 10px;
        padding: 20px 0;
        min-height: auto;
    }

    .business-profile-card {
        padding: 24px 20px;
        border-radius: 24px;
        height: auto;
    }

    .profile-avatar-section {
        width: 90px;
        height: 90px;
        margin: 0 auto 16px;
    }

    .business-avatar {
        width: 90px;
        height: 90px;
        border-radius: 45px;
    }

    .avatar-glow {
        position: absolute;
        inset: -15px;
        background: var(--primary-gradient);
        border-radius: 50%;
        filter: blur(25px);
        opacity: 0.4;
        animation: glow 3s ease-in-out infinite;
    }

    .verified-badge {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .business-name {
        font-size: 28px;
        margin-bottom: 12px;
        font-weight: 700;
        line-height: 1.2;
    }

    .business-meta {
        gap: 8px;
        margin-bottom: 20px;
        /* flex-direction: column; */
        align-items: center;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .meta-item {
        padding: 3px 5px;
        font-size: 8px;
        width: 100%;
        justify-content: center;
    }

    .meta-item i {
        font-size: 10px;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr 1fr;
        display: grid;
        gap: 5px;
        padding: 5px;
        margin: 1px;
        border-radius: 10px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.92) 100%);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 4px 16px rgba(14, 165, 233, 0.06), 0 1px 4px rgba(0, 0, 0, 0.02);
    }

    .stat-item {
        padding: 5px;
        height: 70px;
        border-radius: 10px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 5px;
        text-align: left;
        width: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.88) 100%);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 2px 8px rgba(14, 165, 233, 0.04), 0 1px 2px rgba(0, 0, 0, 0.01);
        transition: all 0.3s ease;
    }

    .stat-item:active {
        transform: scale(0.97);
        box-shadow: 0 1px 4px rgba(14, 165, 233, 0.05);
    }

    .stat-divider {
        display: none;
    }

    .stat-icon,
    .stat-icon-wrapper {
        width: 30px;
        height: 30px;
        border-radius: 10px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
    }

    .stat-icon i {
        font-size: 16px;
    }

    .stat-content {
        text-align: left;
        flex: 1;
    }

    .stat-value {
        font-size: 16px;
        font-weight: 800;
        line-height: 1;
        margin-bottom: 2px;
    }

    .stat-value.status-open,
    .stat-value.status-closed {
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .stat-label {
        font-size: 8px;
        margin-top: 0px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .pulse-dot {
        width: 8px;
        height: 8px;
    }

    /* Booking Bar - Mobile Optimized */
    .booking-bar-sticky {
        padding: 16px 0;
        width: 90%;
        border-radius: 20px;
        box-shadow: 0 4px 16px rgba(148, 219, 255, 0.4);
        margin-bottom: 1px;
        margin-top: 70px;
    }

    .booking-form {
        padding: 0 12px;
    }

    .form-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .form-field {
        display: flex;
        flex-direction: column;
        gap: 6px;
        width: 100%;
    }

    .field-label {
        font-size: 12px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 6px;
        color: var(--text-dark);
    }

    .field-label i {
        font-size: 14px;
        color: var(--primary);
    }

    .field-input {
        width: 100%;
        padding: 12px 14px;
        border: 2px solid var(--border-color);
        border-radius: 12px;
        font-size: 13px;
        background: var(--white);
        transition: var(--transition);
        min-height: 42px;
    }

    .field-input:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.1);
    }

    .occupancy-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        text-align: left;
        font-size: 13px;
        padding: 12px 14px;
    }

    .occupancy-trigger i {
        font-size: 12px;
    }

    .occupancy-dropdown {
        left: 0;
        right: 0;
        padding: 14px;
        border-radius: 14px;
        margin-top: 6px;
    }

    .occupancy-row {
        padding: 12px 0;
    }

    .occupancy-label {
        font-size: 13px;
        font-weight: 700;
    }

    .counter-controls {
        gap: 12px;
    }

    .counter-btn {
        width: 32px;
        height: 32px;
        border: 2px solid var(--border-color);
        font-size: 14px;
        border-radius: 8px;
    }

    .counter-value {
        font-size: 15px;
        font-weight: 800;
        min-width: 30px;
        text-align: center;
    }

    .apply-btn {
        padding: 12px;
        font-size: 13px;
        font-weight: 700;
        margin-top: 12px;
        border-radius: 12px;
    }

    .search-btn {
        width: 100%;
        padding: 13px 16px;
        font-size: 14px;
        font-weight: 700;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: var(--primary-gradient);
        color: white;
        border: none;
        box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
    }

    .search-btn i {
        font-size: 13px;
    }

    .search-btn:hover {
        transform: translateY(0);
        box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
    }

    /* Filters Section - Mobile Optimized */
    .filters-section {
        padding: 12px;
        margin-bottom: 16px;
        border-radius: 12px;
        background: var(--white);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .filters-grid {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .filter-item {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
    }

    .filter-item i {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 12px;
        color: var(--text-light);
        z-index: 2;
        pointer-events: none;
    }

    .filter-select,
    .filter-input {
        width: 100%;
        padding: 10px 12px 10px 36px;
        border: 1.5px solid var(--border-color);
        border-radius: 10px;
        font-size: 12px;
        background: var(--white);
        transition: var(--transition);
        min-height: 38px;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300b6ff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        padding-right: 32px;
    }

    .filter-input {
        background-image: none;
        padding-right: 12px;
    }

    .filter-select:focus,
    .filter-input:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.1);
    }

    .filter-select option {
        padding: 10px;
        font-size: 12px;
    }

    .search-filter {
        width: 100%;
    }

    .search-filter .filter-input {
        background-image: none;
    }

    /* Filter Apply Button (if exists) */
    .filter-apply-btn,
    .apply-filters-btn {
        width: 100%;
        padding: 10px 16px;
        background: var(--primary-gradient);
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 12px;
        font-weight: 600;
        margin-top: 8px;
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

    .filter-apply-btn:hover,
    .apply-filters-btn:hover {
        box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
    }

    /* Filter Reset Button */
    .filter-reset-btn,
    .reset-filters-btn {
        width: 100%;
        padding: 8px 16px;
        background: transparent;
        color: var(--text-light);
        border: 1.5px solid var(--border-color);
        border-radius: 10px;
        font-size: 11px;
        font-weight: 600;
        margin-top: 6px;
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

    .filter-reset-btn:hover,
    .reset-filters-btn:hover {
        border-color: var(--danger);
        color: var(--danger);
    }

    .content-tabs {
        padding: 6px;
    }

    .tab-link {
        padding: 8px 12px;
        font-size: 12px;
    }

    .tab-content-wrapper {
        padding: 20px 16px;
    }

    .section-title {
        font-size: 18px;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 10px;
    }

    .category-card {
        padding: 12px;
    }

    .category-image {
        width: 50px;
        height: 50px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Product List Item - Mobile Optimized */
    .product-list-item {
        width: 100%;
        margin-bottom: 16px;
    }

    .product-card-modern {
        display: flex;
        flex-direction: column;
        height: 100%;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        background: var(--white);
    }

    .product-card-modern:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

    /* Product Image Container */
    .product-image-container {
        width: 100%;
        padding-top: 70%;
        position: relative;
        overflow: hidden;
        background: var(--light);
    }

    .product-image-link {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
    }

    .product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .product-card-modern:hover .product-image {
        transform: scale(1.03);
    }

    /* Wishlist Button - Mobile Optimized */
    .product-wishlist-btn {
        position: absolute;
        top: 8px;
        right: 8px;
        width: 34px;
        height: 34px;
        background: rgba(255, 255, 255, 0.95);
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        transition: var(--transition);
    }

    .product-wishlist-btn i {
        font-size: 14px;
        color: var(--danger);
    }

    .product-wishlist-btn:active {
        transform: scale(0.95);
    }

    .product-wishlist-btn.active {
        background: var(--danger);
    }

    .product-wishlist-btn.active i {
        color: var(--white);
    }

    /* Featured Ribbon - Mobile */
    .featured-ribbon {
        position: absolute;
        top: 8px;
        left: 8px;
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
        color: var(--white);
        padding: 5px 10px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 9px;
        font-weight: 700;
        z-index: 9;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .featured-ribbon i {
        font-size: 9px;
    }

    .featured-ribbon span {
        font-size: 9px;
    }

    /* Discount Badge - Mobile */
    .discount-badge {
        position: absolute;
        top: 45px;
        left: 8px;
        background: var(--danger);
        color: var(--white);
        padding: 6px 8px;
        border-radius: 6px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 9;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        min-width: 42px;
    }

    .discount-value {
        font-size: 13px;
        font-weight: 900;
        line-height: 1;
        margin-bottom: 1px;
    }

    .discount-label {
        font-size: 7px;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    /* Gallery Indicator - Mobile */
    .gallery-indicator {
        position: absolute;
        bottom: 8px;
        left: 8px;
        background: rgba(0, 0, 0, 0.75);
        backdrop-filter: blur(8px);
        color: var(--white);
        padding: 4px 8px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 10px;
        font-weight: 600;
        z-index: 8;
    }

    .gallery-indicator i {
        font-size: 10px;
    }

    .gallery-indicator span {
        font-size: 10px;
    }

    /* Availability Badge - Mobile */
    .availability-badge {
        position: absolute;
        bottom: 8px;
        right: 8px;
        padding: 4px 8px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 9px;
        font-weight: 700;
        z-index: 8;
        backdrop-filter: blur(8px);
    }

    .availability-badge.available {
        background: rgba(16, 185, 129, 0.95);
        color: var(--white);
    }

    .availability-badge.sold-out {
        background: rgba(239, 68, 68, 0.95);
        color: var(--white);
    }

    .availability-badge i {
        font-size: 10px;
    }

    .availability-badge span {
        font-size: 9px;
    }

    /* Deal Timer - Mobile */
    .deal-timer {
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(239, 68, 68, 0.95);
        backdrop-filter: blur(8px);
        color: var(--white);
        padding: 5px 10px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 9px;
        font-weight: 700;
        z-index: 9;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .deal-timer i {
        font-size: 9px;
    }

    .deal-timer .timer-text {
        font-size: 9px;
    }

    /* Product Details Container - Mobile */
    .product-details-container {
        padding: 12px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        flex: 1;
    }

    /* Product Header - Mobile */
    .product-header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 8px;
        margin-bottom: 8px;
        flex-wrap: nowrap;
    }

    .product-title {
        font-size: 14px;
        font-weight: 700;
        line-height: 1.3;
        margin: 0;
        flex: 1 1 auto;
        min-width: 0;
    }

    .product-title a {
        color: var(--text-dark);
        text-decoration: none;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 13px;
    }

    .product-category-badge {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 4px 8px;
        background: rgba(14, 165, 233, 0.1);
        color: var(--primary);
        border-radius: 6px;
        font-size: 9px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        white-space: nowrap;
        flex-shrink: 0;
        align-self: flex-start;
    }

    .product-category-badge i {
        font-size: 8px;
    }

    /* Product Info Grid - Mobile */
    .product-info-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .info-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        padding: 8px 4px;
        background: var(--light);
        border-radius: 6px;
        transition: var(--transition);
    }

    .info-item i {
        font-size: 16px;
        color: var(--primary);
        margin-bottom: 2px;
    }

    .info-label {
        font-size: 8px;
        color: var(--text-light);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        text-align: center;
    }

    .info-value {
        font-size: 13px;
        font-weight: 800;
        color: var(--text-dark);
        text-align: center;
    }

    /* Product Footer - Mobile */
    .product-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding-top: 10px;
        border-top: 1px solid var(--border-color);
        margin-top: auto;
    }

    /* Price Container - Mobile */
    .price-container {
        display: flex;
        flex-direction: column;
        gap: 3px;
        flex: 1;
    }

    .price-label {
        font-size: 8px;
        color: var(--text-light);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }

    .price-amount {
        display: flex;
        align-items: baseline;
        gap: 3px;
    }

    .price-amount .currency {
        font-size: 11px;
        font-weight: 700;
        color: var(--text-medium);
    }

    .price-amount .amount {
        font-size: 18px;
        font-weight: 900;
        color: var(--primary);
        line-height: 1;
    }

    /* Reserve Button - Mobile Optimized */
    .btn-reserve-modern {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 8px 12px;
        background: var(--primary-gradient);
        color: var(--white);
        border: none;
        border-radius: 8px;
        font-size: 11px;
        font-weight: 700;
        text-decoration: none;
        cursor: pointer;
        transition: var(--transition);
        white-space: nowrap;
        box-shadow: 0 2px 8px rgba(14, 165, 233, 0.3);
        flex-shrink: 0;
    }

    .btn-reserve-modern i {
        font-size: 11px;
    }

    .btn-reserve-modern:active {
        transform: scale(0.97);
    }

    .btn-reserve-modern:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        background: var(--text-light);
    }

    /* Image Overlay - Mobile */
    .image-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: var(--transition);
    }

    .overlay-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        color: var(--white);
    }

    .overlay-content i {
        font-size: 24px;
    }

    .overlay-content span {
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .page-title {
        font-size: 22px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .facilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 12px;
    }

    .facility-card {
        padding: 16px;
    }

    .facility-icon {
        width: 48px;
        height: 48px;
    }

    .location-header {
        padding: 20px 16px;
    }

    .location-icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .location-title {
        font-size: 20px;
    }

    .location-info-card {
        padding: 20px 16px;
    }

    .location-map {
        height: 280px;
    }

    .ads-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        font-size: 22px;
    }
}


/* ========================================
   Utility Classes
   ======================================== */

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-light);
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* ========================================
   Accessibility
   ======================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-color-scheme: dark) {
    .location-card {
        background: rgba(15, 23, 42, 0.95);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .business-name,
    .page-title {
        color: white;
    }

    .meta-item {
        background: rgba(255, 255, 255, 0.05);
        color: white;
    }
}

/* ========================================
   Print Styles
   ======================================== */

@media print {
    .booking-bar-sticky,
    .content-tabs,
    .filters-section,
    .location-actions,
    .scroll-indicator {
        display: none !important;
    }

    body {
        background: var(--white);
    }

}

/* ========================================
   Gallery Lightbox Styles
   ======================================== */

.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease-in;
}

.gallery-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.gallery-lightbox-image {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
}

.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    font-weight: bold;
    color: #f1f1f1;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.gallery-lightbox-close:hover {
    color: #bbb;
    transform: scale(1.2);
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    font-weight: bold;
    color: #f1f1f1;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 20px;
    user-select: none;
    z-index: 10000;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    color: #bbb;
}

.gallery-lightbox-prev {
    left: 20px;
}

.gallery-lightbox-next {
    right: 20px;
}

.gallery-lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #f1f1f1;
    font-size: 16px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        font-size: 28px;
        padding: 10px;
    }

    .gallery-lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 28px;
    }

    .gallery-lightbox-image {
        max-height: 70vh;
    }
}


