/* =====================================================
   TAAZA RESORT - Professional Design System
   Luxury Resort & Restaurant | Bharatpur, Nepal
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== CSS CUSTOM PROPERTIES (Regal Forest & Sand - Professional Resort) ===== */
:root {
    --primary:      #1e3a2a; /* Regal Forest Green */
    --primary-light:#2d5a41;
    --primary-deep: #0f2218;
    --accent:       #c5a059; /* Polished Gold */
    --accent-light: #d4b87e;
    --white:        #ffffff;
    --black:        #0f2218;
    --dark:         #1e3a2a;
    --sand:         #fdfaf5; /* Warm Resort Background */
    --ivory:        #f7f3ed; /* Soft Surface */
    --text-main:    #1e3a2a;
    --text-muted:   #4a5568;
    --border:       rgba(30, 58, 42, 0.1);
    --border-light: rgba(30, 58, 42, 0.05);
    --shadow-sm:    0 2px 10px rgba(30, 58, 42, 0.04);
    --shadow-md:    0 8px 30px rgba(30, 58, 42, 0.08);
    --shadow-lg:    0 20px 50px rgba(30, 58, 42, 0.12);
    --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Mappings for existing system */
    --green:           var(--primary);
    --green-light:     var(--primary-light);
    --green-deep:      var(--primary-deep);
    --gold:            var(--accent);
    --gold-light:      var(--accent-light);
    --gold-pale:       rgba(197, 160, 89, 0.1);
    --primary-color:   var(--primary);
    --secondary-color: var(--accent);
    --text-color:      var(--text-main);
    --light-bg:        var(--sand);
    --border-color:    var(--border);
    --cream:           #ffffff;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    background: var(--sand);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.25;
    color: var(--primary);
}

p { color: var(--text-muted); }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: 'Inter', sans-serif; }

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SECTION PADDING ===== */
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

/* ===== SECTION LABELS ===== */
.section-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: var(--white);
    padding: 14px 32px;
    border: 2px solid var(--green);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary:hover {
    background: var(--green-deep);
    border-color: var(--green-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15,23,42,0.15);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--green-deep);
    padding: 14px 32px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(148,163,184,0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 13px 30px;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--green);
    padding: 13px 30px;
    border: 2px solid var(--green);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.btn-outline-dark:hover {
    background: var(--green);
    color: var(--white);
}

/* legacy .btn alias - mirrors btn-primary */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: var(--white);
    padding: 14px 32px;
    border: 2px solid var(--green);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn:hover {
    background: var(--green-deep);
    border-color: var(--green-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15,23,42,0.15);
}

/* ===== DIVIDER ===== */
.gold-divider {
    display: block;
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 16px 0 32px;
}
.gold-divider.center { margin-left: auto; margin-right: auto; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    background: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    gap: 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.02em;
    line-height: 1.1;
    white-space: nowrap;
}

.logo-sub {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 1px;
}

.nav-logo {
    height: 44px;
    width: 44px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
}

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-links > li > a {
    display: block;
    padding: 6px 16px;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: color var(--transition);
    text-decoration: none;
    white-space: nowrap;
    border-radius: 4px;
}

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

.nav-links > li > a.active {
    font-weight: 600;
}

/* Nav Book Now special link */
.nav-links .nav-book a {
    background: var(--gold);
    color: var(--green-deep);
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}
.nav-links .nav-book a:hover {
    background: var(--gold-light);
    color: var(--green-deep);
}

/* Nav Menu special link */
.nav-links .nav-menu {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-links .nav-menu:hover {
    color: var(--gold-light);
}

/* Dots menu (right side cluster) */
.nav-dots-menu {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}



/* Cart Nav Button */
.cart-nav-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    color: var(--green-deep);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 7px 16px;
    border-radius: 4px;
    transition: var(--transition);
    white-space: nowrap;
}
.cart-nav-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* Dots Button (...) */
.dots-btn {
    background: transparent;
    border: none;
    color: var(--green-deep);
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    padding: 0 5px;
    line-height: 1;
}

.dots-btn:hover {
    color: var(--gold);
}

/* Dots Dropdown */
.dots-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 240px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    padding: 15px;
    z-index: 1000;
    border: 1px solid var(--border);
    transform-origin: top right;
    animation: dropdownPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.dots-dropdown.open {
    display: flex;
}

.dots-dropdown a {
    padding: 12px 16px;
    color: var(--green-deep);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.2s ease;
}

.dots-dropdown a:hover {
    background: var(--ivory);
    color: var(--gold);
    padding-left: 22px;
}

.dots-dropdown .dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 10px 0;
}

.dots-dropdown .admin-link {
    color: #ef4444 !important;
}

.dots-dropdown .admin-link:hover {
    background: #fef2f2;
    color: #dc2626 !important;
}



/* Navbar Cart Button */
.cart-nav-btn {
    display: none; /* Hidden when empty, shown via JS */
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--gold);
    color: var(--green-deep);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(201,160,53,0.3);
}
.cart-nav-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(201,160,53,0.4);
}
.cart-nav-count {
    background: var(--green-deep);
    color: var(--gold);
    min-width: 18px;
    height: 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    padding: 0 4px;
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
}

/* ===== ANIMATION ===== */
@keyframes dropFade {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
    from { transform: translateX(100%); }
    to   { transform: translateX(0); }
}
@keyframes popIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ============================================================
   HERO - Homepage
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #1a1a1a;
    perspective: 1000px;
}

.hero-bg-layer {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-noodle.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 0 24px;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    animation: fadeInUp 1s ease both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(148,163,184,0.1);
    border: 1px solid rgba(148,163,184,0.4);
    color: var(--gold);
    padding: 6px 20px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.hero-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0%,100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 0.8; transform: scaleY(0.5); }
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 100%);
    padding: 80px 24px 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2394a3b8' fill-opacity='0.05'%3E%3Cpath d='M20 20.5V18H0v5h20v20.5h2V23h20v-5H22V20.5h-2z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-header .container { position: relative; z-index: 1; }

.page-header .section-label {
    color: var(--gold);
    opacity: 0.85;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
    padding: 100px 0;
    background: var(--sand);
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 8px;
}

.about-text > p {
    font-size: 1.05rem;
    color: var(--mid);
    line-height: 1.85;
    margin-bottom: 32px;
}

.about-text .signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--green);
    font-size: 1.05rem;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-card {
    background: var(--white);
    padding: 28px 24px;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height 0.35s ease;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.about-card:hover::before { height: 100%; }

.about-card .icon {
    font-size: 1.8rem;
    margin-bottom: 14px;
    display: block;
}

.about-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    color: var(--green);
}

.about-card p {
    font-size: 0.88rem;
    color: var(--mid);
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   FEATURED ROOMS
   ============================================================ */
.featured-rooms {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1rem;
    color: var(--mid);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.75;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.room-card {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.room-image {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    position: relative;
    overflow: hidden;
}

.room-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.25));
}

.room-card-body {
    padding: 24px;
}

.room-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.room-card p {
    font-size: 0.9rem;
    color: var(--mid);
    line-height: 1.65;
    margin-bottom: 16px;
}

.room-card .price {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}
.room-card .price span {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--light-mid);
}

.room-card .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.room-card .btn:hover {
    background: var(--green-deep);
}

/* ============================================================
   ROOMS PAGE
   ============================================================ */
.rooms-section { padding: 80px 0; }

.room-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 64px;
    padding: 48px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.room-detail:hover { box-shadow: var(--shadow-md); }

.room-detail.alternate {
    direction: rtl;
}
.room-detail.alternate > * { direction: ltr; }

.room-detail-image {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    border-radius: 8px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    position: relative;
    overflow: hidden;
}

.room-detail-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,160,53,0.1), transparent);
}

.room-detail-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.room-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
}
.room-price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--light-mid);
}

.room-description {
    font-size: 0.97rem;
    color: var(--mid);
    line-height: 1.85;
    margin-bottom: 24px;
}

.room-features h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
}

.room-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
    margin-bottom: 28px;
}

.room-features li {
    font-size: 0.88rem;
    color: var(--mid);
    display: flex;
    align-items: center;
    gap: 8px;
}
.room-features li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* All Rooms Include */
.amenities-summary {
    background: var(--ivory);
    padding: 80px 0;
}

.amenities-summary h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 16px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.amenity-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.amenity-item:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.amenity-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 10px;
}

.amenity-item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--green);
    margin: 0;
}

/* ============================================================
   AMENITIES PAGE
   ============================================================ */
.amenities-page { padding: 80px 0; }

.amenity-category {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 40px;
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.amenity-category:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(201,160,53,0.3);
}

.amenity-category.alternate {
    grid-template-columns: 1fr 160px;
    direction: rtl;
}
.amenity-category.alternate > * { direction: ltr; }

.amenity-icon-large {
    font-size: 4.5rem;
    text-align: center;
    background: var(--ivory);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--border);
    margin: 0 auto;
    flex-shrink: 0;
}

.amenity-category > div:last-child { }
.amenity-category h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.amenity-category > .amenity-content > p,
.amenity-category p:not(.amenity-icon-large) {
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.97rem;
}

.amenity-details {
    background: var(--ivory);
    padding: 20px 24px;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-top: 16px;
}
.amenity-details p {
    margin-bottom: 6px !important;
    font-size: 0.9rem !important;
    color: var(--mid) !important;
}
.amenity-details p:last-child { margin-bottom: 0 !important; }

/* Additional Services */
.additional-services {
    padding: 80px 0;
    background: var(--ivory);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.service-item {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}
.service-item span {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 14px;
}
.service-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--green);
}
.service-item p {
    font-size: 0.85rem;
    color: var(--mid);
    margin: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    background: var(--green);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}
.testimonials::before {
    content: '"';
    position: absolute;
    top: -20px; left: 40px;
    font-family: 'Playfair Display', serif;
    font-size: 20rem;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    pointer-events: none;
}

.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header p  { color: rgba(255,255,255,0.65); }
.testimonials .section-label      { color: var(--gold-light); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial {
    background: rgba(255,255,255,0.07);
    padding: 32px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 3px solid var(--gold);
    transition: var(--transition);
}
.testimonial:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.testimonial .stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.testimonial > p {
    color: rgba(255,255,255,0.85);
    font-size: 0.97rem;
    line-height: 1.85;
    margin-bottom: 20px;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.testimonial .author {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--gold);
    font-size: 0.88rem;
    font-style: normal;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
    background: var(--cream);
    padding: 72px 0;
    border-top: 1px solid var(--border);
}

.newsletter .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.newsletter-text h2 {
    font-size: 1.9rem;
    margin-bottom: 10px;
}
.newsletter-text p {
    font-size: 1rem;
    color: var(--mid);
}

.newsletter-form {
    display: flex;
    gap: 0;
    flex: 1;
    max-width: 480px;
    min-width: 300px;
}
.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--border);
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    background: var(--white);
    color: var(--dark);
    transition: border-color var(--transition);
    outline: none;
}
.newsletter-form input:focus { border-color: var(--green); }

.newsletter-form button {
    background: var(--green);
    color: var(--white);
    padding: 14px 28px;
    border: 2px solid var(--green);
    border-radius: 0 4px 4px 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.newsletter-form button:hover { background: var(--green-deep); border-color: var(--green-deep); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--green-deep);
    color: rgba(255,255,255,0.75);
    padding: 72px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 4px;
}

.footer-brand .logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 24px;
}

.footer-brand .footer-tagline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--gold);
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.footer-section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-section ul li a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-section ul li a::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.6;
}
.footer-section ul li a:hover { color: var(--white); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}
.footer-contact-item .ico {
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.footer-contact-item p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--green-deep);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
    text-decoration: none;
    transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-section { padding: 80px 0; overflow-x: hidden; }

.booking-container {
    background: var(--white);
    padding: 48px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    max-width: 820px;
    margin: 0 auto;
    overflow-x: hidden;
}

.booking-container h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.booking-container > p {
    font-size: 0.95rem;
    color: var(--mid);
    margin-bottom: 32px;
}

.booking-form { margin-bottom: 0; }

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--white);
    transition: border-color var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(51,65,85,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.booking-form button {
    background: var(--green);
    color: var(--white);
    padding: 14px 36px;
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
}
.booking-form button:hover {
    background: var(--green-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.booking-info-section {
    background: var(--ivory);
    padding: 28px;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-top: 36px;
}
.booking-info-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green);
    margin-bottom: 20px;
}

.booking-result-box {
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    margin-top: 28px;
    box-shadow: 0 18px 45px rgba(15,23,42,0.08);
    animation: fadeInUp 0.35s ease both;
}

.booking-result-header h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    color: var(--primary-deep);
}

.booking-result-header p,
.booking-contact-details p,
.booking-note {
    margin: 0 0 10px;
    color: var(--mid);
    line-height: 1.7;
}

.booking-contact-details {
    padding: 16px 18px;
    border: 1px dashed var(--border);
    border-radius: 10px;
    margin-bottom: 16px;
    background: var(--white);
}

.booking-summary {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.booking-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(66,94,66,0.12);
    padding-bottom: 8px;
}

.booking-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 12px;
}

.payment-modal-wrap {
    position: fixed;
    inset: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
}

.payment-modal {
    background: var(--white);
    border-radius: 18px;
    max-width: 420px;
    width: 100%;
    padding: 24px;
    box-shadow: 0 28px 80px rgba(0,0,0,0.2);
}

.payment-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.payment-modal-header h2 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--dark);
}

.payment-close-btn {
    background: #f3f3f3;
    border: none;
    border-radius: 12px;
    width: 38px;
    height: 38px;
    font-size: 1rem;
    cursor: pointer;
}

.payment-description {
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 18px;
}

.payment-options {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.payment-option-btn {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--ivory);
    color: var(--primary-deep);
    padding: 14px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

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

.payment-option-btn.online {
    border-color: var(--primary);
    background: var(--accent-pale);
    color: var(--primary-deep);
}

.payment-summary {
    padding: 16px;
    border-radius: 12px;
    background: var(--ivory);
    border: 1px solid var(--border);
    color: var(--primary-deep);
}

.payment-summary p {
    margin: 8px 0;
}

/* QR Tab Switcher */
.qr-tabs-wrap {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 8px 0 4px;
}

.qr-tab-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 22px;
    border: 2px solid var(--border);
    border-radius: 50px;
    background: #fff;
    color: var(--mid);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.qr-tab-btn.active {
    border-color: var(--gold);
    background: var(--ivory);
    color: var(--dark);
}

.qr-tab-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.esewa-dot  { background: #60bb46; }
.fonepay-dot { background: #e63946; }


.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}
.info-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 4px;
}
.info-item p {
    font-size: 0.85rem;
    color: var(--mid);
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    background: var(--ivory);
    padding: 80px 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.package {
    background: var(--white);
    padding: 32px 28px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.package:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}
.package.featured {
    border-color: var(--gold);
    transform: scale(1.03);
}
.package.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 16px; right: -28px;
    background: var(--gold);
    color: var(--green-deep);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 40px;
    transform: rotate(45deg);
}

.package h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.package-price {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
}

.package-desc {
    font-size: 0.85rem;
    color: var(--mid);
    margin-bottom: 16px;
}

.package-list {
    list-style: none;
    text-align: left;
    margin: 16px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.package-list li {
    font-size: 0.88rem;
    color: var(--mid);
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 8px;
}
.package-list li::before {
    content: 'v';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}
.package-list li:last-child { border-bottom: none; padding-bottom: 0; }

.package .btn {
    background: var(--green);
    color: var(--white);
    padding: 10px 24px;
    border: 2px solid var(--green);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
}
.package .btn:hover {
    background: transparent;
    color: var(--green);
}

/* Payment Methods */
.payment-methods { padding: 80px 0; }

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.method {
    background: var(--ivory);
    padding: 28px 24px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.method:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}
.method span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}
.method h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 6px;
}
.method p {
    font-size: 0.83rem;
    color: var(--mid);
    margin: 0;
}

/* FAQ */
.faq-section, .quick-faq {
    background: var(--ivory);
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.faq-item {
    background: var(--white);
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.faq-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}
.faq-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 10px;
}
.faq-item p {
    font-size: 0.88rem;
    color: var(--mid);
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: var(--green);
    padding: 80px 0;
    text-align: center;
}
.cta-section h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 12px;
}
.cta-section p {
    color: rgba(255,255,255,0.72);
    font-size: 1.05rem;
    margin-bottom: 32px;
}
.cta-section .contact-methods {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-section .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.35);
    padding: 12px 24px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}
.cta-section .cta-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.6);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-section { padding: 80px 0; }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.contact-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.contact-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 16px;
    background: var(--ivory);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 16px;
    border: 1px solid var(--border);
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.contact-card p {
    font-size: 0.88rem;
    color: var(--mid);
    line-height: 1.75;
    margin: 0;
}
.contact-card .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
    padding: 12px 18px;
    background: #25d366;
    border-color: #25d366;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
}
.contact-card .whatsapp-btn:hover {
    background: #1eb84d;
    border-color: #1eb84d;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--ivory);
    padding: 80px 0;
}

.form-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 48px;
    align-items: start;
}

.form-content h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}
.form-content > p {
    font-size: 0.97rem;
    color: var(--mid);
    margin-bottom: 32px;
    line-height: 1.75;
}

.contact-form {
    background: var(--white);
    padding: 36px;
    border-radius: 10px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.contact-form .form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}
.contact-form .form-group.checkbox input { width: auto; }
.contact-form .form-group.checkbox label {
    font-size: 0.88rem;
    color: var(--mid);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    margin-bottom: 0;
}

.form-note {
    font-size: 0.82rem;
    color: var(--light-mid);
    margin-top: 12px;
    margin-bottom: 0;
}

.map-container h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    color: var(--white);
    padding: 48px 32px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    gap: 16px;
}
.map-placeholder p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
}
.map-placeholder p:last-child {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
}

/* Departments */
.departments-section { padding: 80px 0; }

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.department {
    background: var(--white);
    padding: 32px 28px;
    border-radius: 4px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
    box-shadow: var(--shadow-sm);
    background-image: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(253,250,245,1) 100%);
}

.department::after {
    content: 'TAAZA';
    position: absolute;
    bottom: -10px;
    right: -5px;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(30, 58, 42, 0.03);
    pointer-events: none;
    letter-spacing: 0.2em;
}

.department:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: var(--gold);
}

.department h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: 0.03em;
    position: relative;
    padding-bottom: 10px;
}

.department h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.department p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
}

.department .hours {
    margin-top: 10px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 700;
}

/* Social Media Section */
.social-media-section {
    background: var(--green);
    padding: 72px 0;
    text-align: center;
}
.social-media-section h2 { color: var(--white); font-size: 2rem; margin-bottom: 12px; }
.social-media-section p  { color: rgba(255,255,255,0.65); margin-bottom: 32px; }

.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}
.social-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
}
.social-icon:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--green-deep);
}

/* ============================================================
   MENU SECTION (restaurant menu if used standalone)
   ============================================================ */
.menu-section {
    padding: 96px 0;
    background: var(--ivory);
}

.menu-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.menu-btn {
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--mid);
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.88rem;
    transition: var(--transition);
}
.menu-btn:hover, .menu-btn.active {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.menu-category { display: none; }
.menu-category.active {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.menu-grid { }

.menu-item {
    background: var(--white);
    padding: 22px 24px;
    border-radius: 10px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.menu-item:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 12px;
    flex-wrap: wrap;
}
.menu-header h3 {
    color: var(--green);
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
}
.menu-header .price {
    font-family: 'Inter', sans-serif;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
}
.menu-item > p {
    font-size: 0.88rem;
    color: var(--mid);
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   CART TOAST
   ============================================================ */
.cart-toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 22px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9999;
    max-width: 320px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cart-toast.show { opacity: 1; }

/* ============================================================
   DELIVERY PAGE
   ============================================================ */
.delivery-hero {
    background: linear-gradient(135deg, var(--green) 0%, #0f2018 60%, #1a3a25 100%);
    color: var(--white);
    padding: 72px 24px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.delivery-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2394a3b8' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}
.delivery-hero .container { position: relative; z-index: 1; }

.delivery-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: 12px;
}

.delivery-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 20px;
}

.delivery-area-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,160,53,0.15);
    border: 1px solid rgba(201,160,53,0.4);
    color: var(--gold);
    padding: 8px 22px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 8px;
}

/* Delivery Filters */
.delivery-filters {
    background: var(--white);
    padding: 12px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
    max-height: 260px;
    transition: max-height 0.32s ease, padding 0.32s ease;
}
.delivery-filters.filters-collapsed {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.filter-btn {
    padding: 7px 20px;
    border: 1.5px solid var(--border);
    background: var(--white);
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.87rem;
    color: var(--mid);
    transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

/* Delivery Section */
.delivery-section {
    padding: 56px 24px;
    background: var(--cream);
    min-height: 400px;
}

.delivery-section h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

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

/* Food Cards */
.food-card {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}
.food-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.food-card-img {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.8rem;
}

.food-card-body {
    padding: 18px 20px;
}

.food-badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 50px;
    background: var(--ivory);
    color: var(--green);
    border: 1px solid var(--border);
    margin-bottom: 8px;
}

.food-card-body h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 6px;
}

.food-card-body p {
    font-size: 0.85rem;
    color: var(--mid);
    line-height: 1.55;
    margin-bottom: 12px;
}

.food-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.food-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
}

.food-time {
    font-size: 0.82rem;
    color: var(--light-mid);
    display: flex;
    align-items: center;
    gap: 4px;
}

.add-to-cart-btn {
    width: 100%;
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
}
.add-to-cart-btn:hover { background: var(--green-deep); }
.add-to-cart-btn:disabled {
    background: var(--border);
    color: var(--light-mid);
    cursor: not-allowed;
}

.empty-state {
    text-align: center;
    padding: 72px 24px;
    color: var(--light-mid);
    font-size: 1rem;
    grid-column: 1/-1;
}
.empty-state::before {
    content: '';
    display: block;
    font-size: 3rem;
    margin-bottom: 16px;
}

/* ===== CART FAB ===== */
.cart-fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--green-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(201,160,53,0.5);
    z-index: 500;
    transition: var(--transition);
    user-select: none;
    border: none;
}
.cart-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(201,160,53,0.6);
    background: var(--gold-light);
}

.cart-badge {
    position: absolute;
    top: -4px; right: -4px;
    background: #dc2626;
    color: var(--white);
    border-radius: 50%;
    width: 22px; height: 22px;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    font-family: 'Inter', sans-serif;
}

/* ===== MODAL OVERLAY ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
    z-index: 600;
}

/* ===== CART SIDE PANEL ===== */
.cart-modal {
    position: fixed;
    right: 0; top: 0; bottom: 0;
    width: 440px;
    max-width: 100vw;
    background: var(--white);
    z-index: 700;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 48px rgba(0,0,0,0.18);
    animation: slideInRight 0.28s ease;
}

.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 22px;
    background: var(--green);
    color: var(--white);
}
.cart-modal-header h2 {
    font-size: 1.05rem;
    margin: 0;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}
.cart-close-btn {
    background: rgba(255,255,255,0.12);
    border: none;
    color: var(--white);
    width: 32px; height: 32px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.cart-close-btn:hover { background: rgba(255,255,255,0.22); }

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 18px 20px;
}

.cart-section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--light-mid);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    margin-top: 14px;
}

.cart-customer-form input,
.cart-customer-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: var(--dark);
    background: var(--white);
    margin-bottom: 10px;
    outline: none;
    transition: border-color var(--transition);
    box-sizing: border-box;
}
.cart-customer-form input:focus,
.cart-customer-form textarea:focus { border-color: var(--green); }
.cart-customer-form textarea { resize: none; height: 70px; }

.cart-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}
.cart-item:last-child { border-bottom: none; }

.cart-item-emoji { font-size: 1.8rem; flex-shrink: 0; }
.cart-item-name  { flex: 1; font-weight: 500; font-size: 0.9rem; color: var(--dark); line-height: 1.3; }
.cart-item-price {
    font-family: 'Inter', sans-serif;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 60px;
    text-align: right;
}

.qty-controls { display: flex; align-items: center; gap: 6px; }
.qty-btn {
    width: 28px; height: 28px;
    border: 1.5px solid var(--border);
    background: var(--ivory);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--dark);
}
.qty-btn:hover {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.qty-display {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.cart-empty-msg {
    text-align: center;
    color: var(--light-mid);
    padding: 40px 16px;
    font-size: 0.95rem;
}

.cart-footer {
    padding: 18px 20px;
    border-top: 2px solid var(--border);
    background: var(--ivory);
}

.cart-total-line {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--mid);
}
.cart-total-line.grand {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--green);
    border-top: 1.5px solid var(--border);
    margin-top: 8px;
    padding-top: 10px;
}

.place-order-btn {
    width: 100%;
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 14px;
    transition: var(--transition);
    letter-spacing: 0.03em;
}
.place-order-btn:hover {
    background: var(--green-deep);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ===== PAYMENT MODAL ===== */
.payment-modal-wrap,
.bill-modal-wrap {
    position: fixed;
    inset: 0;
    z-index: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
    padding: 20px;
}

.payment-modal {
    background: var(--white);
    border-radius: 14px;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 32px 80px rgba(0,0,0,0.3);
    padding: 28px;
    animation: popIn 0.25s ease;
    border: 1px solid var(--border);
}

.payment-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.payment-modal-header h2 {
    margin: 0;
    font-size: 1.2rem;
}

.payment-close-btn {
    background: var(--ivory);
    border: none;
    border-radius: 8px;
    width: 36px; height: 36px;
    font-size: 1rem;
    cursor: pointer;
    color: var(--mid);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.payment-close-btn:hover { background: var(--border); color: var(--dark); }

.payment-description {
    margin-bottom: 20px;
    color: var(--mid);
    line-height: 1.7;
    font-size: 0.92rem;
}

.payment-options {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.payment-option-btn {
    border: 1.5px solid var(--border);
    background: var(--ivory);
    color: var(--dark);
    padding: 14px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.93rem;
    font-weight: 500;
    transition: var(--transition);
    text-align: left;
}
.payment-option-btn:hover {
    background: var(--cream);
    border-color: var(--green);
    transform: translateX(4px);
}
.payment-option-btn.online {
    border-color: var(--green);
    background: rgba(28,56,41,0.05);
    color: var(--green);
}

.payment-summary {
    border-top: 1px solid var(--border);
    padding-top: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 600;
}

/* QR Tab Switcher (mobile modal scope) */
.qr-tabs-wrap {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 8px 0 4px;
}
.qr-tab-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 22px;
    border: 2px solid var(--border);
    border-radius: 50px;
    background: #fff;
    color: var(--mid);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}
.qr-tab-btn.active {
    border-color: var(--gold);
    background: var(--ivory);
    color: var(--dark);
}
.qr-tab-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.esewa-dot   { background: #60bb46; }
.fonepay-dot { background: #e63946; }

/* ===== BILL MODAL ===== */
.bill-modal-inner {
    background: var(--white);
    border-radius: 14px;
    max-width: 480px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: 0 28px 80px rgba(0,0,0,0.3);
    animation: popIn 0.25s ease;
    border: 1px solid var(--border);
}

.bill-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    background: var(--ivory);
    border-radius: 14px 14px 0 0;
    position: sticky;
    top: 0;
    z-index: 1;
}
.bill-actions button {
    padding: 9px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
}
.daily-sales-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--dark);
    cursor: pointer;
    white-space: nowrap;
}
.daily-sales-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--green);
}
.daily-sales-checkbox.disabled {
    opacity: 0.7;
    cursor: default;
}
.print-bill-btn { background: var(--green); color: var(--white); }
.print-bill-btn:hover { background: var(--green-deep); }
.create-order-btn { background: var(--blue); color: var(--white); }
.create-order-btn:hover { background: #2563eb; }
.close-bill-btn { background: var(--border); color: var(--dark); }
.close-bill-btn:hover { background: #d4cfc6; }

/* ===== RECEIPT ===== */
.receipt {
    padding: 28px 28px 24px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.87rem;
    line-height: 1.6;
    color: var(--dark);
}

.receipt-header {
    text-align: center;
    padding-bottom: 18px;
    margin-bottom: 16px;
    border-bottom: 2px dashed var(--border);
}
.receipt-header img {
    width: 60px; height: 60px;
    object-fit: contain;
    border-radius: 50%;
    margin: 0 auto 10px;
    border: 2px solid var(--border);
}
.receipt-header h2 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.15rem;
    margin-bottom: 4px;
    color: var(--dark);
}
.receipt-header .sub { color: var(--light-mid); font-size: 0.78rem; display: block; margin-top: 2px; }

.receipt-info {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px dashed var(--border);
}
.receipt-info p { margin: 3px 0; font-size: 0.85rem; }
.receipt-info .label { color: var(--light-mid); }

.receipt-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 14px;
}
.receipt-table th {
    border-bottom: 1.5px solid var(--dark);
    padding: 7px 4px;
    text-align: left;
    font-size: 0.8rem;
    color: var(--mid);
    text-transform: uppercase;
}
.receipt-table td {
    padding: 7px 4px;
    border-bottom: 1px dashed var(--border);
    font-size: 0.84rem;
    vertical-align: top;
    color: var(--dark);
}
.receipt-table .r { text-align: right; }

.receipt-totals {
    border-top: 2px dashed var(--mid);
    padding-top: 12px;
    margin-bottom: 18px;
}
.rtotal-row {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
    font-size: 0.9rem;
}
.rtotal-row.grand {
    font-weight: bold;
    font-size: 1rem;
    border-top: 1.5px solid var(--dark);
    margin-top: 8px;
    padding-top: 8px;
    color: var(--green);
}

.receipt-footer {
    text-align: center;
    border-top: 2px dashed var(--border);
    padding-top: 16px;
    color: var(--mid);
    font-size: 0.8rem;
    line-height: 1.9;
}

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-login-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--green-deep) 0%, #0a1810 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.login-box {
    background: var(--white);
    border-radius: 16px;
    padding: 48px 40px 40px;
    text-align: center;
    width: 380px;
    max-width: 94vw;
    box-shadow: 0 32px 80px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.login-logo {
    width: 80px; height: 80px;
    object-fit: contain;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: block;
    border: 3px solid var(--border);
}

.login-box h2 { color: var(--green); margin-bottom: 6px; font-size: 1.6rem; }
.login-box > p { color: var(--mid); margin-bottom: 28px; font-size: 0.9rem; }

.login-form { display: flex; flex-direction: column; gap: 12px; }

.login-form input[type="password"] {
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color var(--transition);
    text-align: center;
    letter-spacing: 4px;
    background: var(--cream);
}
.login-form input[type="password"]:focus { border-color: var(--green); }

.login-btn {
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.04em;
}
.login-btn:hover {
    background: var(--green-deep);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.login-error {
    color: #dc2626;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    margin: 0;
    display: none;
    background: #fff5f5;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #fecaca;
}

.login-hint {
    font-size: 0.78rem;
    color: var(--light-mid);
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
}

/* Admin Layout */
.admin-hero {
    background: linear-gradient(135deg, var(--green-deep) 0%, #1a3a25 100%);
    color: var(--white);
    padding: 40px 24px;
    text-align: center;
}
.admin-hero h1 { font-size: 1.8rem; color: var(--white); margin-bottom: 6px; }
.admin-hero p  { color: rgba(255,255,255,0.7); font-size: 0.92rem; display: flex; align-items: center; justify-content: center; gap: 10px; }

.admin-layout {
    display: grid;
    grid-template-columns: 230px 1fr;
    min-height: calc(100vh - 200px);
}

.admin-sidebar {
    background: #2d0a1f;
    padding: 28px 0 40px;
}

.admin-sidebar h3 {
    color: rgba(255,255,255,0.4);
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 0 20px 12px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: rgba(255,255,255,0.65);
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.sidebar-link:hover,
.sidebar-link.active {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border-left-color: var(--gold);
}

.notification-badge {
    margin-left: auto;
    display: inline-flex;
    min-width: 24px;
    padding: 0 8px;
    height: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--gold);
    color: var(--green-deep);
    font-size: 0.75rem;
    font-weight: 700;
}

.admin-content {
    padding: 32px 36px;
    background: #f4f7f4;
}

.admin-tab { display: none; }
.admin-tab.active { display: block; }

.admin-section-title {
    font-size: 1.5rem;
    color: var(--green);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    font-family: 'Playfair Display', serif;
}

.admin-card {
    background: var(--white);
    border-radius: 10px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    border: 1px solid var(--border);
}
.admin-card h3 {
    font-family: 'Inter', sans-serif;
    color: var(--green);
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 600;
}

.order-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}
.order-actions label {
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}
.order-actions input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--green);
}
.order-actions button {
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}
.order-actions button:hover {
    background: var(--green-deep);
}
.order-cancel-btn {
    background: #fee2e2 !important;
    color: #b91c1c !important;
    border: 1px solid #fca5a5 !important;
    margin-left: auto;
}
.order-cancel-btn:hover {
    background: #ef4444 !important;
    color: #fff !important;
    border-color: #ef4444 !important;
}

.admin-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}
.admin-form .full-width { grid-column: 1/-1; }

.admin-form label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green);
    margin-bottom: 6px;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--dark);
    background: var(--white);
    transition: border-color var(--transition);
    outline: none;
}
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(28,56,41,0.08);
}
.admin-form textarea { resize: vertical; min-height: 80px; }

.admin-submit-btn {
    background: var(--gold);
    color: var(--green-deep);
    border: none;
    padding: 11px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    transition: var(--transition);
    margin-top: 4px;
}
.admin-submit-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.admin-submit-btn.green {
    background: var(--green);
    color: var(--white);
}
.admin-submit-btn.green:hover { background: var(--green-deep); }

/* Items Table */
.items-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
}
.items-table th {
    background: var(--ivory);
    padding: 10px 14px;
    text-align: left;
    color: var(--green);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 2px solid var(--border);
}
.items-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
    color: var(--dark);
}
.items-table tr:last-child td { border-bottom: none; }
.items-table tr:hover td { background: var(--cream); }

.badge-avail {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.77rem;
    font-weight: 600;
}
.badge-avail.yes { background: #dcfce7; color: #166534; }
.badge-avail.no  { background: #fee2e2; color: #991b1b; }

.delete-btn {
    background: #fee2e2;
    color: #dc2626;
    border: none;
    padding: 5px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    transition: var(--transition);
}
.delete-btn:hover { background: #fecaca; }

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.stat-card {
    background: var(--white);
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.stat-card .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}
.stat-card .stat-label {
    font-family: 'Inter', sans-serif;
    color: var(--mid);
    font-size: 0.83rem;
    margin-top: 4px;
}

.no-items-msg {
    text-align: center;
    color: var(--light-mid);
    padding: 40px 20px;
    font-size: 0.95rem;
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
    * { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    .navbar, .footer, .cart-fab, .cart-toast { display: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .rooms-grid            { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid     { grid-template-columns: repeat(2, 1fr); }
    .footer-content        { grid-template-columns: 1fr 1fr; gap: 36px; }
    .about .container      { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 900px) {
    .room-detail,
    .room-detail.alternate {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .room-detail.alternate > * { direction: ltr; }
    .room-detail-image { height: 240px; font-size: 5rem; }

    .amenity-category,
    .amenity-category.alternate {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .amenity-category.alternate > * { direction: ltr; }
    .amenity-icon-large {
        width: 80px; height: 80px;
        font-size: 3rem;
    }

    .form-container { grid-template-columns: 1fr; }
    .admin-layout   { grid-template-columns: 1fr; }
    .admin-sidebar  { display: flex; overflow-x: auto; gap: 0; padding: 12px 0; }
    .admin-sidebar h3 { display: none; }
    .sidebar-link { border-left: none; border-bottom: 3px solid transparent; white-space: nowrap; }
    .sidebar-link.active { border-bottom-color: var(--gold); border-left-color: transparent; }

    .newsletter .container { flex-direction: column; gap: 28px; }
    .newsletter-form { max-width: 100%; min-width: auto; }
}

@media (max-width: 768px) {
    .navbar .container { height: 64px; gap: 16px; }

    .nav-links {
        display: none;
    }

    /* Hide dots-menu on mobile - hamburger covers all navigation */
    .dots-btn { display: none; }

    .rooms-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr 1fr; }

    .package.featured { transform: scale(1); }

    .hero-content h1 { font-size: clamp(2rem, 8vw, 3rem); }

    .booking-container { padding: 28px 20px; }
    .contact-form { padding: 24px; }

    .footer-content { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .footer-bottom-links { justify-content: center; }
}

@media (max-width: 600px) {
    .logo-text { font-size: 1.1rem; }
    .logo-sub  { display: none; }

    .hero { min-height: 90vh; }

    .packages-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }

    .admin-content { padding: 20px 16px; }
    .admin-form { grid-template-columns: 1fr; }

    .menu-dropdown { right: -8px; left: 8px; width: auto; }
    .dots-dropdown { right: 0; }

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

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

    .cart-modal { width: 100vw; }

    .newsletter-form { flex-direction: column; }
    .newsletter-form input { border-radius: 6px; border: 2px solid var(--border); }
    .newsletter-form button { border-radius: 6px; }
}

/* Nav-links mobile hamburger fix */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0; right: 0;
        background: var(--green-deep);
        padding: 16px 0;
        z-index: 99;
        box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        gap: 0;
    }
    .nav-links.mobile-open > li > a {
        padding: 12px 24px;
        border-radius: 0;
        font-size: 0.95rem;
    }
    .nav-links.mobile-open .nav-book a {
        margin: 8px 24px;
        border-radius: 4px;
        justify-content: center;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: 1px solid var(--border);
        padding: 8px 10px;
        border-radius: 4px;
        cursor: pointer;
    }
    .hamburger span {
        display: block;
        width: 20px; height: 2px;
        background: var(--green-deep);
        border-radius: 2px;
        transition: var(--transition);
    }
}

@media (min-width: 769px) {
    .hamburger { display: none; }
}
/* ============================================================
   ADVANCE PAYMENT INFO
   ============================================================ */
.advance-payment-info {
    margin-top: 32px;
    animation: fadeInUp 0.5s ease both;
}

.payment-info-card {
    background: var(--cream);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.payment-info-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 100px; height: 100px;
    background: radial-gradient(circle at top right, rgba(201,160,53,0.1), transparent);
    z-index: 0;
}

.payment-info-card h4 {
    color: var(--green);
    margin-bottom: 12px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-info-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--mid);
}

.transfer-details {
    background: var(--white);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px dashed var(--gold);
}

.transfer-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.transfer-row:last-child {
    border-bottom: none;
}

.transfer-row span {
    color: var(--mid);
    font-size: 0.9rem;
}

.transfer-row strong {
    color: var(--green);
    font-weight: 700;
    font-size: 1.1rem;
}

.payment-note {
    font-size: 0.85rem !important;
    font-style: italic;
    color: var(--green-light) !important;
    margin-top: 12px;
    border-top: 1px solid var(--border-light);
    padding-top: 12px;
}

/* ===== ADVANCE BOOKING QR SECTION ===== */
.adv-amount-row {
    background: var(--white);
    border: 1px dashed var(--gold);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--mid);
    text-align: center;
}

.adv-amount-row strong {
    color: var(--green);
    font-size: 1.25rem;
    margin-left: 6px;
}

.adv-qr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.adv-qr-block {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 12px;
    text-align: center;
}

.adv-qr-label {
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0 0 10px !important;
    padding: 4px 14px;
    border-radius: 20px;
    display: inline-block;
}

.esewa-label {
    background: #e8f8e0;
    color: #3a8c1e;
}

.fonepay-label {
    background: #fff3e0;
    color: #e65100;
}

.adv-qr-img {
    width: 100%;
    max-width: 200px;
    border-radius: 8px;
    border: 2px solid var(--border);
    display: block;
    margin: 0 auto 8px;
}

.adv-qr-placeholder {
    width: 100%;
    max-width: 200px;
    height: 160px;
    border-radius: 8px;
    border: 2px dashed var(--border);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 0.85rem;
    color: var(--mid);
    font-weight: 600;
    background: var(--cream);
}

.adv-qr-placeholder span {
    font-size: 0.7rem;
    font-weight: 400;
    margin-top: 4px;
    opacity: 0.65;
}

.adv-qr-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    margin: 0 0 2px !important;
}

.adv-qr-num {
    font-size: 0.85rem;
    color: var(--green);
    font-weight: 600;
    margin: 0 !important;
}

.adv-upload-section {
    margin: 16px 0 18px;
}

.adv-upload-label {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.adv-upload-input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    font-size: 0.9rem;
    box-sizing: border-box;
}

.adv-upload-hint {
    margin: 5px 0 0 !important;
    font-size: 0.78rem !important;
    color: var(--mid) !important;
}

.adv-confirm-btn {
    width: 100%;
    margin-top: 2px;
}

@media (max-width: 480px) {
    .adv-qr-grid {
        grid-template-columns: 1fr;
    }
}

/* Adjustments for booking result box */
.booking-summary-row.total {
    border-top: 2px solid var(--green);
    margin-top: 12px;
    padding-top: 12px;
    font-size: 1.2rem;
}

/* =============================================================
   AMENITIES PAGE ENHANCEMENTS
   ============================================================= */
.amenities-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(rgba(45, 90, 39, 0.7), rgba(45, 90, 39, 0.7)), url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&q=80&w=2070') center/cover no-repeat;
    text-align: center;
    color: var(--white);
    margin-bottom: 60px;
}

.amenities-hero .container {
    max-width: 800px;
}

.amenities-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.amenities-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.amenity-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(197, 160, 89, 0.1);
    display: flex;
    flex-direction: column;
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--gold);
}

.amenity-card-img {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.amenity-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.amenity-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 90, 39, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.amenity-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--green-deep);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.amenity-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.amenity-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--green-deep);
    margin-bottom: 15px;
}

.amenity-card-content p {
    color: var(--mid);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.amenity-card-list {
    list-style: none;
    padding: 0;
    margin-top: auto;
}

.amenity-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--green);
    margin-bottom: 8px;
    font-weight: 500;
}

.amenity-card-list li::before {
    content: 'v';
    color: var(--gold);
    font-weight: bold;
}

/* Glassmorphism for Additional Services */
.additional-services-new {
    padding: 100px 0;
    background: var(--ivory);
    position: relative;
    overflow: hidden;
}

.additional-services-new::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card-premium {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card-premium:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border-color: var(--gold);
}

.service-card-premium .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.service-card-premium h4 {
    font-size: 1.2rem;
    color: var(--green-deep);
    margin-bottom: 12px;
}

.service-card-premium p {
    font-size: 0.9rem;
    color: var(--mid);
    line-height: 1.5;
}

/* =============================================================
   DELIVERY PAGE ENHANCEMENTS
   ============================================================= */
.delivery-hero {
    position: relative;
    padding: 100px 0 60px;
    /* background image removed — use gradient from base rule to avoid flicker */
    text-align: center;
    color: var(--white);
}

.delivery-hero h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.delivery-area-badge {
    display: inline-block;
    background: rgba(197, 160, 89, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-top: 20px;
    backdrop-filter: blur(5px);
}

.delivery-filters {
    background: var(--white);
    padding: 12px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.delivery-filters::-webkit-scrollbar { display: none; }

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--mid);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.filter-btn.active {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
    box-shadow: 0 5px 15px rgba(45, 90, 39, 0.2);
}

.food-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}

.food-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--gold);
}

.food-card-img {
    height: 200px;
    background: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.food-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.food-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--green-deep);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.food-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.food-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--green-deep);
    margin-bottom: 10px;
}

.food-card-body p {
    color: var(--mid);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.food-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px dashed var(--border);
}

.food-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green);
}

.food-time {
    font-size: 0.85rem;
    color: var(--mid);
    font-weight: 500;
}

/* Add to Order Button - Color Theory Applied */
.add-to-cart-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: var(--gold);
    color: var(--green-deep);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart-btn:hover {
    background: var(--green-deep);
    color: var(--gold);
    box-shadow: 0 8px 20px rgba(45, 90, 39, 0.2);
}

.add-to-cart-btn:active {
    opacity: 0.9;
}

/* Cart FAB */
.cart-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--green-deep);
    color: var(--gold);
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-fab:hover {
    transform: scale(1.1) rotate(5deg);
    background: var(--green);
}
.cart-fab-bounce {
    animation: fabBounce 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}
@keyframes fabBounce {
    0%   { transform: scale(1); }
    30%  { transform: scale(1.35); }
    60%  { transform: scale(0.9); }
    80%  { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--gold);
    color: var(--green-deep);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--green-deep);
}

/* ============================================================
   DEDICATED MENU PAGE
   ============================================================ */
.menu-section {
    padding: 80px 0;
    background: var(--sand);
}

.menu-category {
    display: block;
    margin-bottom: 64px;
}

.menu-category-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.menu-category-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0;
    white-space: nowrap;
}

.menu-category-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px 64px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--border);
}

.menu-item-info {
    flex: 1;
}

.menu-item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-deep);
    margin-bottom: 2px;
}

.menu-item-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.4;
}

.menu-item-price {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
    font-size: 1.05rem;
}

/* Drinks Table */
.drinks-table-container {
    overflow-x: auto;
    margin-top: 24px;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.drinks-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 550px;
}

.drinks-table th, .drinks-table td {
    padding: 14px 16px;
    text-align: right;
    border-bottom: 1px solid var(--border-light);
}

.drinks-table th:first-child, .drinks-table td:first-child {
    text-align: left;
}

.drinks-table th {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 700;
    border-bottom: 2px solid var(--gold-pale);
}

.drinks-table td {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    font-size: 0.95rem;
}

.drinks-table tr:last-child td {
    border-bottom: none;
}

.drinks-table tr:hover {
    background: rgba(197, 160, 89, 0.03);
}

.drinks-table td:first-child {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.05rem;
}

/* Momo Options Header */
.momo-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 12px;
    padding: 0 0 10px 0;
    border-bottom: 2px solid var(--gold-pale);
    margin-bottom: 16px;
    text-align: right;
}

.momo-header span:first-child { text-align: left; }

.momo-header span {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 700;
}

.momo-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border);
    text-align: right;
    align-items: baseline;
}

.momo-row span:first-child {
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--primary-deep);
}

.momo-price {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--gold);
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    .momo-header, .momo-row {
        font-size: 0.9rem;
    }
    .momo-row span:first-child {
        font-size: 1rem;
    }
}

/* Hall Section - stack on mobile */
@media (max-width: 700px) {
    .hall-section > .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    .hall-section > .container > div > div:first-child {
        min-height: 220px !important;
    }
}

/* ============================================================
   MODAL
   ============================================================ */
.modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 24px 60px rgba(0,0,0,0.15);
    text-align: center;
    position: relative;
    max-width: 400px;
    width: 90%;
    animation: slideUp 0.3s ease-out;
}

.modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--primary-deep);
}

.modal-content .close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--mid);
    transition: var(--transition);
}

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

#qrCodeContainer {
    display: flex;
    justify-content: center;
    padding: 20px;
    background: var(--ivory);
    border-radius: 12px;
    border: 1px dashed var(--border);
}

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

/* ============================================================
   MOBILE IMPROVEMENTS
   ============================================================ */

/* Define missing color variables used throughout */
:root {
    --mid:       #4a5568;
    --light-mid: #718096;
}

/* Admin link: hidden on desktop (accessible via dots-dropdown there) */
@media (min-width: 769px) {
    .nav-admin-link { display: none; }
}

/* Admin link styling in mobile open menu */
.nav-links.mobile-open .nav-admin-link a {
    color: #ef4444;
    font-weight: 600;
}
.nav-links.mobile-open .nav-admin-link a:hover {
    color: #dc2626;
    background: rgba(239,68,68,0.06);
}

/* ============================================================
   ADMIN PANEL - MOBILE
   Replaces the cramped horizontal tab bar with a dropdown
   and gives the content area room to breathe.
   ============================================================ */

/* Quick Actions grid (all screen sizes) */
.admin-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}
.admin-quick-actions .admin-submit-btn {
    flex: 1 1 auto;
    text-align: center;
    white-space: nowrap;
}

/* Mobile nav dropdown - hidden on desktop */
.admin-mobile-nav { display: none; }

@media (max-width: 768px) {
    /* -- Hide the sidebar entirely on mobile -- */
    .admin-sidebar { display: none !important; }

    /* -- Show the dropdown nav -- */
    .admin-mobile-nav {
        display: block;
        background: var(--white);
        padding: 12px 16px;
        border-bottom: 1px solid var(--border);
        position: sticky;
        top: 64px;
        z-index: 60;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .admin-mobile-nav select {
        width: 100%;
        padding: 13px 44px 13px 16px;
        border: 2px solid var(--green);
        border-radius: 8px;
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        color: var(--green);
        background: var(--white);
        cursor: pointer;
        -webkit-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%231e3a2a' d='M7 9L2 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
    }
    .admin-mobile-nav select:focus {
        outline: none;
        border-color: var(--gold);
    }

    /* -- Layout: full width, no sidebar column -- */
    .admin-layout { grid-template-columns: 1fr; }

    /* -- Admin hero - minimal banner -- */
    .admin-hero             { padding: 16px; }
    .admin-hero h1          { font-size: 1.2rem; margin-bottom: 2px; }
    .admin-hero p           { font-size: 0.82rem; flex-wrap: wrap; gap: 6px; }

    /* -- Content area -- */
    .admin-content          { padding: 16px; background: #f4f7f4; }

    /* -- Cards - clear separation -- */
    .admin-card             { padding: 20px 16px; margin-bottom: 16px; }
    .admin-card h3          { font-size: 0.95rem; margin-bottom: 14px; }

    /* -- Stat cards - 2 per row -- */
    .admin-stats            { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 16px; }
    .stat-card              { padding: 18px 12px; }
    .stat-card .stat-num    { font-size: 2rem; }

    /* -- Quick actions - 2 per row -- */
    .admin-quick-actions .admin-submit-btn {
        flex: 1 1 calc(50% - 5px);
        font-size: 0.83rem;
        padding: 11px 10px;
    }

    /* -- Forms - single column -- */
    .admin-form             { grid-template-columns: 1fr !important; gap: 12px; }
    .admin-form input,
    .admin-form select,
    .admin-form textarea    { font-size: 1rem; padding: 13px 14px; }

    /* -- Data tables - horizontal scroll -- */
    #menuItemsList,
    #deliveryFoodsList,
    #reservationsList       { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .items-table            { min-width: 480px; }

    /* -- Orders list -- */
    .orders-grid            { display: flex !important; flex-direction: column; gap: 12px; }

    /* -- Two-col grids -> stack -- */
    .admin-two-col          { grid-template-columns: 1fr !important; }

    /* -- Three-col grids -> two col -- */
    .admin-three-col        { grid-template-columns: repeat(2, 1fr) !important; }

    /* -- Table/chair grid -- */
    #tablesGrid             { grid-template-columns: repeat(4, 1fr) !important; }

    /* -- Bill modal actions -- */
    .bill-actions           { flex-wrap: wrap; gap: 8px; }
    .bill-actions button    { flex: 1 1 auto; font-size: 0.82rem; }

    /* -- Admin section title -- */
    .admin-section-title    { font-size: 1.2rem; margin-bottom: 16px; padding-bottom: 10px; }
}

@media (max-width: 480px) {
    /* Three-col -> single col on small phones */
    .admin-three-col        { grid-template-columns: 1fr !important; }
    #tablesGrid             { grid-template-columns: repeat(3, 1fr) !important; }

    /* Quick actions -> full-width stack */
    .admin-quick-actions .admin-submit-btn { flex: 1 1 100%; }

    .admin-content          { padding: 12px; }
    .admin-card             { padding: 16px 12px; }
    .stat-card .stat-num    { font-size: 1.7rem; }
}

/* -- 900 px -- */
@media (max-width: 900px) {
    .about          { padding: 72px 0; }
    .featured-rooms { padding: 72px 0; }
}

/* -- 768 px -- */
@media (max-width: 768px) {
    /* Reduce tall section padding */
    .about,
    .featured-rooms,
    .hall-section,
    .pools-section,
    .location-map-section { padding: 64px 0 !important; }

    .testimonials { padding: 64px 0; }
    .newsletter   { padding: 48px 0; }

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

    /* Hero badge - allow wrapping */
    .hero-badge {
        font-size: 0.68rem;
        letter-spacing: 0.08em;
        white-space: normal;
        text-align: center;
        line-height: 1.6;
    }

    /* Hall booking - stack image + text */
    .hall-section > .container > div[style*="grid-template-columns: 1fr 1fr"],
    .hall-card { grid-template-columns: 1fr !important; }

    .hall-section > .container > div > div:first-child,
    .hall-card-image {
        height: 260px !important;
        min-height: 260px !important;
    }

    /* Map iframe height */
    .map-wrapper iframe { height: 300px !important; }

    /* Amenities grid - smaller min so 2 columns fit on tablet */
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

/* -- 600 px -- */
@media (max-width: 600px) {
    /* Section padding */
    .about,
    .featured-rooms,
    .hall-section,
    .pools-section,
    .location-map-section { padding: 48px 0 !important; }

    .testimonials     { padding: 48px 0; }
    .newsletter       { padding: 36px 0; }
    .booking-section  { padding: 48px 0; }

    /* Section headings */
    .section-header           { margin-bottom: 32px; }
    .section-header h2        { font-size: clamp(1.5rem, 5vw, 2rem); }

    /* Hero: stack CTA buttons */
    .hero-cta {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .hero-cta .btn-gold,
    .hero-cta .btn-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .hero-content p { font-size: 1rem; }

    /* About cards - single column on phones */
    .about-grid { grid-template-columns: 1fr; }

    /* Hall section content padding */
    .hall-section > .container > div > div:last-child,
    .hall-card-content { padding: 28px 20px !important; }

    /* Amenities grid */
    .amenities-grid { grid-template-columns: 1fr; }

    /* Menu page grid */
    .menu-grid {
        grid-template-columns: 1fr !important;
        gap: 16px 0 !important;
    }

    /* Map */
    .map-wrapper iframe { height: 250px !important; }

    /* Location cards */
    .location-details-grid { gap: 16px; }

    /* Testimonial cards */
    .testimonial { padding: 24px 20px; }

    /* Page headers */
    .page-header { padding: 56px 16px 40px; }

    /* Amenities page hero */
    .amenities-hero h1         { font-size: 2rem !important; }
    .amenities-hero            { padding: 72px 0 48px !important; }

    /* Delivery hero */
    .delivery-hero h1          { font-size: 2.2rem !important; }
    .delivery-hero             { padding: 64px 24px 40px !important; }

    /* Booking / contact forms */
    .booking-container         { padding: 20px 16px !important; }
    .contact-form              { padding: 20px 16px !important; }

    /* Footer */
    .footer { padding: 48px 0 0; }
    .footer-bottom-links       { gap: 12px; flex-wrap: wrap; }
}

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

    /* Card paddings */
    .about-card      { padding: 20px 16px; }
    .room-card-body  { padding: 18px; }
    .testimonial     { padding: 20px 16px; }

    /* Admin hero */
    .admin-hero h1   { font-size: 1.4rem; }

    /* Packages grid - single column */
    .packages-grid   { grid-template-columns: 1fr; }

    /* Rooms grid - ensure single column */
    .rooms-grid      { grid-template-columns: 1fr; }

    /* Delivery section padding */
    .delivery-section { padding: 40px 16px; }
}

/* ===== STAFF ONLINE TRACKER ===== */

/* Stat card - green accent for online count */
.stat-card-online {
    border-top: 4px solid #22c55e;
}
.stat-card-online .stat-num {
    color: #16a34a;
}

/* Active sessions card header */
.sessions-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.sessions-title {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sessions-title h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Pulsing green dot */
.online-pulse {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    flex-shrink: 0;
    animation: pulse-green 1.8s ease-in-out infinite;
}
@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
    50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* Badge showing count */
.sessions-count-badge {
    background: #22c55e;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 50px;
    min-width: 28px;
    text-align: center;
}

/* Individual session row */
.session-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    background: var(--bg-light, #f8fafc);
    margin-bottom: 8px;
    transition: background 0.2s;
}
.session-row-me {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}
.session-dot-green {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
}
.session-info {
    flex: 1;
    min-width: 0;
}
.session-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    display: block;
}
.session-since {
    font-size: 0.78rem;
    color: var(--mid, #4a5568);
    display: block;
    margin-top: 1px;
}
.session-you {
    font-size: 0.72rem;
    font-weight: 600;
    background: #16a34a;
    color: #fff;
    padding: 2px 8px;
    border-radius: 50px;
    white-space: nowrap;
}

/* Empty state */
.sessions-empty {
    color: var(--mid, #4a5568);
    font-size: 0.88rem;
    text-align: center;
    padding: 12px 0;
}

/* ===== OWNER PANEL ===== */
.owner-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 36px 24px 60px;
}

/* Reservation rows */
.owner-res-row {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.owner-res-row:last-child { border-bottom: none; }

.owner-res-main {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}
.owner-res-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}
.owner-res-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.owner-res-badge.paid    { background: #dcfce7; color: #166534; }
.owner-res-badge.pending { background: #fef3c7; color: #92400e; }

.owner-res-meta {
    font-size: 0.82rem;
    color: var(--mid, #4a5568);
    line-height: 1.5;
}

/* Sales totals strip */
.owner-sales-totals {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.owner-sales-total-item {
    flex: 1;
    min-width: 100px;
    background: var(--bg-light, #f8fafc);
    border-radius: 10px;
    padding: 14px 16px;
    text-align: center;
}
.owner-sales-total-item span {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--mid, #4a5568);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.owner-sales-total-item strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Sales breakdown table */
.owner-sales-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}
.owner-sales-table thead tr {
    border-bottom: 2px solid var(--border);
}
.owner-sales-table th {
    text-align: left;
    padding: 8px 8px;
    color: var(--mid, #4a5568);
    font-weight: 600;
}
.owner-sales-table th:not(:first-child) { text-align: right; }
.owner-sales-table tbody tr {
    border-bottom: 1px dashed var(--border);
}
.owner-sales-table td {
    padding: 9px 8px;
    color: var(--text-dark);
}
.owner-sales-table td:not(:first-child) { text-align: right; }

@media (max-width: 600px) {
    .owner-content { padding: 20px 16px 48px; }
    .owner-sales-totals { gap: 8px; }
    .owner-sales-total-item { padding: 12px 10px; min-width: 80px; }
    .owner-sales-total-item strong { font-size: 0.95rem; }
}

/* ===== PRINT BUTTONS - MOBILE/DESKTOP SWAP ===== */
/* Desktop: show all print buttons, hide Update Order */
.table-update-btn { display: none !important; }

/* Mobile: hide ALL print buttons, show Update Order instead */
@media (max-width: 768px) {
    .admin-print-btn  { display: none !important; }
    .table-update-btn { display: block !important; }
}

/* =============================================================
   MOBILE COMPACT - make everything smaller on small screens
   ============================================================= */

/* -- 600px: tighter sections & text -- */
@media (max-width: 600px) {
    /* Section spacing */
    .section-pad    { padding: 52px 0; }
    .section-pad-sm { padding: 36px 0; }

    /* Section headers */
    .section-header       { margin-bottom: 28px; }
    .section-header h2    { font-size: 1.55rem; }
    .section-header p     { font-size: 0.88rem; }
    .section-label        { font-size: 0.68rem; margin-bottom: 8px; }

    /* Page headers */
    .page-header          { padding: 48px 0 36px; }
    .page-header h1       { font-size: 1.65rem; }
    .page-header p        { font-size: 0.9rem; }

    /* Hero */
    .hero-content h1      { font-size: clamp(1.7rem, 7vw, 2.4rem); }
    .hero-content p       { font-size: 0.92rem; margin-bottom: 24px; }
    .hero-badge           { font-size: 0.7rem; padding: 6px 14px; }
    .hero-cta             { gap: 10px; flex-direction: column; align-items: center; }

    /* Buttons */
    .btn-primary,
    .btn-outline          { padding: 11px 22px; font-size: 0.88rem; }

    /* Cards */
    .room-card-body       { padding: 14px 16px; }
    .room-card-body h3    { font-size: 1.05rem; }
    .room-card-price      { font-size: 1.1rem; }
    .about-card           { padding: 18px 14px; }
    .about-card h3        { font-size: 1rem; }
    .testimonial          { padding: 18px 14px; }
    .package              { padding: 20px 16px; }
    .package h3           { font-size: 1rem; }

    /* Navbar */
    .navbar .container    { height: 56px; }
    .logo-text            { font-size: 1rem; }
    .nav-logo             { height: 30px; }

    /* Footer */
    .footer               { padding: 40px 0 20px; }
    .footer-brand p       { font-size: 0.82rem; }
    .footer-section h4    { font-size: 0.88rem; margin-bottom: 10px; }
    .footer-section li,
    .footer-section a     { font-size: 0.82rem; }
    .footer-bottom        { padding-top: 14px; font-size: 0.78rem; }

    /* Contact */
    .contact-card         { padding: 18px 14px; }
    .contact-form         { padding: 18px 14px; }

    /* Booking */
    .booking-container    { padding: 20px 14px; }
    .booking-container h2 { font-size: 1.3rem; }
}

/* -- 480px: compact everything further -- */
@media (max-width: 480px) {
    /* Base */
    body                  { font-size: 0.9rem; }
    .container            { padding: 0 14px; }

    /* Section spacing */
    .section-pad    { padding: 40px 0; }
    .section-pad-sm { padding: 28px 0; }

    /* Section headers */
    .section-header h2    { font-size: 1.35rem; }
    .section-header p     { font-size: 0.84rem; }

    /* Page headers */
    .page-header          { padding: 36px 0 28px; }
    .page-header h1       { font-size: 1.45rem; }
    .page-header p        { font-size: 0.84rem; }

    /* Hero */
    .hero                 { min-height: 88vh; }
    .hero-content h1      { font-size: clamp(1.5rem, 8vw, 2rem); line-height: 1.2; }
    .hero-content p       { font-size: 0.86rem; }

    /* Navbar */
    .navbar .container    { height: 52px; gap: 10px; }
    .nav-logo             { height: 26px; }
    .logo-text            { font-size: 0.9rem; }
    .hamburger            { padding: 6px 8px; }
    .hamburger span       { width: 17px; }

    /* Buttons */
    .btn-primary,
    .btn-outline          { padding: 10px 18px; font-size: 0.82rem; }

    /* Rooms */
    .room-card-body       { padding: 12px 14px; }
    .room-card-body h3    { font-size: 1rem; }
    .room-card-price      { font-size: 1rem; }
    .room-card-price .price-label { font-size: 0.72rem; }

    /* About / feature cards */
    .about-card           { padding: 14px 12px; }
    .about-card h3        { font-size: 0.95rem; }
    .about-card p         { font-size: 0.82rem; }
    .about-icon           { font-size: 1.6rem; margin-bottom: 8px; }

    /* Testimonials */
    .testimonial          { padding: 14px 12px; }
    .testimonial p        { font-size: 0.84rem; }
    .guest-name           { font-size: 0.88rem; }

    /* Packages */
    .package              { padding: 16px 12px; }
    .package h3           { font-size: 0.95rem; }
    .package-price        { font-size: 1.4rem; }
    .package ul li        { font-size: 0.82rem; }

    /* Amenities */
    .amenity-feature h4   { font-size: 0.9rem; }
    .amenity-feature p    { font-size: 0.8rem; }
    .amenity-icon-large   { width: 60px; height: 60px; font-size: 2rem; }

    /* Footer */
    .footer               { padding: 32px 0 16px; }
    .footer-content       { gap: 20px; }
    .footer-section h4    { font-size: 0.82rem; }
    .footer-section li,
    .footer-section a     { font-size: 0.78rem; }
    .footer-brand p       { font-size: 0.78rem; }
    .footer-bottom        { font-size: 0.74rem; }
    .footer-bottom-links a { font-size: 0.74rem; }
    .social-links a       { width: 30px; height: 30px; font-size: 0.85rem; }

    /* Contact page */
    .contact-card         { padding: 14px 12px; }
    .contact-card h3      { font-size: 1rem; }
    .contact-form         { padding: 14px 12px; }
    .contact-form h3      { font-size: 1rem; }
    .contact-form input,
    .contact-form textarea,
    .contact-form select  { padding: 9px 12px; font-size: 0.86rem; }

    /* Booking */
    .booking-container    { padding: 16px 12px; }
    .booking-container h2 { font-size: 1.15rem; }
    .booking-container p  { font-size: 0.84rem; }
    .booking-form input,
    .booking-form select  { padding: 9px 12px; font-size: 1rem; }
    /* Force single-column form rows on small phones */
    .form-row             { grid-template-columns: 1fr !important; gap: 14px; }
    /* Keep adv QR grid single-column to prevent horizontal overflow */
    .adv-qr-grid          { grid-template-columns: 1fr !important; gap: 12px; }
    /* Remove hover lift on touch — prevents tap-induced jank */
    .booking-form button:hover { transform: none; box-shadow: none; }

    /* Admin */
    .admin-hero h1        { font-size: 1.2rem; }
    .admin-hero p         { font-size: 0.82rem; }
    .admin-card           { padding: 14px 12px; }
    .admin-card h3        { font-size: 0.95rem; }
    .stat-card            { padding: 14px 10px; }
    .stat-num             { font-size: 1.6rem; }
    .stat-label           { font-size: 0.7rem; }
    .admin-submit-btn     { padding: 9px 14px; font-size: 0.82rem; }
    .admin-section-title  { font-size: 1.1rem; }
    .admin-mobile-nav select { font-size: 0.9rem; padding: 9px 12px; }

    /* Delivery / menu food cards */
    .food-card-body h3    { font-size: 0.9rem; }
    .food-card-body p     { font-size: 0.78rem; }
    .food-price           { font-size: 1rem; }
    .add-to-cart-btn      { padding: 8px 14px; font-size: 0.82rem; }
    .filter-btn           { padding: 6px 12px; font-size: 0.78rem; }

    /* Cart modal */
    .cart-modal-header    { padding: 12px 14px; }
    .cart-modal-header h2 { font-size: 0.95rem; }
    .cart-body            { padding: 12px 14px; }
    .cart-section-label   { font-size: 0.7rem; }
    .cart-total-line      { font-size: 0.88rem; }
    .cart-total-line.grand { font-size: 0.98rem; }
    .place-order-btn      { padding: 12px; font-size: 0.9rem; }
    .cart-footer          { padding: 12px 14px; }

    /* Delivery hero */
    .delivery-hero h1     { font-size: 1.6rem; }
    .delivery-area-badge  { font-size: 0.74rem; padding: 6px 14px; }

    /* Menu page */
    .menu-item-name       { font-size: 0.9rem; }
    .menu-item-price      { font-size: 0.88rem; }
    .menu-cat-title       { font-size: 1rem; }

    /* Page-specific sections */
    .room-detail-image    { height: 180px; }
    .stat-box             { padding: 14px 10px; }

    /* Owner panel */
    .owner-content        { padding: 16px 12px 40px; }

    /* Session rows */
    .session-row          { padding: 8px 10px; }
    .session-name         { font-size: 0.82rem; }
    .session-since        { font-size: 0.72rem; }

    /* Table order */
    .table-update-btn,
    .table-print-btn      { padding: 10px; font-size: 0.88rem; }
}

/* =============================================================
   WEATHER WIDGET SYSTEM
   ============================================================= */

/* ── Animations ── */
@keyframes sun-pulse    { 0%,100%{transform:scale(1) rotate(0deg)}  50%{transform:scale(1.12) rotate(8deg)} }
@keyframes cloud-float  { 0%,100%{transform:translateY(0)}          50%{transform:translateY(-8px)} }
@keyframes rain-sway    { 0%,100%{transform:rotate(-4deg)}          50%{transform:rotate(4deg)} }
@keyframes storm-flash  { 0%,89%,100%{opacity:1} 90%,96%{opacity:.5} }
@keyframes fog-drift    { 0%,100%{opacity:.8;transform:translateX(0)} 50%{opacity:.5;transform:translateX(6px)} }
@keyframes skeleton-shimmer { 0%{background-position:-400px 0} 100%{background-position:400px 0} }

.weather-anim-sunny  .weather-icon-emoji,
.weather-anim-sunny  .wwrap-emoji        { animation: sun-pulse   3s ease-in-out infinite; display:inline-block; }
.weather-anim-cloudy .weather-icon-emoji,
.weather-anim-cloudy .wwrap-emoji        { animation: cloud-float 4s ease-in-out infinite; display:inline-block; }
.weather-anim-rainy  .weather-icon-emoji,
.weather-anim-rainy  .wwrap-emoji        { animation: rain-sway   2s ease-in-out infinite; display:inline-block; }
.weather-anim-stormy .weather-icon-emoji,
.weather-anim-stormy .wwrap-emoji        { animation: storm-flash 3s ease-in-out infinite; display:inline-block; }
.weather-anim-foggy  .weather-icon-emoji,
.weather-anim-foggy  .wwrap-emoji        { animation: fog-drift   5s ease-in-out infinite; display:inline-block; }
.weather-anim-snowy  .weather-icon-emoji,
.weather-anim-snowy  .wwrap-emoji        { animation: cloud-float 5s ease-in-out infinite; display:inline-block; }

/* ── Weather section ── */
.weather-section { background: var(--sand); }

/* ── Loading / error states ── */
.weather-loading {
    text-align: center;
    padding: 48px 20px;
    color: var(--mid);
    font-size: 0.9rem;
}
.weather-skeleton-pulse {
    width: 100%;
    max-width: 700px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 16px;
    background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
    background-size: 800px 100%;
    animation: skeleton-shimmer 1.6s infinite;
}
.weather-error {
    text-align: center;
    padding: 32px;
    color: var(--mid);
    background: var(--ivory);
    border-radius: 12px;
    border: 2px dashed var(--border);
}

/* ── Background gradients per weather type ── */
.wbg-sunny  { background: linear-gradient(135deg, #fef9c3 0%, #fde68a 40%, #fef3c7 100%); }
.wbg-cloudy { background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 40%, #e2e8f0 100%); }
.wbg-rainy  { background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 40%, #dbeafe 100%); }
.wbg-stormy { background: linear-gradient(135deg, #374151 0%, #1f2937 50%, #374151 100%); color:#fff; }
.wbg-foggy  { background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 40%, #e5e7eb 100%); }
.wbg-snowy  { background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 40%, #eff6ff 100%); }

/* ── Main weather card ── */
.weather-main-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: start;
    padding: 32px 36px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-lg);
}
.weather-mc-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.weather-icon-wrap { line-height: 1; }
.weather-icon-emoji { font-size: 5rem; }
.weather-temp-block { text-align: center; }
.weather-temp-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1;
    color: var(--dark);
}
.wbg-stormy .weather-temp-num { color: #fff; }
.weather-temp-deg { font-size: 2rem; vertical-align: super; }
.weather-desc-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--mid);
    margin-top: 4px;
}
.wbg-stormy .weather-desc-label { color: #d1d5db; }
.weather-feels { font-size: 0.82rem; color: var(--mid); margin-top: 3px; }
.wbg-stormy .weather-feels { color: #9ca3af; }

.weather-mc-right { flex: 1; }
.weather-location-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 8px;
}
.wbg-stormy .weather-location-row { color: #e5e7eb; }
.weather-updated {
    font-size: 0.76rem;
    font-weight: 400;
    color: var(--mid);
    background: rgba(0,0,0,0.06);
    padding: 3px 10px;
    border-radius: 20px;
}
.wbg-stormy .weather-updated { background: rgba(255,255,255,0.12); color: #9ca3af; }

/* Stats grid */
.weather-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}
.weather-stat-box {
    background: rgba(255,255,255,0.55);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    backdrop-filter: blur(4px);
}
.wbg-stormy .weather-stat-box { background: rgba(255,255,255,0.1); }
.wsb-icon { font-size: 1.1rem; }
.wsb-val  { font-size: 0.88rem; font-weight: 700; color: var(--dark); }
.wbg-stormy .wsb-val { color: #e5e7eb; }
.wsb-lbl  { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--mid); }

/* Activity tip */
.weather-activity-tip {
    background: rgba(255,255,255,0.7);
    border-radius: 10px;
    padding: 11px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    border-left: 3px solid var(--accent);
}
.wbg-stormy .weather-activity-tip { background: rgba(255,255,255,0.12); color: #fcd34d; border-left-color: #fcd34d; }

/* ── 7-day Forecast strip ── */
.weather-forecast-strip {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
}
.wfc-card {
    background: var(--white);
    border-radius: 14px;
    padding: 14px 10px;
    text-align: center;
    border: 1.5px solid var(--border);
    transition: box-shadow var(--transition), transform var(--transition);
    cursor: default;
    min-width: 90px;
}
.wfc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.wfc-card:first-child { border-color: var(--accent); background: linear-gradient(135deg, #fffbeb, #fef3c7); }
.wfc-day  { font-size: 0.78rem; font-weight: 700; color: var(--mid); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.wfc-card:first-child .wfc-day { color: var(--primary); }
.wfc-emoji { font-size: 1.8rem; margin-bottom: 6px; }
.wfc-desc  { font-size: 0.68rem; color: var(--mid); margin-bottom: 6px; min-height: 28px; }
.wfc-temps { font-size: 0.82rem; font-weight: 700; margin-bottom: 4px; }
.wfc-hi    { color: #dc2626; margin-right: 4px; }
.wfc-lo    { color: #2563eb; }
.wfc-rain  { font-size: 0.7rem; color: var(--mid); }

/* Footer row */
.weather-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    flex-wrap: wrap;
    gap: 8px;
}
.weather-refresh-btn {
    background: none;
    border: 1.5px solid var(--border);
    padding: 5px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: var(--mid);
    transition: border-color var(--transition), color var(--transition);
}
.weather-refresh-btn:hover { border-color: var(--primary); color: var(--primary); }

/* ── Admin compact widget ── */
.weather-widget-wrap {
    background: linear-gradient(135deg, var(--sand), var(--ivory));
    border-radius: 14px;
    padding: 18px 20px;
    border: 1.5px solid var(--border);
}
.wwrap-top   { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.wwrap-emoji { font-size: 3rem; }
.wwrap-current { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--dark); line-height: 1; }
.wwrap-desc    { font-size: 0.82rem; font-weight: 600; color: var(--mid); margin-top: 2px; }
.wwrap-hilo    { font-size: 0.78rem; color: var(--mid); margin-top: 2px; }
.wwrap-stats   { display: flex; gap: 14px; font-size: 0.8rem; color: var(--mid); margin-bottom: 8px; flex-wrap: wrap; }
.wwrap-location { font-size: 0.78rem; color: var(--mid); margin-bottom: 6px; }
.wwrap-tip      { font-size: 0.82rem; color: var(--primary); font-weight: 600; background: rgba(30,58,42,0.06); padding: 8px 12px; border-radius: 8px; border-left: 3px solid var(--accent); }

/* ── Booking weather preview ── */
.booking-weather-preview {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 14px;
    border: 1.5px solid #93c5fd;
}
.bwp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}
.bwp-title { font-weight: 700; font-size: 0.95rem; color: var(--primary); }
.bwp-now   { font-size: 0.82rem; color: var(--mid); background: rgba(255,255,255,0.7); padding: 3px 10px; border-radius: 20px; }
.bwp-cards { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.bwp-card  {
    background: rgba(255,255,255,0.8);
    border-radius: 10px;
    padding: 10px 12px;
    text-align: center;
    min-width: 80px;
    flex-shrink: 0;
    border: 1px solid rgba(147,197,253,0.5);
}
.bwp-day   { font-size: 0.72rem; font-weight: 700; color: var(--primary); margin-bottom: 5px; }
.bwp-emoji { font-size: 1.5rem; margin-bottom: 4px; }
.bwp-desc  { font-size: 0.65rem; color: var(--mid); margin-bottom: 4px; min-height: 24px; }
.bwp-temps { font-size: 0.8rem; font-weight: 700; margin-bottom: 3px; }
.bwp-rain  { font-size: 0.68rem; color: #2563eb; }
.bwp-tip   { margin-top: 12px; font-size: 0.83rem; font-weight: 600; color: var(--primary); }

/* ── Responsive ── */
@media (max-width: 900px) {
    .weather-main-card { grid-template-columns: 1fr; gap: 20px; padding: 24px 20px; }
    .weather-mc-left   { flex-direction: row; justify-content: flex-start; }
    .weather-temp-block { text-align: left; }
}
@media (max-width: 600px) {
    .weather-stats-grid     { grid-template-columns: 1fr 1fr; }
    .weather-forecast-strip { grid-template-columns: repeat(4, 1fr); }
    .weather-icon-emoji     { font-size: 3.5rem; }
    .weather-temp-num       { font-size: 2.8rem; }
}

/* =============================================================
   NOTIFICATION / EMAIL SETTINGS
   ============================================================= */

/* Toggle switch */
.notif-toggle-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}
.notif-toggle-wrap input[type="checkbox"] { display: none; }
.notif-toggle {
    width: 42px;
    height: 24px;
    background: #d1d5db;
    border-radius: 999px;
    position: relative;
    transition: background 0.25s;
    flex-shrink: 0;
}
.notif-toggle::after {
    content: '';
    position: absolute;
    top: 3px; left: 3px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.25s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}
.notif-toggle-wrap input:checked + .notif-toggle  { background: var(--primary); }
.notif-toggle-wrap input:checked + .notif-toggle::after { transform: translateX(18px); }
.notif-toggle-label { font-size: 0.86rem; font-weight: 600; color: var(--dark); }

/* Resend action buttons inside reservations table */
.notif-action-btn {
    display: block;
    width: 100%;
    padding: 4px 8px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.74rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    margin-bottom: 4px;
    transition: opacity 0.2s;
}
.notif-action-btn:hover { opacity: 0.78; }
.notif-action-btn.wa    { background: #dcfce7; color: #15803d; }
.notif-action-btn.email { background: #dbeafe; color: #1d4ed8; }

/* =============================================================
   STAFF MANAGEMENT SYSTEM
   ============================================================= */

/* Sub-tab bar */
.staff-subtab-bar {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    background: var(--sand);
    padding: 6px;
    border-radius: 10px;
    flex-wrap: wrap;
}
.staff-subtab {
    flex: 1;
    min-width: 140px;
    padding: 9px 16px;
    border: none;
    border-radius: 7px;
    background: transparent;
    color: var(--mid);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.staff-subtab:hover  { background: var(--ivory); color: var(--dark); }
.staff-subtab.active { background: var(--white); color: var(--primary); box-shadow: 0 2px 8px rgba(30,58,42,0.1); }

/* Staff card (reuses .guest-card) */
.staff-card { border-left: 3px solid transparent; }
.staff-card:hover { border-left-color: var(--accent); }

/* Attendance status badges */
.att-badge {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.att-present { background: #dcfce7; color: #166534; }
.att-absent  { background: #fee2e2; color: #991b1b; }
.att-half    { background: #fef9c3; color: #854d0e; }
.att-leave   { background: #e0e7ff; color: #3730a3; }
.att-holiday { background: #f3e8ff; color: #6b21a8; }
.att-none    { background: #f3f4f6; color: #9ca3af; }

/* Attendance option radios */
.att-status-opt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 600;
    transition: border-color var(--transition), background var(--transition);
}
.att-status-opt:has(input:checked) { border-color: var(--primary); background: var(--sand); }
.att-status-opt input[type="radio"] { accent-color: var(--primary); }
.att-opt-present { color: #166534; }
.att-opt-absent  { color: #991b1b; }
.att-opt-half    { color: #854d0e; }
.att-opt-leave   { color: #3730a3; }

@media (max-width: 768px) {
    .staff-subtab-bar { flex-direction: column; }
    .staff-subtab { min-width: unset; text-align: left; }
}

/* =============================================================
   GUEST MANAGEMENT SYSTEM
   ============================================================= */

/* Guest card (list row) */
.guest-card {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    margin-bottom: 10px;
    transition: box-shadow var(--transition), border-color var(--transition);
}
.guest-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

/* Avatar */
.guest-card-avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.guest-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid var(--accent);
    flex-shrink: 0;
}
.guest-avatar img  { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.guest-avatar span { color: #fff; font-weight: 700; font-size: 1rem; }

/* Type badge */
.guest-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    white-space: nowrap;
}
.guest-badge.online  { background: #dcfce7; color: #166534; }
.guest-badge.walkin  { background: #fef3c7; color: #92400e; }

/* Card body */
.guest-card-body { min-width: 0; }
.guest-name { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.guest-phone,
.guest-address,
.guest-id-info {
    font-size: 0.8rem;
    color: var(--mid);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Card meta (booking count) */
.guest-card-meta { text-align: center; min-width: 88px; }
.guest-bookings-count { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 2px; }
.guest-created { font-size: 0.72rem; color: var(--mid); }

/* Card action buttons */
.guest-card-actions { display: flex; flex-direction: column; gap: 5px; }
.guest-action-btn {
    padding: 6px 10px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 0.76rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.guest-action-btn:hover { opacity: 0.78; }
.guest-action-btn.view   { background: var(--primary); color: #fff; }
.guest-action-btn.edit   { background: var(--accent); color: var(--primary-deep); }
.guest-action-btn.delete { background: #fee2e2; color: #dc2626; }

/* Empty state */
.guest-empty {
    padding: 48px 20px;
    text-align: center;
    color: var(--mid);
    background: var(--sand);
    border-radius: 12px;
    border: 2px dashed var(--border);
    font-size: 0.92rem;
}

/* ── Modal overlay (shared by add/edit + view) ── */
.guest-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.52);
    z-index: 9500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.guest-modal-box {
    background: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0,0,0,0.22);
}
.guest-view-modal-box { max-width: 640px; }

.guest-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1;
    border-radius: 16px 16px 0 0;
}
.guest-modal-header h3 { margin: 0; font-size: 1.1rem; font-weight: 700; }
.guest-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--mid);
    padding: 4px 8px;
    border-radius: 6px;
    transition: background var(--transition);
}
.guest-modal-close:hover { background: var(--sand); color: var(--dark); }
.guest-modal-body { padding: 24px; }

/* ── Form inside modal ── */
.guest-photo-upload { display: flex; justify-content: center; margin-bottom: 20px; }
.guest-photo-wrap { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.guest-photo-btn {
    display: inline-block;
    padding: 7px 16px;
    background: var(--sand);
    border: 1.5px dashed var(--border);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--mid);
    transition: border-color var(--transition), color var(--transition);
}
.guest-photo-btn:hover { border-color: var(--primary); color: var(--primary); }

.guest-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.guest-form-grid .gfg-full { grid-column: 1 / -1; }
.guest-form-grid label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--mid);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.guest-form-grid input,
.guest-form-grid select,
.guest-form-grid textarea {
    width: 100%;
    padding: 9px 13px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: var(--dark);
    background: var(--white);
    box-sizing: border-box;
    transition: border-color var(--transition);
}
.guest-form-grid input:focus,
.guest-form-grid select:focus,
.guest-form-grid textarea:focus { outline: none; border-color: var(--primary); }
.guest-form-grid textarea { height: 76px; resize: vertical; }

/* ── View modal layout ── */
.guest-view-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 18px;
}
.guest-avatar-large {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid var(--accent);
    flex-shrink: 0;
}
.guest-view-name-section { flex: 1; }
.guest-view-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.guest-view-item {
    background: var(--sand);
    padding: 10px 14px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.gvi-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--mid);
}
.gvi-value { font-size: 0.88rem; font-weight: 500; color: var(--dark); }

/* ── Mobile ── */
@media (max-width: 768px) {
    .guest-card {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
    }
    .guest-card-meta { display: none; }
    .guest-card-actions { grid-column: 1 / -1; flex-direction: row; }
    .guest-form-grid { grid-template-columns: 1fr; }
    .guest-form-grid .gfg-full { grid-column: 1; }
    .guest-view-grid { grid-template-columns: 1fr; }
    .guest-view-header { flex-direction: column; text-align: center; }
    .guest-modal-box { max-width: 100%; border-radius: 12px; }
}

/* ====================================================
   BALANCE DUE SYSTEM
   ==================================================== */
.balance-alert-card {
    background: linear-gradient(135deg, #fff1f2, #fff);
    border: 2px solid #fca5a5;
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 24px;
}
.balance-alert-header {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px; margin-bottom: 14px;
}
.balance-alert-title {
    font-weight: 800; font-size: 1rem; color: #991b1b;
    display: flex; align-items: center; gap: 8px;
}
.balance-alert-total {
    font-size: 1.5rem; font-weight: 800; color: #dc2626;
}
.balance-alert-sub { font-size: 0.76rem; color: #b91c1c; margin-top: 1px; }
.balance-due-list { display: flex; flex-direction: column; gap: 8px; }
.balance-due-row {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    background: #fff; border: 1px solid #fecaca; border-radius: 10px;
    padding: 10px 14px;
}
.bdr-guest { flex: 1; min-width: 0; }
.bdr-name  { font-weight: 700; font-size: 0.88rem; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bdr-meta  { font-size: 0.75rem; color: var(--mid); margin-top: 1px; }
.bdr-amount {
    font-size: 1rem; font-weight: 800; color: #dc2626; white-space: nowrap;
}
.bdr-days-left { font-size: 0.72rem; white-space: nowrap; padding: 3px 8px; border-radius: 20px; font-weight: 700; }
.bdr-overdue   { background: #fee2e2; color: #991b1b; }
.bdr-today     { background: #fef9c3; color: #854d0e; }
.bdr-soon      { background: #e0f2fe; color: #0369a1; }
.bdr-ok        { background: #f0fdf4; color: #166534; }
.bdr-mark-btn  {
    padding: 5px 14px; background: #166534; color: #fff;
    border: none; border-radius: 8px; font-size: 0.78rem; font-weight: 700;
    cursor: pointer; font-family: inherit; white-space: nowrap;
}
.bdr-mark-btn:hover { background: #14532d; }

/* In-table balance cell */
.balance-due-badge {
    display: inline-block; padding: 3px 10px; border-radius: 20px;
    font-size: 0.75rem; font-weight: 800; white-space: nowrap;
}
.bdb-due  { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.bdb-paid { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.bdb-none { background: var(--sand); color: var(--mid); border: 1px solid var(--border); }

.mark-paid-btn {
    display: block; margin-top: 5px; padding: 4px 10px; background: #166534; color: #fff;
    border: none; border-radius: 6px; font-size: 0.72rem; font-weight: 700;
    cursor: pointer; font-family: inherit; width: 100%;
}
.mark-paid-btn:hover { background: #14532d; }

/* Stat card variant for balance */
.stat-card-danger { border-top: 3px solid #dc2626; }
.stat-card-danger .stat-num { color: #dc2626; }

@media (max-width: 600px) {
    .balance-due-row { flex-direction: column; align-items: flex-start; }
}

/* ====================================================
   LOYALTY & REWARDS
   ==================================================== */
.loyalty-tier-badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 3px 10px; border-radius: 20px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}
.tier-bronze   { background: #fdf3e7; color: #92400e; border: 1px solid #d97706; }
.tier-silver   { background: #f1f5f9; color: #475569; border: 1px solid #94a3b8; }
.tier-gold     { background: #fffbeb; color: #92400e; border: 1px solid var(--accent); }
.tier-platinum { background: #f0f9ff; color: #0369a1; border: 1px solid #38bdf8; }

.loyalty-summary-cards { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.loyalty-sum-card {
    flex: 1; min-width: 140px; background: var(--ivory); border: 1px solid var(--border);
    border-radius: 12px; padding: 16px 18px; text-align: center;
}
.loyalty-sum-card .lsc-num  { font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.loyalty-sum-card .lsc-label { font-size: 0.75rem; color: var(--mid); margin-top: 2px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

.loyalty-guest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; margin-top: 4px; }
.loyalty-guest-card {
    background: var(--ivory); border: 1px solid var(--border); border-radius: 12px;
    padding: 15px 16px; display: flex; align-items: center; gap: 13px;
    transition: var(--transition); cursor: pointer;
}
.loyalty-guest-card:hover { box-shadow: var(--shadow-lg); border-color: var(--accent); }
.loyalty-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #4a8c5c);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 700; color: #fff; flex-shrink: 0; text-transform: uppercase;
}
.loyalty-info { flex: 1; min-width: 0; }
.loyalty-name { font-weight: 600; font-size: 0.9rem; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.loyalty-meta { font-size: 0.76rem; color: var(--mid); margin-top: 2px; }
.loyalty-pts-col { text-align: right; flex-shrink: 0; }
.loyalty-pts-num { font-size: 1.15rem; font-weight: 800; color: var(--primary); }
.loyalty-pts-sub { font-size: 0.68rem; color: var(--mid); }

.loyalty-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1100; display: flex; align-items: center; justify-content: center; padding: 16px; }
.loyalty-modal-box { background: #fff; border-radius: 16px; width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; padding: 28px 30px; }
.loyalty-hist-table { width: 100%; border-collapse: collapse; font-size: 0.83rem; }
.loyalty-hist-table th { background: var(--sand); padding: 8px 12px; text-align: left; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--mid); }
.loyalty-hist-table td { padding: 8px 12px; border-bottom: 1px solid var(--border); color: var(--dark); }
.lh-earn   { color: #166534; font-weight: 600; }
.lh-redeem { color: #b91c1c; font-weight: 600; }
.lh-adjust { color: #1d4ed8; font-weight: 600; }

.booking-loyalty-widget {
    background: linear-gradient(120deg, #f0fdf4, #fffbeb);
    border: 1.5px solid #86efac; border-radius: 12px;
    padding: 14px 18px; margin: 10px 0 4px;
    display: flex; align-items: flex-start; gap: 14px; flex-wrap: wrap;
}
.blw-icon { font-size: 1.8rem; flex-shrink: 0; }
.blw-body { flex: 1; min-width: 0; }
.blw-title { font-weight: 700; font-size: 0.9rem; color: #166534; }
.blw-detail { font-size: 0.78rem; color: #15803d; margin-top: 3px; }
.blw-redeem { display: flex; align-items: center; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.blw-pts-input { width: 88px; padding: 6px 10px; border: 1.5px solid #86efac; border-radius: 8px; font-size: 0.85rem; font-family: inherit; outline: none; }
.blw-pts-input:focus { border-color: #22c55e; }
.blw-apply-btn { padding: 6px 14px; background: #22c55e; color: #fff; border: none; border-radius: 8px; font-size: 0.82rem; font-weight: 600; cursor: pointer; font-family: inherit; }
.blw-applied { font-size: 0.82rem; color: #166534; font-weight: 700; }

/* ====================================================
   COUPONS & DISCOUNTS
   ==================================================== */
.booking-coupon-row { display: flex; gap: 10px; align-items: stretch; }
.booking-coupon-row input { flex: 1; text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; }
.coupon-apply-btn { padding: 0 18px; background: var(--accent); color: var(--dark); border: none; border-radius: 8px; font-size: 0.85rem; font-weight: 700; cursor: pointer; font-family: inherit; white-space: nowrap; transition: var(--transition); }
.coupon-apply-btn:hover { background: #b8943f; color: #fff; }
.coupon-feedback { font-size: 0.81rem; margin-top: 5px; min-height: 18px; }
.coupon-feedback.ok  { color: #166534; font-weight: 600; }
.coupon-feedback.err { color: #dc2626; }
.coupon-discount-line {
    display: flex; justify-content: space-between; padding: 9px 14px;
    background: #f0fdf4; border-radius: 9px; margin-top: 10px;
    font-size: 0.88rem; font-weight: 700; color: #166534;
    border: 1px solid #86efac;
}

.coupon-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; margin-top: 16px; }
.coupon-card { border: 2px dashed var(--accent); border-radius: 14px; overflow: hidden; transition: var(--transition); background: var(--ivory); }
.coupon-card:hover { box-shadow: var(--shadow-lg); border-style: solid; }
.coupon-card.coup-inactive-card { border-color: var(--border); opacity: 0.6; }
.coupon-card-top { background: linear-gradient(135deg, var(--primary), #2d5a3d); padding: 16px 18px; color: #fff; }
.coupon-code-text { font-size: 1.25rem; font-weight: 800; letter-spacing: 0.1em; font-family: 'Courier New', monospace; color: var(--accent); }
.coupon-name-text { font-size: 0.8rem; color: rgba(255,255,255,0.72); margin-top: 3px; }
.coupon-value-pill { display: inline-block; padding: 3px 12px; border-radius: 20px; background: var(--accent); color: var(--dark); font-size: 0.85rem; font-weight: 800; margin-top: 8px; }

/* ── Prevent iOS auto-zoom: all inputs must be ≥ 16px on touch devices ── */
@media (hover: none) and (pointer: coarse) {
    input,
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    input[type="number"],
    input[type="password"],
    input[type="search"],
    input[type="month"],
    select,
    textarea {
        font-size: 16px !important;
    }
}
.coupon-card-body { padding: 14px 18px; }
.coupon-info-row { font-size: 0.81rem; color: var(--mid); margin-bottom: 5px; display: flex; gap: 6px; }
.coupon-info-row strong { color: var(--dark); }
.coup-uses-bar-bg { height: 5px; background: var(--border); border-radius: 20px; overflow: hidden; margin: 8px 0 3px; }
.coup-uses-bar-fill { height: 100%; background: var(--accent); border-radius: 20px; }
.coupon-card-footer { display: flex; justify-content: space-between; align-items: center; padding: 10px 18px; border-top: 1px solid var(--border); gap: 8px; flex-wrap: wrap; }
.coup-status-badge { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 3px 10px; border-radius: 20px; }
.csb-active   { background: #dcfce7; color: #166534; }
.csb-inactive { background: #f1f5f9; color: #64748b; }
.csb-expired  { background: #fee2e2; color: #991b1b; }
.coup-act-btn { padding: 5px 12px; border-radius: 8px; font-size: 0.78rem; font-weight: 600; border: none; cursor: pointer; font-family: inherit; }
.coup-toggle-btn { background: #fef9c3; color: #854d0e; }
.coup-delete-btn { background: #fee2e2; color: #991b1b; }

.coupon-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1100; display: flex; align-items: center; justify-content: center; padding: 16px; }
.coupon-modal-box { background: #fff; border-radius: 16px; width: 100%; max-width: 500px; max-height: 90vh; overflow-y: auto; padding: 28px 30px; }

/* ====================================================
   AUDIT LOG
   ==================================================== */
.audit-filter-bar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 16px; }
.audit-filter-bar select, .audit-filter-bar input[type="date"] {
    padding: 7px 12px; border: 1px solid var(--border); border-radius: 8px;
    font-size: 0.83rem; font-family: inherit; background: var(--ivory); color: var(--dark); outline: none;
}
.audit-filter-bar select:focus, .audit-filter-bar input:focus { border-color: var(--accent); }
.audit-table-wrap { overflow-x: auto; }
.audit-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.audit-table th { background: var(--sand); padding: 9px 12px; text-align: left; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--mid); white-space: nowrap; }
.audit-table td { padding: 8px 12px; border-bottom: 1px solid var(--border); color: var(--dark); vertical-align: middle; }
.audit-table tr:last-child td { border-bottom: none; }
.audit-table tr:hover td { background: var(--sand); }
.aab { display: inline-block; padding: 2px 8px; border-radius: 20px; font-size: 0.69rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap; }
.aab-login   { background: #dbeafe; color: #1d4ed8; }
.aab-logout  { background: #f1f5f9; color: #475569; }
.aab-create  { background: #dcfce7; color: #166534; }
.aab-update  { background: #fef9c3; color: #854d0e; }
.aab-delete  { background: #fee2e2; color: #991b1b; }
.aab-approve { background: #dcfce7; color: #166534; }
.aab-reject  { background: #fee2e2; color: #991b1b; }
.aab-use     { background: #ede9fe; color: #6d28d9; }

/* ====================================================
   REVIEWS & RATINGS
   ==================================================== */
.stars-input-wrap { display: flex; gap: 4px; flex-direction: row-reverse; justify-content: flex-end; }
.stars-input-wrap input[type="radio"] { display: none; }
.stars-input-wrap label { font-size: 1.7rem; cursor: pointer; color: #d1d5db; transition: color 0.15s; line-height: 1; }
.stars-input-wrap label:hover,
.stars-input-wrap label:hover ~ label { color: #f59e0b; }
.stars-input-wrap input[type="radio"]:checked ~ label { color: #f59e0b; }

.star-disp { color: #f59e0b; letter-spacing: 1px; }
.star-disp.sm { font-size: 0.82rem; }

.review-stats-bar { background: var(--sand); border-radius: 12px; padding: 18px 22px; display: flex; gap: 28px; flex-wrap: wrap; align-items: center; margin-bottom: 20px; }
.rev-big-num { font-size: 3rem; font-weight: 800; color: var(--dark); line-height: 1; }
.rev-big-stars { font-size: 1.2rem; color: #f59e0b; margin-top: 4px; }
.rev-big-count { font-size: 0.76rem; color: var(--mid); margin-top: 4px; }
.rev-breakdown { flex: 1; display: flex; flex-direction: column; gap: 5px; min-width: 160px; }
.rev-bar-row { display: flex; gap: 8px; align-items: center; font-size: 0.77rem; color: var(--mid); }
.rev-bar-bg { flex: 1; height: 7px; background: var(--border); border-radius: 20px; overflow: hidden; }
.rev-bar-fill { height: 100%; background: #f59e0b; border-radius: 20px; }

.review-card { background: var(--ivory); border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px; transition: var(--transition); }
.review-card:hover { box-shadow: var(--shadow-lg); }
.review-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.rev-author { font-weight: 700; font-size: 0.94rem; color: var(--dark); }
.rev-meta   { font-size: 0.76rem; color: var(--mid); margin-top: 2px; }
.rev-status-badge { padding: 3px 10px; border-radius: 20px; font-size: 0.69rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap; }
.rsb-pending  { background: #fef9c3; color: #854d0e; }
.rsb-approved { background: #dcfce7; color: #166534; }
.rsb-rejected { background: #fee2e2; color: #991b1b; }
.rev-comment { font-size: 0.88rem; color: var(--dark); line-height: 1.65; margin: 8px 0; }
.rev-resort-reply { margin-top: 10px; padding: 10px 14px; background: #f0fdf4; border-left: 3px solid #22c55e; border-radius: 0 8px 8px 0; }
.rrr-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #166534; margin-bottom: 4px; }
.rrr-text  { font-size: 0.84rem; color: #166534; }
.rev-actions { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.rev-btn { padding: 5px 12px; border-radius: 8px; font-size: 0.78rem; font-weight: 600; cursor: pointer; border: none; font-family: inherit; }
.rev-btn-approve { background: #dcfce7; color: #166534; }
.rev-btn-reject  { background: #fee2e2; color: #991b1b; }
.rev-btn-delete  { background: #f1f5f9; color: #64748b; }
.rev-btn-reply   { background: #dbeafe; color: #1d4ed8; }

.rev-filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }
.rev-filter-tab { padding: 6px 16px; border: 1.5px solid var(--border); border-radius: 20px; background: var(--ivory); font-size: 0.8rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: var(--transition); }
.rev-filter-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Public review form (inline in booking confirmation) */
.booking-review-section {
    margin-top: 24px; padding: 22px 24px; background: var(--sand); border-radius: 14px;
    border: 1px solid var(--border);
}
.booking-review-section h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.booking-review-section .form-group { margin-bottom: 14px; }
.booking-review-section label { display: block; font-weight: 600; font-size: 0.83rem; color: var(--dark); margin-bottom: 5px; }
.booking-review-section textarea { width: 100%; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: 9px; font-size: 0.88rem; font-family: inherit; resize: vertical; min-height: 80px; outline: none; }
.booking-review-section textarea:focus { border-color: var(--accent); }
.rev-submitted-ok { padding: 16px; background: #f0fdf4; border-radius: 10px; text-align: center; color: #166534; font-weight: 600; font-size: 0.9rem; border: 1px solid #86efac; }

@media (max-width: 640px) {
    .loyalty-guest-grid { grid-template-columns: 1fr; }
    .coupon-grid { grid-template-columns: 1fr; }
    .booking-loyalty-widget { flex-direction: column; }
    .rev-bar-row { font-size: 0.7rem; }
    .review-stats-bar { flex-direction: column; gap: 14px; }
    .loyalty-summary-cards { flex-direction: column; }
}

/* ============================================================
   DELIVERY — SEARCH BAR & CONTROLS WRAPPER
   ============================================================ */

.delivery-controls {
    position: sticky;
    top: 72px;
    z-index: 50;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.delivery-search-wrap {
    padding: 12px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
}

.delivery-search-inner {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.delivery-search-icon {
    position: absolute;
    left: 14px;
    font-size: 1rem;
    pointer-events: none;
    color: var(--mid);
    line-height: 1;
}

.delivery-search-input {
    width: 100%;
    padding: 10px 40px 10px 42px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--dark);
    background: var(--cream);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.delivery-search-input:focus {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(197,160,89,0.12);
}
.delivery-search-input::placeholder { color: var(--mid); }

.delivery-search-clear {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--mid);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    transition: background 0.15s;
}
.delivery-search-clear:hover { background: var(--border); color: var(--dark); }

/* ============================================================
   DELIVERY PAGE — SECTION HEADER
   ============================================================ */
.delivery-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 28px;
    gap: 12px;
}
.live-kitchen-badge {
    font-size: 0.85rem;
    color: var(--mid);
    white-space: nowrap;
    flex-shrink: 0;
}
.live-kitchen-badge span { color: var(--gold); }

/* ============================================================
   DELIVERY PAGE — MOBILE FIXES
   ============================================================ */

.delivery-filters.filters-collapsed {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}

/* ---- 768px (tablet/large phone) ---- */
@media (max-width: 768px) {
    /* Fix sticky offset */
    .delivery-controls { top: 64px; }
    .delivery-search-wrap { padding: 10px 16px; }
    .delivery-search-input { font-size: 0.85rem; padding: 9px 36px 9px 38px; }

    /* Compact section header */
    .delivery-section-header { margin-bottom: 20px; flex-wrap: wrap; }
    .live-kitchen-badge { font-size: 0.78rem; }

    /* Reduce section padding */
    .delivery-section { padding: 28px 16px !important; }

    /* 2-column food grid on tablets */
    .delivery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    /* Compact food cards */
    .food-card-body { padding: 14px 14px; }
    .food-card-body h3 { font-size: 0.93rem; margin-bottom: 4px; }
    .food-card-body p { font-size: 0.8rem; margin-bottom: 10px; line-height: 1.4; }
    .food-meta { margin-bottom: 10px; }
    .food-price { font-size: 1.05rem; }
    .food-time { font-size: 0.75rem; }
    .add-to-cart-btn { padding: 9px; font-size: 0.83rem; }

    /* Filter bar — horizontal scroll, no wrap on mobile */
    .delivery-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 10px 16px;
        gap: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        max-height: 60px;
    }
    .delivery-filters::-webkit-scrollbar { display: none; }
    .filter-btn { flex-shrink: 0; padding: 6px 16px; font-size: 0.82rem; }

    /* Cart FAB */
    .cart-fab { bottom: 20px; right: 20px; width: 56px; height: 56px; font-size: 1.4rem; }
    .cart-badge { width: 20px; height: 20px; font-size: 0.68rem; }

    /* Cart modal — full-width slide-up from bottom */
    .cart-modal {
        width: 100vw;
        right: 0; left: 0;
        top: auto;
        bottom: 0;
        height: 92vh;
        border-radius: 20px 20px 0 0;
        animation: slideUpCart 0.28s ease;
    }

    /* Payment modal */
    .payment-modal-wrap { align-items: flex-end; }
    .payment-modal {
        border-radius: 20px 20px 0 0;
        max-height: 92vh;
        overflow-y: auto;
    }

    /* Bill modal */
    .bill-modal-wrap { align-items: flex-end; }
    .bill-modal-inner {
        border-radius: 20px 20px 0 0;
        max-height: 92vh;
    }
}

@keyframes slideUpCart {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}

/* ---- 480px (small phone) ---- */
@media (max-width: 480px) {
    /* Fix sticky offset — navbar is still 64px at this breakpoint */
    .delivery-controls { top: 64px; }
    .delivery-search-wrap { padding: 8px 12px; }
    .delivery-search-input { font-size: 0.84rem; padding: 8px 34px 8px 36px; }

    /* 1-column food grid on small phones */
    .delivery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Horizontal food card layout on small phones */
    .food-card {
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }
    .food-card-img {
        width: 90px;
        min-width: 90px;
        height: auto;
        font-size: 2.4rem;
        border-radius: 0;
    }
    .food-card-body {
        flex: 1;
        padding: 12px 14px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .food-card-body h3 { font-size: 0.88rem; margin-bottom: 2px; }
    .food-card-body p { display: none; } /* hide desc on small phone to save space */
    .food-meta { margin-bottom: 8px; }
    .food-price { font-size: 0.97rem; }
    .add-to-cart-btn { padding: 7px 10px; font-size: 0.8rem; }

    /* Tighter section */
    .delivery-section { padding: 16px 12px !important; }
    .delivery-section-header { margin-bottom: 14px; }

    /* Compact filter */
    .delivery-filters { padding: 8px 12px; max-height: 52px; }
    .filter-btn { padding: 5px 13px; font-size: 0.78rem; }

    /* Delivery hero */
    .delivery-hero { padding: 60px 16px 36px !important; }
    .delivery-hero h1 { font-size: 1.5rem !important; }
    .delivery-hero p { font-size: 0.83rem !important; }
    .delivery-area-badge { font-size: 0.72rem; padding: 6px 12px; }

    /* Cart modal full height on very small phones */
    .cart-modal { height: 95vh; }
    .cart-body { padding: 12px; }
    .cart-footer { padding: 10px 12px; }
}

/* ---- 360px (smallest common phones) ---- */
@media (max-width: 360px) {
    .delivery-search-input { font-size: 0.8rem; }
    .food-card-img { width: 76px; min-width: 76px; font-size: 2rem; }
    .food-card-body h3 { font-size: 0.82rem; }
    .food-price { font-size: 0.9rem; }
    .add-to-cart-btn { font-size: 0.76rem; padding: 6px 8px; }
}

/* ============================================================
   WALK-IN RESERVATION MODAL
   ============================================================ */
.walkin-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(2px);
    z-index: 800;
}

.walkin-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 680px;
    max-width: 96vw;
    max-height: 90vh;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
    z-index: 900;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: wiSlideIn 0.22s ease;
}

@keyframes wiSlideIn {
    from { opacity: 0; transform: translate(-50%, -46%); }
    to   { opacity: 1; transform: translate(-50%, -50%); }
}

.walkin-header {
    background: linear-gradient(135deg, var(--green-deep) 0%, #1a3a25 100%);
    color: #fff;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}
.walkin-header h3 { margin: 0; font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; }

.walkin-body {
    flex: 1;
    overflow-y: auto;
    padding: 22px 24px;
}

.walkin-section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--mid);
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border);
}

.walkin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.walkin-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
}
.walkin-field input,
.walkin-field select,
.walkin-field textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: var(--dark);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.walkin-field input:focus,
.walkin-field select:focus,
.walkin-field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(30,58,42,0.07); }

.walkin-summary {
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 16px;
}
.wis-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--mid);
    padding: 3px 0;
    font-family: 'Inter', sans-serif;
}
.wis-total {
    border-top: 1.5px solid var(--border);
    margin-top: 6px;
    padding-top: 8px;
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
}
.wis-due {
    font-weight: 600;
    color: #dc2626;
}

@media (max-width: 600px) {
    .walkin-modal {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        width: 100vw;
        max-width: 100vw;
        max-height: 95vh;
        border-radius: 18px 18px 0 0;
        animation: wiSlideUp 0.24s ease;
    }
    @keyframes wiSlideUp {
        from { transform: translateY(100%); }
        to   { transform: translateY(0); }
    }
    .walkin-grid { grid-template-columns: 1fr; }
    .walkin-body { padding: 16px; }
}

/* ===========================================================
   MOBILE IMPROVEMENTS
   =========================================================== */

/* ---- Bottom navigation bar (mobile only) ---- */
.mobile-btm-nav { display: none; }

@media (max-width: 768px) {
    body { padding-bottom: 64px; }

    .mobile-btm-nav {
        display: flex;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        height: 62px;
        background: #1a3d1a;
        border-top: 1px solid rgba(255,255,255,0.12);
        box-shadow: 0 -3px 20px rgba(0,0,0,0.35);
        z-index: 499;
    }
    .mobile-btm-nav a {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.6);
        text-decoration: none;
        font-size: 0.58rem;
        font-weight: 600;
        letter-spacing: 0.03em;
        gap: 2px;
        padding: 6px 2px;
        transition: color 0.18s, background 0.18s;
        -webkit-tap-highlight-color: transparent;
    }
    .mobile-btm-nav a .mbn-icon { font-size: 1.3rem; line-height: 1; }
    .mobile-btm-nav a.active { color: #d4af37; background: rgba(212,175,55,0.1); }
    .mobile-btm-nav a:active  { background: rgba(255,255,255,0.06); }

    /* ---- Bigger tap targets everywhere ---- */
    .btn-primary, .btn-gold, .btn-outline,
    button[type="submit"], .btn-secondary {
        min-height: 48px;
    }
    .hamburger {
        min-width: 44px; min-height: 44px;
        display: flex; align-items: center; justify-content: center;
    }
    .cart-nav-btn {
        min-width: 44px; min-height: 44px;
        display: flex; align-items: center; justify-content: center;
        font-size: 1.25rem;
    }

    /* ---- Prevent iOS auto-zoom on inputs ---- */
    input, select, textarea {
        font-size: 16px !important;
    }

    /* ---- Hero CTA: stack buttons ---- */
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    .hero-cta .btn-gold,
    .hero-cta .btn-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* ---- Page headers: smaller on mobile ---- */
    .page-header { padding: 76px 0 36px; }
    .page-header h1 { font-size: 1.8rem; }
    .page-header p  { font-size: 0.9rem; }

    /* ---- Booking form: single column + bigger fields ---- */
    .booking-form .form-row {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }
    .booking-form .form-group input,
    .booking-form .form-group select {
        padding: 14px 16px;
        min-height: 52px;
    }
    .booking-form .btn-primary {
        width: 100%;
        padding: 16px;
        font-size: 1rem;
        margin-top: 8px;
    }
    .booking-container { padding: 24px 16px; }
    .booking-coupon-row { flex-direction: column; gap: 8px; }
    .booking-coupon-row input  { width: 100%; }
    .booking-coupon-row .coupon-apply-btn { width: 100%; min-height: 44px; }

    /* ---- Room result cards: stack actions ---- */
    .room-card .room-actions,
    .booking-result-actions {
        flex-direction: column;
        gap: 8px;
    }
    .room-card .room-actions .btn-primary,
    .room-card .room-actions .btn-outline,
    .booking-result-actions button,
    .booking-result-actions a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* ---- Modals: slide up from bottom ---- */
    .modal-overlay .modal-content,
    .modal-overlay .booking-modal-content,
    #bookingPaymentModal .modal-content {
        position: fixed;
        bottom: 0; left: 0; right: 0;
        top: auto;
        width: 100vw;
        max-width: 100vw;
        border-radius: 20px 20px 0 0;
        max-height: 88vh;
        overflow-y: auto;
        padding: 20px 16px 28px;
        margin: 0;
    }

    /* ---- Delivery: food cards easier to tap ---- */
    .food-item-row  { padding: 14px 12px; gap: 10px; }
    .food-add-btn   { min-width: 44px; min-height: 44px; font-size: 1.2rem; }
    .qty-btn        { min-width: 36px; min-height: 36px; font-size: 1.1rem; }

    /* ---- Cart: float above bottom nav ---- */
    .cart-modal {
        bottom: 62px;
        border-radius: 16px 16px 0 0;
    }

    /* ---- Table order: bigger controls ---- */
    .to-item-row  { padding: 14px 10px; }
    .to-qty-btn   { min-width: 38px; min-height: 38px; font-size: 1.1rem; }
    .to-place-btn, #placeOrderBtn {
        width: 100%; min-height: 52px; font-size: 1rem;
    }

    /* ---- Rooms grid: single column ---- */
    .rooms-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-content h1  { font-size: 2rem; }
    .hero-content p   { font-size: 0.9rem; }
    .hero-badge       { font-size: 0.72rem; }

    .section-title, h2 { font-size: 1.5rem; }

    .packages-grid    { grid-template-columns: 1fr; }
    .about-grid       { grid-template-columns: 1fr 1fr; }
    .footer-content   { grid-template-columns: 1fr; gap: 20px; }

    /* Full-screen modals on very small screens */
    .modal-overlay .modal-content,
    .modal-overlay .booking-modal-content {
        max-height: 92vh;
        padding: 16px 12px 24px;
    }
}
