/* ===================================
   ULTRA MODERN BUSINESS PROFILE DESIGN
   Complete Redesign - November 2025
   =================================== */

:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --secondary: #14b8a6;
    --accent: #f97316;
    --accent-light: #fb923c;
    --success: #10b981;
    --danger: #ef4444;
    --dark: #0f172a;
    --navy: #1e3a8a;
    --purple: #7c3aed;
    --pink: #ec4899;
    --gray-900: #1e293b;
    --gray-800: #334155;
    --gray-700: #475569;
    --gray-600: #64748b;
    --gray-500: #94a3b8;
    --gray-400: #cbd5e1;
    --gray-300: #e2e8f0;
    --gray-200: #f1f5f9;
    --gray-100: #f8fafc;
    --gray-50: #fafbfc;
    --white: #ffffff;

    --gradient-primary: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
    --gradient-secondary: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    --gradient-accent: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    --gradient-hero: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #14b8a6 100%);

    --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--gray-100);
    color: var(--gray-900);
    line-height: 1.6;
}

.container-business-profile {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
    bottom: 70px;
}

/* ===================================
   ULTRA MODERN HEADER SECTION
   =================================== */

.business-header-modern {
    position: relative;
    height: 1160px;
}

/* Cover Photo Section */
.header-cover-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.cover-image-container {
    position: relative;
    height: 900px;
    width: 100%;
}

.cover-image-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
}

.cover-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.6) 100%
    );
    pointer-events: none;
}

/* Quick Actions Floating */
.header-quick-actions {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.quick-action-btn {
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--gray-900);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quick-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: white;
}

.quick-action-btn i {
    font-size: 1.125rem;
}

.quick-action-btn.save-state {
    background: white;
}

.quick-action-btn.save-state:hover {
    background: var(--danger);
    color: white;
}

.quick-action-btn.saved-state {
    background: var(--danger);
    color: white;
    cursor: default;
}

.quick-action-btn.saved-state:hover {
    transform: none;
}

.action-label {
    font-weight: 600;
}

/* Share Menu Modern */
.share-action-wrapper {
    position: relative;
}

.share-toggle-btn {
    background: white;
}

.share-toggle-btn:hover {
    background: var(--primary);
    color: white;
}

.share-menu-modern {
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    min-width: 280px;
    background: #ffffff;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.share-action-wrapper:hover .share-menu-modern,
.share-action-wrapper.active .share-menu-modern {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.share-menu-header {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-900);
    border-bottom: 2px solid var(--gray-100);
    margin-bottom: 0.5rem;
}

.share-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--gray-900);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.share-option:hover {
    background: var(--gray-50);
    transform: translateX(5px);
}

.share-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: white;
    transition: transform 0.3s ease;
}

.share-option:hover .share-icon-wrapper {
    transform: scale(1.1);
}

.whatsapp-bg { background: #25D366; }
.facebook-bg { background: #1877F2; }
.twitter-bg { background: #1DA1F2; }
.email-bg { background: var(--primary); }
.copy-bg { background: var(--gray-700); }

/* Floating Verification Badge */
.header-floating-badge {
    position: absolute;
    bottom: 50px;
    left: 2rem;
    z-index: 20;
    animation: slideInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    background: rgba(16, 185, 129, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-full);
    color: white;
    font-weight: 700;
    font-size: 0.9375rem;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.badge-content i {
    font-size: 1.125rem;
    animation: pulse 2s ease-in-out infinite;
}

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

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


/* ===================================
   ENHANCED BUSINESS PROFILE CONTAINER
   Best Design Practices
   =================================== */

.business-profile-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    bottom: 110px;
}

.profile-info-wrapper {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    gap: 3rem;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    backdrop-filter: blur(10px);
}

.profile-info-wrapper:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    border-color: var(--primary);
}

@keyframes gradientSlide {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
    100% { background-position: 0% 0%; }
}

/* Avatar Section - Left */
.profile-avatar-section {
    flex-shrink: 0;
    position: relative;
}

.avatar-container {
    position: relative;
    width: 160px;
    height: 160px;
    animation: zoomIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.avatar-container::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 100%;
    background: linear-gradient(135deg, #0ea5e9, #14b8a6, #f97316);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-avatar-section:hover .avatar-container::before {
    opacity: 0.3;
}

.business-avatar {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    object-fit: cover;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border: 5px solid white;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    position: relative;
    z-index: 1;
}

.business-avatar:hover {
    transform: scale(1.08) rotateZ(2deg);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.avatar-status-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: linear-gradient(135deg, #10b981, #14b8a6);
    border-radius: var(--radius-full);
    color: white;
    font-weight: 700;
    font-size: 0.8125rem;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
    border: 3px solid white;
    animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s backwards, pulse-badge 2s ease-in-out infinite 0.8s;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    animation: blink 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.status-text {
    font-weight: 700;
    text-transform: capitalize;
}

@keyframes blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(255, 255, 255, 0.8); }
    50% { opacity: 0.6; box-shadow: 0 0 4px rgba(255, 255, 255, 0.4); }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Profile Details Section - Center */
.profile-details-section {
    flex: 1;
    min-width: 0;
    text-align: center;
    animation: fadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s backwards;
}

.business-name-wrapper {
    padding: 0.5rem 0.25rem;
    margin-bottom: 0.25rem;
}

.name-and-badge-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.business-name-modern {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gray-900);
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #0ea5e9, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.profile-details-section:hover .business-name-modern {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.business-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 0.5rem 0 0.5rem 0;
    padding: 0.5rem 0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.8rem;
    color: var(--gray-600);
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.15rem 0.25rem;
    background: rgba(14, 165, 233, 0.08);
    border-radius: 12px;
}

.meta-item:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.meta-item i {
    color: var(--primary);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.meta-item:hover i {
    transform: scale(1.2) rotate(5deg);
}

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

/* Status Badges Row */
.status-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    justify-content: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.2rem 0;
    animation: fadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s backwards;
}

.status-badge {
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.status-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: 0;
}

.status-badge:hover::before {
    left: 100%;
}

.status-badge i {
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.status-badge:hover i {
    transform: scale(1.2) rotate(360deg);
}

.premium-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    box-shadow: 0 6px 16px rgba(255, 165, 0, 0.35);
    position: relative;
    z-index: 1;
}

.premium-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(255, 165, 0, 0.45);
}

.verified-badge-pill {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    color: white;
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.35);
    position: relative;
    z-index: 1;
}

.verified-badge-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(14, 165, 233, 0.45);
}

.products-badge {
    background: linear-gradient(135deg, #14b8a6, #06b6d4);
    color: white;
    box-shadow: 0 6px 16px rgba(20, 184, 166, 0.35);
    position: relative;
    z-index: 1;
}

.products-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(20, 184, 166, 0.45);
}

/* Contact Section - Right */
.profile-contact-section {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    min-width: 240px;
    animation: fadeInDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s backwards;
}

.contact-item-inline {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1.125rem;
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.contact-item-inline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 0;
    transition: left 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-item-inline:hover {
    background: var(--primary);
    transform: translateX(-4px);
    border-color: var(--primary);
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.3);
}

.contact-item-inline:hover .contact-icon-inline {
    background: white;
    color: var(--primary);
    transform: scale(1.15);
}

.contact-item-inline:hover .contact-text-inline {
    color: white;
}

.contact-icon-inline {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1875rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: rotateY(3.142rad);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}

.contact-text-inline {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
    transition: all 0.3s ease;
    word-break: break-all;
    position: relative;
    z-index: 1;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quick Stats Info Bar */
.quick-stats-bar {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2.5rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.quick-stats-bar:hover::before {
    left: 100%;
}

.quick-stats-bar:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.stat-item-inline {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.stat-item-inline:hover {
    transform: translateY(-3px);
}

.stat-icon-inline {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.3);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.stat-icon-inline::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.3s ease;
}

.stat-item-inline:hover .stat-icon-inline {
    transform: scale(1.1) rotate(-5deg);
}

.stat-item-inline:hover .stat-icon-inline::before {
    opacity: 0.5;
}

.stat-item-inline:nth-child(3) .stat-icon-inline {
    background: var(--gradient-secondary);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.3);
}

.stat-item-inline:nth-child(3) .stat-icon-inline::before {
    background: var(--gradient-secondary);
}

.stat-item-inline:nth-child(5) .stat-icon-inline {
    background: var(--gradient-accent);
    box-shadow: 0 6px 16px rgba(20, 184, 166, 0.3);
}

.stat-item-inline:nth-child(5) .stat-icon-inline::before {
    background: var(--gradient-accent);
}

.stat-item-inline:nth-child(7) .stat-icon-inline {
    background: linear-gradient(135deg, #10b981, #14b8a6);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

.stat-item-inline:nth-child(7) .stat-icon-inline::before {
    background: linear-gradient(135deg, #10b981, #14b8a6);
}

.stat-data {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-value-inline {
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.stat-item-inline:hover .stat-value-inline {
    background: linear-gradient(135deg, #0ea5e9, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label-inline {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 600;
    transition: color 0.3s ease;
}

.stat-item-inline:hover .stat-label-inline {
    color: var(--primary);
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--gray-300), transparent);
    position: relative;
    z-index: 1;
}

/* ===================================
   MAIN CONTENT SECTION
   =================================== */

.main-content-section-new {
    padding: 3rem 0;
    background: var(--gray-100);
}

/* ===================================
   MODERN CARD - NEW BASE DESIGN
   =================================== */

.modern-card-new {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.modern-card-new:hover {
    box-shadow: var(--shadow-md);
}

.modern-card-header-new {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--gray-50);
}

.header-icon-wrapper-new {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
}

.card-title-new {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
    flex: 1;
}

.badge-count-new {
    background: #0aace0;
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.modern-card-body-new {
    padding: 0.5rem;
}

/* ===================================
   ABOUT SECTION - NEW DESIGN
   =================================== */

.about-content-new {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.about-content-new p {
    margin: 1rem;
}

.about-content-new strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* ===================================
   GALLERY - MODERN SLIDER DESIGN
   =================================== */

.gallery-slider-wrapper {
    padding: 1.5rem;
}

/* Main Gallery Slider */
.gallerySwiper {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gallery-slide-item {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--gray-100);
}

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

.swiper-slide-active .gallery-slide-item img {
    animation: zoomInSlide 0.8s ease-out;
}

@keyframes zoomInSlide {
    from {
        transform: scale(1.1);
        opacity: 0.8;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.gallery-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-zoom-btn {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: white;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-zoom-btn:hover {
    transform: scale(1.15) rotate(15deg);
    background: var(--primary);
    color: white;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Navigation Buttons */
.gallery-nav-btn {
    width: 50px !important;
    height: 50px !important;
    background: white !important;
    border-radius: var(--radius-full) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
}

.gallery-nav-btn::after {
    display: none;
}

.gallery-nav-btn i {
    font-size: 1.25rem;
    color: var(--primary);
}

.gallery-nav-btn:hover {
    background: var(--primary) !important;
    transform: scale(1.1);
}

.gallery-nav-btn:hover i {
    color: white;
}

.swiper-button-prev {
    left: 1.5rem !important;
}

.swiper-button-next {
    right: 1.5rem !important;
}

/* Pagination */
.gallery-pagination {
    bottom: 1.5rem !important;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    width: auto !important;
    left: 50% !important;
    transform: translateX(-50%);
    font-weight: 600;
    color: var(--gray-900);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Thumbnail Slider */
.galleryThumbs {
    width: 100%;
    height: 100px;
    box-sizing: border-box;
    padding: 0;
}

.galleryThumbs .swiper-slide {
    height: 100px;
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.galleryThumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.gallery-thumb-item {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background: var(--gray-100);
}

.swiper-slide-thumb-active .gallery-thumb-item {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.gallery-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb-item:hover {
    transform: scale(1.05);
}

/* Lightbox Modal */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxZoomIn 0.3s ease-out;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-counter {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: white;
    border: none;
    color: var(--gray-900);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-close:hover {
    transform: scale(1.1) rotate(90deg);
}

/* ===================================
   CATEGORIES SLIDER - NEW DESIGN
   =================================== */

/* ===================================
   PRODUCT CATEGORIES - PREMIUM DESIGN
   =================================== */

.categories-body-premium {
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.categories-body-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(20, 184, 166, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.categories-slider-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.category-card-premium {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: white;
    cursor: pointer;
    border: 1px solid var(--gray-200);
}

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

.category-card-premium:hover {
    border-color: var(--primary);
}

.category-card-inner {
    position: relative;
    z-index: 2;
}

/* Image Section */
.category-image-wrapper-premium {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.image-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
}

.category-image-wrapper-premium img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    z-index: 2;
}

.category-card-premium:hover .category-image-wrapper-premium img {
    transform: scale(1.15) rotate(2deg);
}

.placeholder-icon-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    color: white;
}

.placeholder-icon-premium i {
    font-size: 3rem;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Image Overlay */
.image-overlay-premium {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.category-card-premium:hover .image-overlay-premium {
    opacity: 1;
}

.category-badge-premium {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-weight: 700;
    color: var(--primary);
    font-size: 0.875rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.category-card-premium:hover .category-badge-premium {
    transform: translateY(0);
}

.category-badge-premium i {
    font-size: 1rem;
}

/* Content Section */
.category-content-premium {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.category-name-premium {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.category-card-premium:hover .category-name-premium {
    color: var(--primary);
}

.category-description-premium {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

/* Action Section */
.category-action-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-200);
    margin-top: 0.5rem;
}

.action-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}

.category-card-premium:hover .action-text {
    transform: translateX(5px);
}

.action-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card-premium:hover .action-icon {
    background: var(--primary);
    color: white;
    transform: translateX(8px) scale(1.1);
}

.action-icon i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.category-card-premium:hover .action-icon i {
    transform: translateX(2px);
}

/* Shine Effect */
.category-shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.category-card-premium:hover .category-shine-effect {
    left: 100%;
}

/* Empty State */
.categories-empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--gray-500);
}

.categories-empty-state i {
    font-size: 4rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
    display: block;
}

/* ===================================
   BOOKING CARD - ENHANCED DESIGN
   =================================== */

.booking-card-new {
    background: var(--gradient-hero);
    border: none;
}

.booking-card-new .modern-card-header-new {
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-card-new .header-icon-wrapper-new {
    background: white;
    color: var(--primary);
}

.booking-card-new .card-title-new {
    color: white;
}

.booking-card-new .modern-card-body-new {
    background: white;
}

.booking-form-new {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.booking-inputs-row-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.booking-input-group-new {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-label-new {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.input-label-new i {
    color: var(--primary);
}

.form-control-new {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--gray-900);
}

.form-control-new:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-control-new::placeholder {
    color: var(--gray-500);
}

.occupancy-dropdown {
    position: relative;
}

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

.occupancy-trigger i {
    transition: transform 0.3s ease;
}

.occupancy-dropdown.active .occupancy-trigger i {
    transform: rotate(180deg);
}

.occupancy-menu-new {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.5rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: 1.5rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

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

.occupancy-item-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.occupancy-item-new label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
}

.counter-controls-new {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.counter-btn-new {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    border: 2px solid var(--gray-300);
    background: white;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.counter-display-new {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    min-width: 30px;
    text-align: center;
}

.btn-apply-new {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

.booking-btn-group_new {
    display: flex;
    align-items: flex-end;
}

.btn-search-new {
    width: 100%;
    padding: 0.875rem 2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

/* ===================================
   FILTERS BAR - NEW DESIGN
   =================================== */

.filters-bar-new {
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 2px dashed var(--gray-300);
}

.filters-row-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.filter-item-new {
    position: relative;
}

.filter-select-new {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    background: white;
    color: var(--gray-900);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

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

.search-input-wrapper-new {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-wrapper-new i {
    position: absolute;
    left: 1rem;
    color: var(--gray-500);
    font-size: 1rem;
}

.search-input-new {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    background: white;
    color: var(--gray-900);
    transition: all 0.3s ease;
}

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

/* ===================================
   PRODUCTS GRID - NEW DESIGN
   =================================== */

.products-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 0.5rem;
}

.empty-state-new {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon-new {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gray-400);
}

.empty-title-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.empty-text-new {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto;
}

/* ===================================
   SIDEBAR - NEW DESIGN
   =================================== */

.sidebar-sticky-new {
    position: sticky;
    top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card-new {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.3s ease;
}

.sidebar-card-new:hover {
    box-shadow: var(--shadow-md);
}

.sidebar-header-new {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-header-new i {
    font-size: 1.25rem;
    color: var(--primary);
}

.sidebar-header-new h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

/* Contact Card */
.contact-card-new {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    text-align: center;
}

.card-icon-header-new {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    backdrop-filter: blur(10px);
}

.sidebar-card-title-new {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-items-new {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-btn-new {
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-btn-new:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.contact-btn-new i {
    font-size: 1.125rem;
}

/* Map Card */
.map-wrapper-new {
    padding: 1rem;
}

.map-container-new {
    width: 100%;
    height: 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.btn-directions-new {
    width: calc(100% - 2rem);
    margin: 0 1rem 1rem;
    padding: 0.875rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-directions-new:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Video Card */
.video-container-new {
    position: relative;
    padding: 1rem;
    padding-bottom: 56.25%;
}

.video-container-new iframe {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    border-radius: var(--radius-md);
}

/* ===================================
   OPENING HOURS - PREMIUM MODERN DESIGN
   =================================== */

.hours-card-premium {
    overflow: hidden;
    position: relative;
}

.hours-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

/* Header Section */
.hours-header-premium {
    background: var(--gray-50);
}

.hours-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.hours-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hours-icon-wrapper i {
    font-size: 1rem;
    color: var(--primary);
}

.hours-header-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.status-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    background: white;
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.status-badge-premium.open {
    color: #059669;
    background: #ecfdf5;
    border-color: #a7f3d0;
}

.status-badge-premium.closed {
    color: #dc2626;
    background: #fef2f2;
    border-color: #fecaca;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* Hours List */
.hours-list-premium {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.5s ease-out backwards;
    position: relative;
    overflow: hidden;
}

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

.hours-item-premium::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.hours-item-premium:hover {
    background: white;
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.hours-item-premium:hover::before {
    transform: scaleY(1);
}

.hours-item-premium.active-day {
    border-color: var(--primary-dark);
    color: #00a4ff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}

.hours-item-premium.active-day::before {
    display: none;
}

/* Day Section */
.hours-day-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.day-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gray-300);
    transition: all 0.3s ease;
}

.day-indicator.today-indicator {
    width: 12px;
    height: 12px;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    animation: todayBounce 2s ease-in-out infinite;
}

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

.day-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.day-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--gray-900);
}

.hours-item-premium.active-day .day-name {
    color: #00a4ff;
    font-weight: 700;
}

.today-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-full);
    width: fit-content;
}

/* Time Section */
.hours-time-section {
    display: flex;
    align-items: center;
}

.time-display-premium {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.time-slot {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    background: white;
    border-radius: var(--radius-md);
    font-size: 0.5rem;
    font-weight: 600;
    color: var(--gray-700);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.time-slot i {
    font-size: 0.5rem;
    color: var(--primary);
}

.hours-item-premium.active-day .time-slot {
    color: var(--primary);
    font-weight: 700;
}

.hours-item-premium:hover .time-slot {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.time-separator {
    color: var(--gray-400);
    font-size: 0.75rem;
}

.hours-item-premium.active-day .time-separator {
    color: rgba(0, 0, 0, 0.95);
}

.time-badge-premium {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.time-badge-premium.closed {
    background: #fee2e2;
    color: #dc2626;
}

.time-badge-premium.not-set {
    background: #fef3c7;
    color: #d97706;
}

.hours-item-premium.active-day .time-badge-premium.closed {
    background: rgba(254, 226, 226, 0.95);
}

.time-badge-premium i {
    font-size: 0.875rem;
}

/* Footer Section */
.hours-footer-premium {
    padding: 1rem 1.5rem;
    background: linear-gradient(to right, var(--gray-50), white);
    border-top: 1px solid var(--gray-200);
}

.footer-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--gray-600);
}

.footer-info-item i {
    color: var(--primary);
    font-size: 1rem;
}

/* Facilities Card */
.facilities-grid-new {
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.facility-badge-new {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.facility-badge-new:hover {
    background: var(--gray-100);
}

.facility-badge-new img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.facility-badge-new span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.no-data-new {
    padding: 1rem;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Trending Ads */
.trending-list-new {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trending-item-new {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
}

.trending-item-new:hover {
    background: var(--gray-100);
    transform: translateX(5px);
}

.trending-image-new {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

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

.trending-image-new .placeholder-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-200);
    color: var(--gray-400);
    font-size: 1.5rem;
}

.trending-content-new {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trending-content-new h5 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
    line-height: 1.4;
}

.trending-date-new {
    font-size: 0.8125rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

/* ===================================
   PRODUCT CARDS - MODERN DESIGN
   =================================== */

.product-list-item {
    animation: fadeIn 0.5s ease;
}

.product-card-modern {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-modern:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

/* Product Image Container */
.product-image-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--gray-100);
}

.product-image-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Wishlist Button */
.product-wishlist-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    box-shadow: var(--shadow-md);
}

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

.product-wishlist-btn i {
    font-size: 1.125rem;
    color: var(--gray-700);
}

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

/* Featured Ribbon */
.featured-ribbon {
    position: absolute;
    top: 1rem;
    left: -2.5rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 0.5rem 3rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(-45deg);
    box-shadow: var(--shadow-md);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.featured-ribbon i {
    font-size: 0.875rem;
}

/* Discount Badge */
.discount-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.625rem 0.875rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
    box-shadow: var(--shadow-lg);
    z-index: 4;
}

.discount-value {
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1;
}

.discount-label {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.gallery-indicator i {
    font-size: 1rem;
}

/* Availability Badge */
.availability-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    z-index: 4;
}

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

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

/* Deal Timer */
.deal-timer {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(239, 68, 68, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    z-index: 4;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

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

/* Product Header */
.product-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
}

.product-title a {
    color: var(--gray-900);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.product-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    width: fit-content;
}

.product-category-badge i {
    font-size: 0.875rem;
    color: var(--primary);
}

/* Product Info Grid */
.product-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
}

.info-item i {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

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

.info-value {
    font-size: 0.9375rem;
    color: var(--gray-900);
    font-weight: 700;
}

/* Product Features */
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: var(--gradient-accent);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.feature-tag i {
    font-size: 0.75rem;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    font-size: 0.875rem;
    color: #fbbf24;
}

.rating-count {
    font-size: 0.8125rem;
    color: var(--gray-600);
}

/* Product Footer */
.product-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 2px dashed var(--gray-200);
}

.price-container {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

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

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.375rem;
}

.currency {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 600;
}

.amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.original-price {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-decoration: line-through;
}

/* Reserve Button */
.btn-reserve-modern {
    padding: 0.875rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9375rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.btn-reserve-modern:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: var(--gradient-accent);
}

.btn-reserve-modern i {
    font-size: 1.125rem;
}

/* ===================================
   FILTERED PRODUCT VIEW 3 - HORIZONTAL LIST
   Best Modern Design with Full Responsive Support
   Breakpoints: 1024px, 768px, 425px, 320px
   =================================== */

.product-list-item-horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
    border: 1px solid #f0f0f0;
    align-items: stretch;
    animation: fadeInProduct 0.5s ease-out forwards;
}

.product-list-item-horizontal:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: #e0e0e0;
    transform: translateY(-2px);
}

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

/* Image Section */
.product-horizontal-image {
    position: relative;
    flex-shrink: 0;
    width: 120px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    background: #f8f8f8;
}

.product-horizontal-image a,
.product-horizontal-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-horizontal-image:hover img {
    transform: scale(1.05);
}

/* Wishlist Button */
.horizontal-wishlist-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #ff6b6b;
    color: #ff6b6b;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.horizontal-wishlist-btn:hover {
    background: #ff6b6b;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.horizontal-wishlist-btn.active {
    background: #ff6b6b;
    color: white;
}

/* Badges */
.horizontal-badge {
    position: absolute;
    padding: 0.35rem 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.horizontal-badge.featured {
    top: 0.75rem;
    left: 0.75rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.horizontal-badge.discount {
    bottom: 0.75rem;
    left: 0.75rem;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: #333;
    font-weight: 700;
}

/* Content Section */
.product-horizontal-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

/* Title & Stock Row */
.product-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.horizontal-title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.horizontal-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.horizontal-title a:hover {
    color: #667eea;
}

/* Meta Items */
.horizontal-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.meta-item-h {
    display: flex;
    align-items: center;
    color: #666;
    white-space: nowrap;
}

.meta-item-h i {
    font-size: 0.875rem;
    color: #667eea;
}

.meta-item-h.category {
    background: #f0f4ff;
    color: #667eea;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.meta-item-h.category:hover {
    background: #e8ebff;
    color: #5566d9;
    transform: translateY(-1px);
}

.meta-item-h.rating {
    color: #ff9800;
    font-weight: 600;
    animation: starGlow 2s ease-in-out infinite;
}

@keyframes starGlow {
    0%, 100% { text-shadow: none; }
    50% { text-shadow: 0 0 8px rgba(255, 152, 0, 0.6); }
}

.meta-item-h.stock {
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.meta-item-h.stock.available {
    background: #e8f5e9;
    color: #2e7d32;
    animation: checkPulse 2s ease-in-out infinite;
}

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

.meta-item-h.stock.sold-out {
    background: #ffebee;
    color: #c62828;
}

/* Specs */
.spec-h {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.65rem;
    color: #999;
    padding: 0.15rem 0.5rem;
    background: #f5f5f5;
    border-radius: 4px;
    white-space: nowrap;
}

.spec-h i {
    font-size: 0.8125rem;
    color: #667eea;
}

/* Action Section */
.product-horizontal-action {
    flex-shrink: 0;
    width: 160px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

/* Price */
.horizontal-price {
    text-align: center;
    width: 100%;
}

.price-old {
    display: block;
    font-size: 0.875rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.25rem;
    opacity: 0.7;
}

.price-current {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.375rem;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.price-currency {
    font-size: 0.875rem;
    color: #999;
    font-weight: 600;
}

/* Button */
.btn-horizontal-reserve {
    width: 100%;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
    min-height: 44px;
}

.btn-horizontal-reserve:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.btn-horizontal-reserve:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-horizontal-reserve i {
    font-size: 1rem;
}

/* ===================================
   RESPONSIVE DESIGN - TABLET & MOBILE
   Complete Redesign for All Devices
   =================================== */

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets for better mobile UX */
    .quick-action-btn,
    .btn-search-new,
    .btn-reserve-modern,
    .btn-directions-new,
    .contact-item-inline,
    .filter-select-new,
    .search-input-new,
    .form-control-new {
        min-height: 44px;
        min-width: 44px;
    }

    /* Remove hover effects on touch devices */
    .product-card-modern:hover {
        transform: none;
    }

    .category-card-premium:hover {
        border-color: var(--gray-200);
    }

    /* Disable hover animations */
    .gallery-slide-overlay {
        opacity: 0;
    }

    .image-overlay-premium {
        opacity: 1;
    }
}

/* Smooth scrolling for all devices */
html {
    scroll-behavior: smooth;
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
}


/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .cover-image-container {
        height: 240px;
    }

    .business-profile-container {
        margin-top: -40px;
    }

    .avatar-container {
        width: 80px;
        height: 80px;
    }

    .quick-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-divider {
        display: none;
    }
}

@media (max-width: 1024px) {

    .profile-info-wrapper{
        padding: 1rem;
        margin-bottom: 1.5rem;
        gap: 2rem;

    }
    .avatar-container{
        width: 120px;
        height: 120px;
    }
    .avatar-status-badge{
        padding: 0.25rem 0.1rem;
        gap: 0.4rem;
        font-size: 0.6rem;
        border: 1px;
    }
    .status-dot{
        width: 5px;
        height: 5px;
    }
    .cover-image-container{
        height: 580px;
    }

    .business-header-modern{
        height: 835px;
    }

    .quick-stats-bar {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .stat-item-inline {
        gap: 0.75rem;
    }

    .sidebar-header-new{
        padding: 0.75rem 0.5rem;
    }

    .hours-list-premium{
        padding: 0.5rem;
    }

    .hours-item-premium{
        padding: 0.5rem;
    }
    .map-wrapper-new{
        padding: 0.5rem;
    }

    .facility-badge-new{
        justify-content: center;
    }

    .stat-icon-inline {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .stat-value-inline {
        font-size: 1.5rem;
    }

    .stat-divider {
        height: 45px;
    }

    .business-profile-container {
        padding: 0 1.5rem 1.5rem;
    }

    .products-grid-new{
        grid-template-columns: repeat(1, 1fr);
        gap: 0.75rem;

    }


    .business-name-modern {
        font-size: 1.75rem;
    }

    .quick-stats-bar {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .stat-item-inline {
        gap: 0.75rem;
    }

    .stat-icon-inline {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .stat-value-inline {
        font-size: 1.5rem;
    }

    .stat-divider {
        height: 45px;
    }

    .contact-item-inline {
        flex: 1;
        max-width: 330px;
        padding: 0.5rem;
    }
    .contact-icon-inline{
        width: 32px;
        height: 32px;

    }

    .main-content-section-new{
        padding: 0.1rem;
    }

    .business-name-modern {
        font-size: 1.875rem;
    }

    .quick-stats-bar {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .stat-item-inline {
        gap: 0.75rem;
    }

    .stat-icon-inline {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }


    .stat-value-inline {
        font-size: 1.2rem;
    }

    .stat-label-inline{
        font-size: 0.85rem;
    }

    .stat-divider {
        height: 45px;
    }

    .status-badge-premium{
        padding: 0.2rem 0.5rem;
        font-size: 0.5rem;
    }
    .day-name{
        font-size: 0.75rem;
    }

    .today-label{
        font-size: 0.6rem;
    }

    .time-badge-premium{
        font-size: 0.5rem;
    }

    .categories-slider-premium{
        grid-template-columns: 1fr 1fr;
    }
    .category-badge-premium{
        margin-bottom: 10px;
    }
    .filters-row-new{
        grid-template-columns: 1fr;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .header-cover-wrapper {
        height: 540px;
    }

    .cover-image-container {
        height: 540px;
    }

    .header-quick-actions {
        top: 1rem;
        right: 1rem;
        gap: 0.5rem;
    }

    .quick-action-btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .quick-action-btn i {
        font-size: 1rem;
    }

    .action-label {
        display: none;
    }

    .header-floating-badge {
        bottom: 30px;
        left: 1rem;
    }

    .badge-content {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
    }

    /* ===== BUSINESS PROFILE CONTAINER - 768px BEST DESIGN ===== */
    .business-profile-container {
        margin-top: -100px;
        padding: 0 1rem 1.5rem;
    }

    .profile-info-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 0.15rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        border: 1px solid var(--gray-200);
        background: white;
        position: relative;
        overflow: visible;
        transition: all 0.3s ease;
        margin-bottom: 0.75rem;
    }

    .profile-info-wrapper:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    /* Avatar Section */
    .profile-avatar-section {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .avatar-container {
        width: 100px;
        height: 100px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        border-radius: 50%;
    }

    .avatar-status-badge {
        padding: 0.25rem 0.25rem;
        font-size: 0.6rem;
        top: 85px;
        right: 15px;
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        border: 1px solid white;
    }

    .business-avatar {
        border: 4px solid white;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

    /* Name & Meta Section */
    .profile-details-section {
        width: 100%;
        order: 2;
    }

    .business-name-wrapper {
        margin-bottom: 1rem;
    }

    .business-name-modern {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: -0.5px;
        background: linear-gradient(135deg, #0ea5e9, #14b8a6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
    }

    .name-and-badge-row {
        flex-direction: row;
        gap: 1px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 1px;
    }

    .trust-indicators {
        justify-content: center;
        width: 100%;
        margin: 0 0;
    }

    .business-meta {
        gap: 1.5rem;
        font-size: 1rem;
        margin: 0 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .meta-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        transition: all 0.3s ease;
    }

    .meta-item:hover {
        transform: translateY(-2px);
    }

    .meta-item i {
        font-size: 1.25rem;
    }

    /* Status Badges */
    .status-badges-row {
        gap: 0.75rem;
        margin-top: 1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .status-badge {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
        font-weight: 600;
        border-radius: var(--radius-full);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .status-badge:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    /* Contact Section */
    .profile-contact-section {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
        margin-top: 0.1rem;
        order: 3;
    }

    .contact-item-inline {
        padding: 1rem 1.25rem;
        background: var(--gray-50);
        border: 1px solid var(--gray-200);
        border-radius: var(--radius-md);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.875rem;
        transition: all 0.3s ease;
        color: var(--gray-900);
    }

    .contact-item-inline:hover {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(14, 165, 233, 0.3);
    }

    .contact-label {
        display: none;
    }

    .contact-text-inline {
        font-size: 0.9375rem;
        font-weight: 500;
        flex: 1;
    }

    .contact-icon-inline {
        width: 30px;
        height: 30px;
        border-radius: var(--radius-md);
        background: var(--primary);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.875rem;
        flex-shrink: 0;
        transition: all 0.3s ease;
        justify-content: center;
    }

    .contact-item-inline:hover .contact-icon-inline {
        background: white;
        color: var(--primary);
    }

    .filters-row-new{
        grid-template-columns: 1fr 1fr 1fr;
    }

    /* Quick Stats Bar */
    .quick-stats-bar {
        gap: 1.25rem;
        padding: 1rem;
        margin-top: 0.01rem;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        background: white;
        border-radius: var(--radius-lg);
        border: 1px solid var(--gray-200);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

    .quick-stats-bar:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        transform: translateY(-2px);
    }

    .stat-item-inline {
        width: 100%;
        gap: 1rem;
        justify-content: flex-start;
        padding: 1.25rem;
        background: var(--gray-50);
        border-radius: var(--radius-md);
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .stat-item-inline:hover {
        background: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .stat-icon-inline {
        width: 25px;
        height: 25px;
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 0.75rem;
        color: white;
        flex-shrink: 0;
        box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
    }

    .stat-value-inline {
        font-size: 0.8rem;
        font-weight: 800;
        color: var(--gray-900);
    }

    .stat-label-inline {
        font-size: 0.75rem;
        color: var(--gray-600);
        font-weight: 600;
    }

    .stat-divider {
        display: none;
    }

    .occupancy-dropdown {
        position: relative;
    }

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

    .occupancy-trigger i {
        transition: transform 0.3s ease;
        font-size: 1.5rem;
    }

    .occupancy-dropdown.active .occupancy-trigger i {
        transform: rotate(180deg);
    }

    .occupancy-menu-new {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin-top: 0.25rem;
        background: white;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-xl);
        padding: 0.75rem;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

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

    .occupancy-item-new {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--gray-200);
        font-size: 0.5rem;
    }

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

    .occupancy-item-new label {
        font-size: 0.5rem;
        font-weight: 600;
        color: var(--gray-900);
        margin: 0;
    }

    .counter-controls-new {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .counter-btn-new {
        width: 24px;
        height: 24px;
        border-radius: var(--radius-md);
        border: 1px solid var(--gray-300);
        background: white;
        color: var(--gray-700);
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.4rem;
    }

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

    .counter-display-new {
        font-size: 0.5rem;
        font-weight: 600;
        color: var(--gray-900);
        min-width: 20px;
        text-align: center;
    }

    .btn-apply-new {
        width: 100%;
        padding: 0.375rem;
        background: var(--primary);
        color: white;
        border: none;
        border-radius: var(--radius-md);
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 0.5rem;
        font-size: 0.5rem;
    }

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

    .occupancyText {
        font-size: 0.5rem;
        font-weight: 600;
        color: var(--gray-900);
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .header-cover-wrapper {
        height: 450px;
    }

    .cover-image-container {
        height: 450px;
    }

    .business-profile-container {
        margin-top: -60px;
        padding: 0 0.75rem 0.75rem;
    }

    .profile-info-wrapper {
        padding: 0.875rem 1rem;
        gap: 1rem;
    }

    .avatar-container {
        width: 100px;
        height: 100px;
    }

    .business-name-modern {
        font-size: 1.375rem;
    }

    .business-meta {
        gap: 0.75rem;
        font-size: 0.8125rem;
    }

    .contact-item-inline {
        padding: 0.625rem 0.875rem;
        font-size: 0.8125rem;
    }

    .quick-stats-bar {
        padding: 1rem;
        gap: 0.75rem;
    }

    .stat-icon-inline {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .stat-value-inline {
        font-size: 1.25rem;
    }

    .stat-data {
        gap: 0.125rem;
    }
    .header-cover-wrapper {
        height: 450px;
    }

    .cover-image-container {
        height: 450px;
    }


    .quick-stats-bar {
        padding: 1rem;
        gap: 0.75rem;
    }

    .stat-icon-inline {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .stat-value-inline {
        font-size: 1.25rem;
    }

    .stat-data {
        gap: 0.125rem;
    }
    .header-cover-wrapper {
        height: 360px;
    }

    .cover-image-container {
        height: 360px;
    }

    .quick-stats-bar {
        padding: 1rem;
        gap: 0.75rem;
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-slider-premium{
        grid-template-columns: 1fr;
    }

    .filters-row-new{
        grid-template-columns: 1fr;
    }


    .stat-icon-inline {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .stat-value-inline {
        font-size: 1.25rem;
    }

    .stat-data {
        gap: 0.125rem;
    }
}



/* ===================================
   RESPONSIVE - 1024px
   =================================== */

@media (max-width: 1024px) {
    .product-list-item-horizontal {
        gap: 1.25rem;
        padding: 0.5rem;
        margin-bottom: 1rem;
    }

    .product-horizontal-image {
        width: 180px;
        height: 130px;
    }

    .horizontal-title {
        font-size: 1.0625rem;
    }

    .horizontal-meta {
        display: flex;
        gap: 0.85rem;
        flex-wrap: inherit;
        align-items: center;
    }

    .meta-item-h {
        font-size: 0.8rem;
    }

    .spec-h {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    .price-amount {
        font-size: 1.5625rem;
    }

    .product-horizontal-action {
        width: 150px;
        gap: 0.875rem;
    }

    .btn-horizontal-reserve {
        padding: 0.625rem 0.875rem;
        font-size: 0.8125rem;
    }
    .horizontal-wishlist-btn{
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
}

/* ===================================
   RESPONSIVE - 768px
   =================================== */

@media (max-width: 768px) {

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

    .product-list-item-horizontal {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        margin-bottom: 0.875rem;
        border-radius: 10px;
    }

    .product-list-item-horizontal:hover {
        transform: translateY(-1px);
    }

    .product-horizontal-image {
        width: 100%;
        height: 220px;
    }

    .product-header-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .horizontal-title {
        font-size: 1.0625rem;
        line-height: 1.3;
    }

    .horizontal-meta {
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .meta-item-h {
        font-size: 0.75rem;
        padding: 0.3rem 0.625rem;
    }

    .spec-h {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    .product-horizontal-action {
        width: 100%;
        flex-direction: row;
        gap: 0.75rem;
        justify-content: space-between;
        align-items: center;
        padding-top: 1rem;
        border-top: 1px solid #f0f0f0;
    }

    .horizontal-price {
        flex: 1;
        text-align: left;
    }

    .price-current {
        justify-content: flex-start;
    }

    .price-amount {
        font-size: 1.375rem;
    }

    .btn-horizontal-reserve {
        flex: 1;
        padding: 0.625rem 0.875rem;
        font-size: 0.8125rem;
        gap: 0.375rem;
    }

    .horizontal-wishlist-btn {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    .horizontal-badge {
        padding: 0.375rem 0.625rem;
        font-size: 0.7rem;
    }
}

/* ===================================
   RESPONSIVE - 425px
   =================================== */

@media (max-width: 425px) {
    .products-grid-new{
        grid-template-columns: 1fr;
    }

    .product-list-item-horizontal {
        gap: 0.75rem;
        padding: 0.875rem;
        margin-bottom: 0.75rem;
    }

    .product-horizontal-image {
        width: 100%;
        height: 180px;
    }

    .horizontal-title {
        font-size: 0.9375rem;
        font-weight: 600;
        line-height: 1.3;
    }

    .horizontal-meta {
        gap: 0.5rem;
    }

    .meta-item-h {
        font-size: 0.7rem;
        padding: 0.3rem 0.625rem;
    }

    .spec-h {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }

    .product-horizontal-action {
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
        padding-top: 0.75rem;
    }

    .horizontal-price {
        width: 100%;
        padding: 0.5rem 0;
        text-align: center;
    }

    .price-current {
        justify-content: center;
    }

    .price-amount {
        font-size: 1.25rem;
    }

    .btn-horizontal-reserve {
        width: 100%;
        padding: 0.625rem;
        font-size: 0.75rem;
    }

    .horizontal-wishlist-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        top: 0.5rem;
        right: 0.5rem;
    }

    .horizontal-badge {
        padding: 0.3rem 0.5rem;
        font-size: 0.65rem;
        gap: 0.25rem;
    }
}

/* ===================================
   RESPONSIVE - 320px
   =================================== */

@media (max-width: 320px) {
    .product-list-item-horizontal {
        gap: 0.625rem;
        padding: 0.75rem;
        margin-bottom: 0.625rem;
    }

    .product-horizontal-image {
        width: 100%;
        height: 160px;
    }

    .horizontal-title {
        font-size: 0.875rem;
        line-height: 1.3;
    }

    .horizontal-meta {
        gap: 0.375rem;
    }

    .meta-item-h {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }

    .spec-h {
        font-size: 0.6rem;
        padding: 0.2rem 0.375rem;
    }

    .product-horizontal-action {
        width: 100%;
        gap: 0.625rem;
        flex-direction: column;
        padding-top: 0.625rem;
    }

    .horizontal-price {
        width: 100%;
        padding: 0.375rem 0;
    }

    .price-amount {
        font-size: 1.125rem;
    }

    .btn-horizontal-reserve {
        width: 100%;
        padding: 0.5rem;
        font-size: 0.7rem;
    }

    .btn-horizontal-reserve span {
        display: none;
    }

    .horizontal-wishlist-btn {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        top: 0.5rem;
        right: 0.5rem;
    }

    .horizontal-badge {
        padding: 0.25rem 0.4rem;
        font-size: 0.6rem;
        gap: 0.2rem;
    }
}

/* Accessibility */
@media (hover: none) and (pointer: coarse) {
    .product-list-item-horizontal:hover {
        transform: none;
    }

    .btn-horizontal-reserve,
    .horizontal-wishlist-btn {
        min-height: 20px;
        min-width: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-list-item-horizontal,
    .product-horizontal-image img,
    .horizontal-wishlist-btn,
    .btn-horizontal-reserve,
    .meta-item-h.rating,
    .meta-item-h.stock.available {
        animation: none !important;
        transition: none !important;
    }
}

