﻿:root {
            --color-primary: #D4816C;
            --color-secondary: #ffe3bd;
            --color-accent: #C9956D;
            --color-background: #fff7f8;
            --color-foreground: #5C3D3A;
            --color-card: #FFFFFF;
            --color-muted-foreground: #6B5450;
            --color-border: #F5D9C8;
            --font-serif: 'Playfair Display', serif;
            --font-sans: 'Inter', sans-serif;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--color-background);
            color: var(--color-foreground);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: var(--font-serif);
        }

        /* Navbar */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 247, 248, 0.95);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(245, 217, 200, 0.6);
            z-index: 1000;
            padding: 18px 0;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            box-shadow: 0 8px 32px rgba(212, 129, 108, 0.12);
            padding: 14px 0;
        }

        .nav-container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .admin-nav {
            position: static;
            top: auto;
            left: auto;
            right: auto;
            z-index: auto;
            background: transparent;
            backdrop-filter: none;
            border-bottom: none;
            padding: 0;
        }

        .logo {
            font-size: 0;
            font-weight: 700;
            font-family: var(--font-serif);
            color: var(--color-foreground);
            text-decoration: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo img {
            height: 48px;
            width: auto;
        }

        .logo-text {
            font-size: 24px;
            font-weight: 700;
            font-family: var(--font-serif);
            color: var(--color-foreground);
        }

        .logo-text span {
            color: var(--color-primary);
        }

        .nav-links {
            display: flex;
            gap: 36px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--color-foreground);
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--color-primary);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--color-primary);
            border-radius: 2px;
            animation: slideIn 0.3s ease;
        }

        @keyframes slideIn {
            from {
                width: 0;
                left: 50%;
            }
            to {
                width: 100%;
                left: 0;
            }
        }

        .btn-booking {
            background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
            color: #ffffff;
            padding: 12px 24px;
            border-radius: 99px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            box-shadow: 0 6px 20px rgba(212, 129, 108, 0.25);
        }

        .btn-booking:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(201, 149, 109, 0.35);
        }

        /* Hero Section */
        header.hero {
            padding: 180px 28px 120px;
            max-width: 1240px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.15fr 1fr;
            gap: 80px;
            align-items: center;
            margin-top: 60px;
        }

        .hero-content h1 {
            font-size: clamp(3.2rem, 6vw, 5.2rem);
            line-height: 1.05;
            margin-bottom: 24px;
            color: var(--color-foreground);
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .hero-content h1 span {
            color: var(--color-primary);
            font-style: italic;
        }

        .hero-content p {
            font-size: 1.25rem;
            color: var(--color-muted-foreground);
            margin-bottom: 36px;
            max-width: 520px;
            animation: fadeInUp 0.8s ease 0.4s both;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            animation: fadeInUp 0.8s ease 0.6s both;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
            color: white;
            padding: 16px 32px;
            border-radius: 16px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 24px rgba(236, 72, 153, 0.3);
            font-size: 16px;
        }

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(201, 149, 109, 0.4);
        }

        .btn-secondary {
            background: white;
            color: var(--color-foreground);
            padding: 16px 32px;
            border-radius: 16px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--color-border);
            cursor: pointer;
            font-size: 16px;
        }

        .btn-secondary:hover {
            background: var(--color-background);
            border-color: var(--color-primary);
            color: var(--color-primary);
        }

        .hero-visual {
            position: relative;
            animation: fadeInRight 0.8s ease 0.4s both;
        }

        .floating-card {
            position: absolute;
            background: white;
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 16px 40px rgba(92, 61, 58, 0.12);
            animation: float 4s ease-in-out infinite;
        }

        .card-1 {
            width: 280px;
            top: 0;
            left: 0;
            animation-delay: 0s;
        }

        .card-2 {
            width: 260px;
            bottom: 20px;
            right: 0;
            animation-delay: 2s;
        }

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

        .hero-img-container {
            width: 100%;
            height: 520px;
            background: linear-gradient(135deg, var(--color-secondary) 0%, rgba(255, 227, 189, 0.7) 50%, rgba(201, 149, 109, 0.3) 100%);
            border-radius: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 24px 48px rgba(92, 61, 58, 0.12);
        }

        .hero-img-container img {
            position: relative;
            z-index: 1;
            width: 95%;
            height: 95%;
            object-fit: contain;
            border-radius: 24px;
        }

        .floating-card {
            position: absolute;
            background: white;
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 16px 40px rgba(92, 61, 58, 0.12);
            animation: float 4s ease-in-out infinite;
            z-index: 10;
        }

        .card-1 {
            width: 220px;
            top: 12px;
            left: 12px;
            animation-delay: 0s;
        }

        .card-2 {
            width: 200px;
            bottom: 12px;
            right: 12px;
            animation-delay: 2s;
        }

        @media (max-width: 768px) {
            .hero-img-container {
                height: 400px;
            }
            .hero-img-container img {
                width: 90%;
                height: 90%;
            }
            .floating-card {
                z-index: 10;
            }
            .card-1 { width: 180px; top: 8px; left: 8px; }
            .card-2 { width: 170px; bottom: 8px; right: 8px; }
        }

        .hero-img-container::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
            border-radius: 50%;
            top: -80px;
            right: -80px;
        }

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

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

        /* Why Us Section */
        .why-us {
            background: linear-gradient(180deg, rgba(212, 129, 108, 0.04) 0%, rgba(201, 149, 109, 0.04) 100%);
            padding: 120px 28px;
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }

        .container {
            max-width: 1240px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-title h2 {
            font-size: 3rem;
            margin-bottom: 16px;
            animation: fadeInUp 0.8s ease both;
        }

        .section-title p {
            color: var(--color-muted-foreground);
            font-size: 1.15rem;
            max-width: 600px;
            margin: 0 auto;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 40px;
        }

        .card {
            background: var(--color-card);
            border: 1.5px solid var(--color-border);
            padding: 48px 40px;
            border-radius: 28px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(212, 129, 108, 0.06);
            animation: slideUp 0.6s ease both;
        }

        .card:nth-child(1) { animation-delay: 0s; }
        .card:nth-child(2) { animation-delay: 0.15s; }
        .card:nth-child(3) { animation-delay: 0.3s; }

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

        .card::before {
            content: '';
            position: absolute;
            top: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 129, 108, 0.1), rgba(201, 149, 109, 0.1));
            transition: top 0.4s ease;
            border-radius: 28px;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(212, 129, 108, 0.2);
            border-color: var(--color-primary);
        }

        .card:hover::before {
            top: 0;
        }

        .card-content {
            position: relative;
            z-index: 1;
        }

        .card-icon {
            font-size: 3rem;
            margin-bottom: 16px;
        }

        .card h3 {
            font-size: 1.6rem;
            margin-bottom: 12px;
            color: var(--color-foreground);
        }

        .card p {
            color: var(--color-muted-foreground);
            font-size: 0.98rem;
            line-height: 1.8;
        }

        /* Testimonials */
        .testimonials {
            padding: 120px 28px;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 36px;
            border: 1.5px solid var(--color-border);
            box-shadow: 0 4px 16px rgba(92, 61, 58, 0.06);
            transition: all 0.3s ease;
            animation: slideUp 0.6s ease both;
        }

        .testimonial-card:nth-child(1) { animation-delay: 0s; }
        .testimonial-card:nth-child(2) { animation-delay: 0.15s; }
        .testimonial-card:nth-child(3) { animation-delay: 0.3s; }

        .testimonial-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(212, 129, 108, 0.15);
        }

        .stars {
            color: #FACC15;
            margin-bottom: 12px;
            font-size: 1.2rem;
        }

        .quote {
            font-style: italic;
            color: var(--color-muted-foreground);
            margin-bottom: 16px;
            line-height: 1.8;
        }

        .author {
            font-weight: 600;
            color: var(--color-foreground);
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, #D4816C 0%, #C9956D 100%);
            color: white;
            padding: 100px 28px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1), transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1), transparent 50%);
            pointer-events: none;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 0.8s ease both;
        }

        .cta h2 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .cta p {
            font-size: 1.15rem;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        /* Footer */
        footer {
            background: #5C3D3A;
            color: white;
            padding: 60px 28px 30px;
            text-align: center;
        }

        footer p {
            opacity: 0.85;
            font-size: 0.95rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            header.hero {
                grid-template-columns: 1fr;
                padding-top: 130px;
                gap: 50px;
            }
            .nav-links {
                display: none;
            }
            .hero-img-container {
                height: 400px;
            }
            .section-title h2 {
                font-size: 2rem;
            }
            .cta h2 {
                font-size: 2rem;
            }
        }

/* Shared inner-page styles */
.page-header, .gallery-section, .reviews-section, .booking-section, .services-section { padding: 160px 28px 100px; }
.page-header, .section-title { text-align: center; }
.page-header h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 16px; }
.page-header p, .section-title p { color: var(--color-muted-foreground); max-width: 650px; margin: 0 auto; }
.gallery-section, .reviews-section, .booking-section, .services-section { min-height: 70vh; }
.gallery-section .section-title, .reviews-section .section-title, .booking-section .section-title, .services-section .section-title { margin-bottom: 48px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.gallery-item { background: var(--color-card); border: 1.5px solid var(--color-border); border-radius: 24px; padding: 14px; box-shadow: 0 4px 16px rgba(92,61,58,.06); transition: transform .3s ease, box-shadow .3s ease; }
.gallery-item:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(212,129,108,.16); }
.gallery-item h3, .gallery-item p { padding: 8px 12px 0; }
.gallery-item p { color: var(--color-muted-foreground); }
.booking-form, .review-form-card { max-width: 680px; margin: 0 auto 48px; background: var(--color-card); border: 1.5px solid var(--color-border); border-radius: 24px; padding: 36px; box-shadow: 0 8px 28px rgba(92,61,58,.08); }
.booking-form h3, .review-form-card h3 { font-family: var(--font-serif); font-size: 1.8rem; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--color-border); border-radius: 12px; font: inherit; color: var(--color-foreground); background: #fff; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 4px rgba(212,129,108,.12); }
.star-input { display: flex; gap: 8px; margin: 8px 0 20px; }
.star-input span { cursor: pointer; color: #d9c7c0; font-size: 2rem; line-height: 1; }
.star-input span.active, .stars { color: #e5a62b; }
.reviews-list { max-width: 820px; margin: 0 auto; display: grid; gap: 20px; }
.review-card { background: var(--color-card); border: 1.5px solid var(--color-border); border-radius: 20px; padding: 28px; box-shadow: 0 4px 16px rgba(92,61,58,.06); }
.reviewer-info { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 12px; }
.review-card p { color: var(--color-muted-foreground); line-height: 1.75; }
.price { color: var(--color-primary) !important; font-weight: 700; font-size: 1.2rem; margin-top: 18px; }
@media (max-width: 768px) { .page-header, .gallery-section, .reviews-section, .booking-section, .services-section { padding: 130px 20px 70px; } .booking-form, .review-form-card { padding: 24px; } .reviewer-info { align-items: flex-start; flex-direction: column; gap: 4px; } }


/* Booking Page Layout */
.main { padding: 140px 28px 80px; max-width: 1240px; margin: 0 auto; }
.header-title { text-align: center; margin-bottom: 60px; }
.header-title h1 { font-size: clamp(2.5rem, 6vw, 3.8rem); color: var(--color-foreground); margin-bottom: 16px; }
.header-title p { color: var(--color-muted-foreground); font-size: 1.2rem; max-width: 600px; margin: 0 auto; }
.booking-grid { max-width: 820px; margin: 0 auto; }
.booking-card { background: var(--color-card); border: 2px solid var(--color-border); border-radius: 28px; padding: 48px; box-shadow: 0 12px 40px rgba(92,61,58,.1); }
.booking-card h2 { font-family: var(--font-serif); font-size: 2.2rem; margin-bottom: 32px; color: var(--color-foreground); }

/* Calendar UI */
.calendar-container { background: #fff; border: 2px solid var(--color-border); border-radius: 20px; padding: 24px; box-shadow: 0 8px 28px rgba(92,61,58,.08); }
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-weight: 700; color: var(--color-foreground); }
.calendar-header button { background: linear-gradient(135deg, var(--color-primary), var(--color-accent)); color: white; border: none; border-radius: 12px; cursor: pointer; padding: 8px 18px; box-shadow: 0 4px 16px rgba(212,129,108,.25); transition: all 0.3s ease; }
.calendar-header button:hover { transform: scale(1.08); box-shadow: 0 8px 24px rgba(212,129,108,.35); }
.calendar-days-header { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; font-size: 0.9rem; color: var(--color-muted-foreground); margin-bottom: 12px; font-weight: 600; }
.calendar-dates { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.calendar-date { padding: 13px 0; text-align: center; border-radius: 12px; cursor: pointer; font-weight: 600; transition: all 0.3s ease; color: var(--color-foreground); }
.calendar-date:hover:not(.empty):not(.fully-booked) { background: var(--color-secondary); }
.calendar-date.active { background: var(--color-primary); color: white; box-shadow: 0 4px 16px rgba(212,129,108,.3); }
.calendar-date.fully-booked { background: #f5f0ee; color: #b0a098; cursor: not-allowed; border: 1.5px dashed #e0d6d2; }
.time-slots { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 12px; margin: 8px 0 24px; }
.time-btn { padding: 14px; border: 2px solid var(--color-primary); border-radius: 14px; cursor: pointer; background: white; color: var(--color-primary); font-weight: 700; font-size: 0.95rem; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(212,129,108,.1); }
.time-btn:hover:not(:disabled):not(.active):not(.fully-booked) { background: var(--color-primary); color: white; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212,129,108,.3); }
.time-btn.active { background: linear-gradient(135deg, var(--color-primary), var(--color-accent)); color: white; border-color: transparent; box-shadow: 0 8px 24px rgba(212,129,108,.35); }
.time-btn.fully-booked, .time-btn:disabled { background: #f5f0ee; color: #b0a098; border-color: #e0d6d2; cursor: not-allowed; opacity: 0.75; }

/* Submit Button */
.btn-submit-review { width: 100%; padding: 18px; background: linear-gradient(135deg, var(--color-primary), var(--color-accent)); color: white; border: none; border-radius: 16px; font-weight: 800; font-size: 1.05rem; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 8px 28px rgba(212,129,108,.35); display: block; margin-top: 8px; }
.btn-submit-review:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(201,149,109,.45); letter-spacing: 0.5px; }

/* Review Page */
.reviews-section { padding: 140px 28px 80px; }
.review-form-card { max-width: 680px; margin: 0 auto 60px; background: var(--color-card); border: 2px solid var(--color-border); border-radius: 28px; padding: 40px; box-shadow: 0 12px 40px rgba(92,61,58,.1); }
.review-form-card h3 { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 28px; color: var(--color-foreground); }
.btn-primary { background: linear-gradient(135deg, var(--color-primary), var(--color-accent)); color: white; padding: 16px 32px; border-radius: 16px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; border: none; cursor: pointer; box-shadow: 0 8px 24px rgba(236,72,153,.3); font-size: 16px; }
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(201,149,109,.4); }
.btn-secondary { background: white; color: var(--color-foreground); padding: 16px 32px; border-radius: 16px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; border: 2px solid var(--color-border); cursor: pointer; font-size: 16px; }
.btn-secondary:hover { background: var(--color-background); border-color: var(--color-primary); color: var(--color-primary); }

@media (max-width: 768px) {
    .main, .reviews-section { padding: 120px 20px 60px; }
    .booking-card, .review-form-card { padding: 32px 20px; }
    .header-title h1 { font-size: 2rem; }
}


/* Booking Page Split Layout */
.booking-grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-form-left {
    background: var(--color-card);
    border: 2px solid var(--color-border);
    border-radius: 28px;
    padding: 48px;
    box-shadow: 0 12px 40px rgba(92,61,58,.1);
}

.booking-form-left h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 32px;
    color: var(--color-foreground);
}

.booking-calendar-right {
    background: var(--color-card);
    border: 2px solid var(--color-border);
    border-radius: 28px;
    padding: 48px;
    box-shadow: 0 12px 40px rgba(92,61,58,.1);
}

.booking-calendar-right h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 32px;
    color: var(--color-foreground);
}

.calendar-info {
    display: flex;
    gap: 24px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-muted-foreground);
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.dot.available {
    background: white;
    border: 2px solid var(--color-border);
}

.dot.selected {
    background: var(--color-primary);
}

.dot.booked {
    background: #f5f0ee;
    border: 1.5px dashed #e0d6d2;
}

@media (max-width: 968px) {
    .booking-grid-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ===== ADMIN DASHBOARD STYLES ===== */
:root {
    --admin-sidebar-width: 280px;
    --admin-sidebar-width-collapsed: 90px;
}

.admin-container {
    display: flex;
    min-height: 100vh;
    background-color: var(--color-background);
}

/* ===== ADMIN SIDEBAR ===== */
.admin-sidebar {
    width: var(--admin-sidebar-width);
    background: linear-gradient(185deg, #4A2E2B 0%, #2D1B19 100%);
    color: white;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 999;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    overflow-x: hidden;
}

.admin-sidebar::-webkit-scrollbar {
    width: 6px;
}

.admin-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: rgba(212, 129, 108, 0.5);
    border-radius: 3px;
}

.admin-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

.admin-sidebar.collapsed {
    width: var(--admin-sidebar-width-collapsed);
    padding: 28px 14px;
}

.admin-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    gap: 12px;
}

.admin-logo {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    overflow: hidden;
    flex: 1;
    transition: all 0.3s ease;
}

.admin-sidebar.collapsed .admin-logo {
    opacity: 0;
    transform: translateX(-15px);
    pointer-events: none;
    width: 0;
    margin: 0;
}

.admin-logo-text {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1;
}

.admin-logo-subtitle {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    font-weight: 700;
    margin-top: 4px;
}

.sidebar-toggle {
    background: rgba(212, 129, 108, 0.15);
    border: 1px solid rgba(212, 129, 108, 0.3);
    border-radius: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.sidebar-toggle span {
    display: block;
    width: 18px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.admin-sidebar.collapsed .sidebar-toggle span:nth-child(1) {
    transform: none;
}

.admin-sidebar.collapsed .sidebar-toggle span:nth-child(2) {
    opacity: 1;
}

.admin-sidebar.collapsed .sidebar-toggle span:nth-child(3) {
    transform: none;
}

.sidebar-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.sidebar-toggle span:nth-child(2) {
    opacity: 0;
}

.sidebar-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.sidebar-toggle:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.08);
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    margin-bottom: 20px;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    border-radius: 14px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.admin-sidebar.collapsed .admin-nav-link {
    padding: 12px 0;
    justify-content: center;
    gap: 0;
}

.admin-sidebar.collapsed .admin-nav-link .nav-text {
    display: none;
}

.admin-sidebar.collapsed .admin-nav-link .nav-icon {
    margin-right: 0;
    font-size: 1.4rem;
}

.admin-nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transform: translateX(3px);
}

.admin-sidebar.collapsed .admin-nav-link:hover {
    transform: scale(1.05);
}

.admin-nav-link.active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #fff;
    box-shadow: 0 8px 24px rgba(212, 129, 108, 0.4);
    font-weight: 600;
}

.nav-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-logout {
    width: 100%;
    padding: 11px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.admin-sidebar.collapsed .btn-logout {
    padding: 11px 0;
    font-size: 0;
}

.admin-sidebar.collapsed .btn-logout::before {
    content: '🚪';
    font-size: 1.2rem;
}

.btn-logout:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ff9999;
}

/* ===== ADMIN MAIN CONTENT ===== */
.admin-main {
    flex: 1;
    margin-left: var(--admin-sidebar-width);
    transition: margin-left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--color-background);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.sidebar-collapsed .admin-main {
    margin-left: var(--admin-sidebar-width-collapsed);
}

/* ===== ADMIN HEADER ===== */
.admin-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 248, 0.95));
    backdrop-filter: blur(16px);
    padding: 40px 48px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    box-shadow: 0 4px 16px rgba(92, 61, 58, 0.04);
}

.admin-header-content {
    flex: 1;
}

.admin-kicker {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.admin-header h1 {
    font-size: 2.4rem;
    color: var(--color-foreground);
    margin-bottom: 6px;
    font-weight: 700;
    letter-spacing: -0.8px;
    line-height: 1.1;
}

.admin-header h1 span {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-left: 6px;
}

#adminWelcome {
    color: var(--color-muted-foreground);
    font-size: 1.05rem;
    margin: 0;
}

.admin-header-time {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.time-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--color-muted-foreground);
    text-transform: uppercase;
}

#currentTime {
    font-weight: 700;
    color: var(--color-foreground);
    background: #fff;
    padding: 10px 18px;
    border-radius: 99px;
    border: 1.5px solid var(--color-border);
    box-shadow: 0 4px 12px rgba(92, 61, 58, 0.06);
    font-size: 0.95rem;
}

/* ===== ADMIN CONTENT ===== */
.admin-content {
    flex: 1;
    padding: 48px;
    overflow-y: auto;
}

.admin-content::-webkit-scrollbar {
    width: 8px;
}

.admin-content::-webkit-scrollbar-track {
    background: rgba(212, 129, 108, 0.05);
    border-radius: 10px;
}

.admin-content::-webkit-scrollbar-thumb {
    background: rgba(212, 129, 108, 0.3);
    border-radius: 10px;
}

.admin-content::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* ===== ADMIN SECTIONS ===== */
.admin-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.admin-section.active {
    display: block;
}

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

.admin-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    gap: 24px;
}

.admin-section-header h2 {
    font-size: 2rem;
    color: var(--color-foreground);
    font-weight: 700;
}

.filter-group {
    display: flex;
    gap: 12px;
}

/* ===== ADMIN OVERVIEW ===== */
.admin-overview {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    padding-bottom: 28px;
    border-bottom: 2px dashed var(--color-border);
    gap: 24px;
}

.admin-overview h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--color-foreground);
    font-weight: 700;
}

.admin-overview h2 em {
    font-style: italic;
    color: var(--color-primary);
    font-weight: 800;
}

.overview-link {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border: none;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(212, 129, 108, 0.25);
    white-space: nowrap;
}

.overview-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 129, 108, 0.35);
    gap: 12px;
}

/* ===== DASHBOARD STATS ===== */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-bottom: 12px;
}

.stat-card {
    background: #fff;
    border: 2px solid var(--color-border);
    border-radius: 24px;
    padding: 32px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 8px 28px rgba(212, 129, 108, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 129, 108, 0.08), transparent);
    transition: all 0.35s ease;
}

.stat-card:hover::before {
    top: 0;
    left: 0;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--color-border);
    transition: background 0.3s ease;
    z-index: 1;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(212, 129, 108, 0.15);
    border-color: rgba(212, 129, 108, 0.5);
}

.stat-card:hover::after {
    background: var(--color-primary);
}

.stat-card-primary::after {
    background: var(--color-primary);
}

.stat-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--color-secondary), rgba(255, 227, 189, 0.6));
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(212, 129, 108, 0.2);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-content h3 {
    font-size: 0.85rem;
    color: var(--color-muted-foreground);
    margin-bottom: 8px;
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-foreground);
    line-height: 1;
}

/* ===== TABLE STYLES ===== */
.table-responsive {
    overflow-x: auto;
    border-radius: 24px;
    border: 2px solid var(--color-border);
    box-shadow: 0 8px 32px rgba(92, 61, 58, 0.08);
    background: #fff;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead {
    background: linear-gradient(135deg, #FDF4EE, #FFF9F6);
    border-bottom: 2px solid var(--color-border);
}

.admin-table th {
    padding: 20px 24px;
    text-align: left;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--color-foreground);
}

.admin-table tbody tr {
    border-bottom: 1px solid var(--color-border);
    transition: background 0.2s ease;
}

.admin-table tbody tr:hover {
    background: #FFF9F6;
}

.admin-table tbody tr:last-child {
    border-bottom: none;
}

.admin-table td {
    padding: 20px 24px;
    font-size: 0.95rem;
    vertical-align: middle;
}

/* ===== STATUS BADGES ===== */
.status-badge {
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid;
}

.status-pending {
    background: #FFF7ED;
    color: #C2410C;
    border-color: #FFEDD5;
}

.status-confirmed {
    background: #F0FDF4;
    color: #15803D;
    border-color: #DCFCE7;
}

.status-cancelled {
    background: #FEF2F2;
    color: #B91C1C;
    border-color: #FEE2E2;
}

/* ===== ACTION BUTTONS ===== */
.btn-action {
    padding: 10px 18px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-edit {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(212, 129, 108, 0.25);
}

.btn-edit:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 149, 109, 0.35);
}

/* ===== FILTER SELECT ===== */
.filter-select {
    padding: 12px 20px;
    border: 1.5px solid var(--color-border);
    border-radius: 12px;
    font-size: 0.95rem;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-foreground);
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(92, 61, 58, 0.04);
}

.filter-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(212, 129, 108, 0.12);
}

/* ===== REVIEWS GRID ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.review-admin-card {
    background: #fff;
    border: 2px solid var(--color-border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 28px rgba(92, 61, 58, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-admin-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(212, 129, 108, 0.15);
    border-color: var(--color-primary);
}

.review-admin-card .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 12px;
}

.review-admin-card .review-header strong {
    color: var(--color-foreground);
    font-size: 0.95rem;
}

.review-admin-card .stars {
    color: #FACC15;
    font-size: 1.1rem;
    white-space: nowrap;
}

.review-admin-card .review-comment {
    color: var(--color-muted-foreground);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.75;
    font-size: 0.98rem;
}

.review-admin-card .review-date {
    font-size: 0.85rem;
    color: var(--color-muted-foreground);
    text-align: right;
    border-top: 1px dashed var(--color-border);
    padding-top: 12px;
}

/* ===== MODAL STYLES ===== */
.admin-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(92, 61, 58, 0.6);
    backdrop-filter: blur(12px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 24px 48px rgba(92, 61, 58, 0.25);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: 28px 28px 20px;
    border-bottom: 1.5px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.modal-header h3 {
    font-size: 1.5rem;
    color: var(--color-foreground);
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-muted-foreground);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--color-primary);
}

.modal-body {
    padding: 28px;
}

.modal-body p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--color-foreground);
    font-weight: 600;
}

.modal-footer {
    padding: 20px 28px;
    border-top: 1.5px solid var(--color-border);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.loading-message {
    text-align: center;
    padding: 60px 20px;
    color: var(--color-muted-foreground);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .admin-header {
        padding: 32px 40px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .admin-header-time {
        align-items: flex-start;
    }
    
    .admin-content {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .admin-container {
        display: block;
    }

    .admin-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 20px 16px;
    }
    
    .admin-sidebar.collapsed {
        width: var(--admin-sidebar-width);
        padding: 20px 16px;
    }
    
    .admin-sidebar-header {
        margin-bottom: 16px;
    }
    
    .admin-nav {
        flex-direction: row;
        gap: 6px;
        overflow-x: auto;
        padding-bottom: 8px;
        margin-bottom: 16px;
    }
    
    .admin-nav-link {
        gap: 8px;
        padding: 10px 12px;
    }
    
    .admin-main {
        margin-left: 0 !important;
    }
    
    .admin-header {
        padding: 24px 24px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .admin-overview {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .admin-header h1 {
        font-size: 1.8rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .admin-table {
        font-size: 0.85rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 12px;
    }
}

/* ===== LOGIN MODAL STYLES ===== */
.login-modal {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    z-index: 3000;
}

.login-modal-content {
    background: linear-gradient(135deg, #fff 0%, #fff7f8 100%);
    border-radius: 32px;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 40px 80px rgba(92, 61, 58, 0.3), 0 0 1px rgba(0, 0, 0, 0.1);
    animation: loginSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 129, 108, 0.1);
}

@keyframes loginSlideIn {
    from {
        opacity: 0;
        transform: translateY(-40px) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.login-modal-header {
    padding: 48px 40px 32px;
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 32px 32px 0 0;
    color: white;
}

.login-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.login-logo-main {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.login-logo-sub {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.95;
}

.login-modal-body {
    padding: 48px 40px;
}

.login-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin-bottom: 8px;
    font-family: var(--font-serif);
}

.login-subtitle {
    font-size: 0.95rem;
    color: var(--color-muted-foreground);
    margin-bottom: 32px;
    line-height: 1.5;
}

#loginForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-foreground);
}

.login-input {
    padding: 14px 18px;
    border: 1.5px solid var(--color-border);
    border-radius: 14px;
    font-size: 0.95rem;
    font-family: var(--font-sans);
    color: var(--color-foreground);
    background: #fff;
    transition: all 0.3s ease;
}

.login-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(212, 129, 108, 0.12);
    background: #fff;
}

.login-input::placeholder {
    color: var(--color-muted-foreground);
    opacity: 0.6;
}

.login-error {
    padding: 12px 16px;
    background: #FEF2F2;
    border: 1px solid #FEE2E2;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #B91C1C;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-error::before {
    content: '⚠️';
    font-size: 1rem;
}

.login-btn {
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(212, 129, 108, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212, 129, 108, 0.4);
}

.login-btn:active {
    transform: translateY(0);
}

@media (max-width: 480px) {
    .login-modal-content {
        max-width: 90vw;
    }
    
    .login-modal-header {
        padding: 36px 24px 24px;
    }
    
    .login-modal-body {
        padding: 36px 24px;
    }
    
    .login-title {
        font-size: 1.6rem;
    }
    
    .login-logo-main {
        font-size: 1.8rem;
    }
}


