/* =========================
     PREMIUM CONTACT PAGE
========================= */
.premium-contact {
    background: linear-gradient(135deg, var(--bg-offwhite) 60%, #f4f4e8 100%);
    min-height: 100vh;
    padding-bottom: 48px;
}

.contact-hero {
    background: linear-gradient(120deg, var(--primary-green) 60%, var(--accent-yellow) 100%);
    color: white;
    text-align: center;
    padding: 56px 24px 36px 24px;
    border-radius: 0 0 32px 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    margin-bottom: 32px;
}
.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 6vw, 3.2rem);
    margin-bottom: 1.2rem;
    color: var(--accent-yellow);
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.96;
}

.contact-actions-cards {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    padding: 18px 32px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
    transition: transform 0.18s, box-shadow 0.18s;
    min-width: 220px;
}
.contact-card img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.contact-card:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
    background: var(--accent-yellow);
    color: var(--primary-green);
}
.contact-form-section {
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    max-width: 520px;
    margin: 0 auto 40px auto;
    padding: 36px 28px 32px 28px;
}
.contact-form-section h2 {
    text-align: center;
    color: var(--primary-green);
    font-family: 'Playfair Display', serif;
    margin-bottom: 24px;
}
.contact-form label {
    font-weight: 600;
    color: var(--primary-green);
    margin-top: 16px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin: 8px 0 18px 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background: #fafaf8;
    transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border: 1.5px solid var(--accent-yellow);
    outline: none;
}
.contact-form .btn.submit {
    width: 100%;
    margin-top: 8px;
    font-size: 1.1rem;
}
.map-section {
    margin: 48px auto 32px auto;
    max-width: 700px;
    background: #f9faf8;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 24px 18px 18px 18px;
}
.map-section h3 {
    color: var(--primary-green);
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
}
.privacy {
    text-align: center;
    margin: 32px 0 0 0;
    font-size: 1rem;
    color: #888;
}
.btn.chatbot {
    display: block;
    margin: 32px auto 0 auto;
    font-size: 1.08rem;
    padding: 12px 32px;
}

@media (max-width: 900px) {
    .contact-actions-cards {
        gap: 18px;
    }
    .contact-card {
        min-width: 160px;
        padding: 14px 16px;
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .contact-hero {
        padding: 36px 8px 24px 8px;
        border-radius: 0 0 18px 18px;
    }
    .contact-form-section {
        padding: 18px 6px 18px 6px;
    }
    .map-section {
        padding: 10px 2px 10px 2px;
    }
}
/* =========================
   GOOGLE FONTS (Premium typography)
========================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* =========================
   CSS VARIABLES (easy theming)
========================= */
:root {
    --primary-green: #0f3d2e;
    --accent-yellow: #f4c430;
    --accent-yellow-dark: #e0b02c;
    --text-dark: #1a1a1a;
    --text-light: #f1f1f1;
    --bg-light: #ffffff;
    --bg-offwhite: #f9faf8;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.12);
    --radius-lg: 16px;
    --radius-pill: 50px;
}

/* Dark mode */
.dark-mode {
    --primary-green: #0a2a1f;
    --accent-yellow: #ffd54f;
    --accent-yellow-dark: #ffca28;
    --text-dark: #e0e0e0;
    --text-light: #f5f5f5;
    --bg-light: #121212;
    --bg-offwhite: #1e1e1e;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.4);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.5);
}

/* =========================
   GLOBAL RESET & BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

/* =========================
   GLOBAL PAGE LOADER
========================= */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(244, 248, 242, 0.74);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.page-loader.active {
    display: flex;
}

.page-loader-card {
    display: grid;
    place-items: center;
    gap: 10px;
    min-width: 170px;
    padding: 20px 22px;
    border-radius: 16px;
    border: 1px solid rgba(15, 61, 46, 0.12);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 36px rgba(15, 61, 46, 0.16);
}

.page-loader-spinner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid rgba(15, 61, 46, 0.16);
    border-top-color: var(--primary-green);
    animation: pageLoaderSpin 0.85s linear infinite;
}

.page-loader-text {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 0.98rem;
}

@keyframes pageLoaderSpin {
    to { transform: rotate(360deg); }
}

/* =========================
   HEADER (GLOBAL) – Clean & Reliable 2026 style
========================= */
/* HEADER – single reliable version */
.site-header {
    width: 100%;
    background-color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin: 0;
    box-sizing: border-box;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-area img {
    height: 52px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    white-space: nowrap;
}

.hamburger {
    display: none;
    font-size: 2.4rem;
    color: white;
    cursor: pointer;
    padding: 8px;
}

nav ul {
    list-style: none;
    display: flex;
        gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: white;
    white-space: nowrap;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 8px 12px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--accent-yellow);
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
}

/* Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-green);
        display: none;
        box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 8px;
        padding: 24px 20px;
    }

    nav ul li a {
        font-size: 1.2rem;
        text-align: center;
        padding: 14px 0;
        display: block;
    }
}
/* =========================
   HERO (Home)
========================= */
.hero {
    min-height: 60vh;
    background: linear-gradient(rgba(15, 61, 46, 0.78), rgb(168, 200, 66)),
                url("../images/hero.jpg") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    color: white;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 8vw, 4.8rem);
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 16px rgba(0,0,0,0.6);
}

.hero p {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
    max-width: 700px;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Premium button style */
.btn,
.pay-btn,
.continue-btn,
.go-to-cart-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-yellow-dark));
    color: var(--primary-green);
    font-weight: 600;
    padding: 14px 36px;
    border-radius: var(--radius-pill);
    box-shadow: 0 6px 20px rgba(244, 196, 48, 0.35);
    transition: all 0.35s ease;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
}

.btn:hover,
.pay-btn:hover,
.continue-btn:hover,
.go-to-cart-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(244, 196, 48, 0.5);
}

.pay-btn {
    background: linear-gradient(135deg,rgb(168, 200, 66), #2e7d32);
    color: white;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.35);
}

.continue-btn {
    background: linear-gradient(135deg, #2196f3,rgb(168, 200, 66));
    color: white;
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.35);
}


/* ── SHOP PAGE – Fresh Modern 2026 Premium Look (added Feb 2026) ─────────────── */
/* No duplicates here – overrides any old shop rules above */

.shop-hero {
  background: linear-gradient(135deg, var(--primary-green) 50%, #1a3f32 100%);
  color: white;
  text-align: center;
  padding: clamp(80px, 14vh, 140px) 24px 100px;
  position: relative;
  overflow: hidden;
}

.shop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(244,196,48,0.12), transparent 60%);
  pointer-events: none;
}

.shop-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 7.5vw, 4.4rem);
  background-color: #f4c430;
  border-radius: 8px;
 padding: 12px 20px;
  text-align: center;
  text-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

.shop-hero p {
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  max-width: 680px;
  margin: 0 auto;
  opacity: 0.94;
  line-height: 1.55;
  font-weight: bold;  /* Changed to just 'bold' – or use 700 if you want a number */
}

/* Fresh product card overrides – premium food styling */
.product-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.38s ease;
}

.product-card img {
  height: auto;                /* Lets the image use its natural height based on width/proportions – no fixed size, fixes squishing/cropping */
  max-height: 240px;           /* Optional: Prevents super-tall images from making cards too big; adjust to 300px or whatever fits your design */
  object-fit: contain;         /* Shows the FULL image without cropping – scales to fit inside the container, keeps original shape */
  object-position: center;     /* Centers the image horizontally/vertically if there's extra space */
  background: #f8f9f6;         /* Neutral light background fills any empty space around the image (e.g., if image is narrow) – change to white (#ffffff) if you prefer */
  width: 100%;                 /* Makes image fill the full width of the card */
}
.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: rgb(168, 200, 66);
  margin: 20px 28px 8px;
}

.product-card .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: linear-gradient(135deg, var(--primary-green), #a8c824);
  margin: 0 28px 16px;
}

.product-card .btn {
  margin: 0 auto 32px auto;    /* Centers the button with auto left/right margins, keeps bottom spacing for breathing room */
  width: 80%;                  /* Sets to 80% of card width – less spread out; try 70% if you want even narrower */
  max-width: 240px;            /* Caps max width at 240px for a compact, authentic button size on wide screens; adjust to 200px if too big */
  padding: 14px 36px;          /* Keeps premium padding – matches your global .btn style */
  border-radius: var(--radius-pill);  /* Pill shape for modern 2026 feel */
  align-self: center;          /* Ensures perfect centering in the flex column */
  transition: all 0.35s ease;  /* Smooth hover (already in global .btn, but reinforced) */
}


/* Extra authentic tweaks – premium 2026 polish */

/* Softer card borders for trust/authenticity */
.product-card {
  border: 1px solid rgba(15, 61, 46, 0.08);  /* Subtle green-tint border – matches --primary-green */
  border-radius: var(--radius-lg);          /* Keep rounded */
}

/* Hover glow for engaging feel */
.product-card:hover {
  border-color: var(--accent-yellow);       /* Yellow glow on hover – premium highlight */
  transform: translateY(-4px) scale(1.02);  /* Slightly larger on hover for a more dynamic feel */
    box-shadow: var(--shadow-hover); /* Yellow-tinted shadow on hover */
}
.product-card .btn:hover {
  background: var(--accent-yellow-dark); /* Darker yellow on button hover */
  color: var(--primary-green);
  box-shadow: 0 12px 32px rgba(244, 196, 48, 0.5); /* Stronger shadow on button hover */
}

.product-card .description {
  padding: 0 28px 24px;
  font-size: 0.97rem;
  color: #444;
  line-height: 1.65;
  flex-grow: 1;

  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* More grid spacing for airy layout */
.product-list {
  gap: 40px;                                /* Increase from 32px – less crowded */
}

/* Mobile: Keep compact */
@media (max-width: 640px) {
  .product-list {
    gap: 24px;                              /* Smaller gap on mobile */
  }
}



/* =========================
   PRODUCT MODAL (Shop Page)
   Fixes zoom + layout collapse
========================= */

.product-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.product-modal.active {
    display: flex;
}

.modal-content {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 32px;                /* ✅ NORMAL, HUMAN PADDING */
    max-width: 460px;
    width: 92%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    animation: modalPop 0.35s ease-out;

    /* Safety */
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.88) translateY(40px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Modal text layout */
.modal-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: linear-gradient(135deg, var(--primary-green), #a8c824);
    margin-bottom: 8px;
    text-align: center;
}

.modal-content .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #a8c824;
    text-align: center;
    margin-bottom: 16px;
}

.modal-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    text-align: center;
}

.close-modal {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 2rem;
    color: #777;
    cursor: pointer;
    line-height: 1;
}

.modal-content img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 12px;
}

/* =========================
   WHY US + FOOTER
========================= */


/* Expanded Why Us / About Section */
.why-us {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--primary-green), #a8c824);
    color: white;
    text-align: center;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-us h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    margin-bottom: 1.5rem;
    color: var(--accent-yellow);
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 3rem;
    opacity: 0.95;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 3rem;
}

.highlight-item {
    background: rgba(255,255,255,0.12);
    padding: 32px 24px;
    border-radius: 16px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.highlight-item h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--accent-yellow);
}

.cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 2rem;
}

.btn.primary {
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-yellow-dark));
    color: var(--primary-green);
}

.btn.secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 1px solid rgba(255,255,255,0.4);
}

.btn.secondary:hover {
    background: rgba(255,255,255,0.25);
}

.trust-note {
    font-size: 1rem;
    opacity: 0.85;
    font-style: italic;
}

/* Mobile adjustments for Why Us */
@media (max-width: 768px) {
    .why-us {
        padding: 80px 20px;
    }
    .intro-text {
        font-size: 1.1rem;
    }
    .cta-wrapper {
        flex-direction: column;
        gap: 16px;
    }
}

/* =========================
   CART
========================= */
.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: white;
    border-radius: 12px;
        max-width: 1200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f0f0;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
}

.remove-btn {
    color: #d32f2f;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

/* =========================
   DARK MODE TOGGLE (if kept)
========================= */
#dark-mode-toggle {
    background: var(--accent-yellow);
    color: var(--primary-green);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    margin-left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}

#dark-mode-toggle:hover {
    background: var(--accent-yellow-dark);
    color: var(--primary-green);
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
        padding: 60px 20px;
    }
    .product-card img {
        height: 200px;
    }
    .cart-item {
        flex-direction: column;
        text-align: center;
    }
    .cart-item img {
        width: 140px;
        height: 140px;
    }
}

/* Extra mobile safety */
@media (max-width: 768px) {
    .product-list {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 24px;
    }

    .product-card img {
        height: 200px;
    }

    .product-card h3 {
        font-size: 1.25rem;
        margin: 16px 20px 6px;
    }

    .product-card .price {
        font-size: 1.25rem;
        margin: 0 20px 20px;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 7vw, 3.8rem);
    }

    .hero p {
        font-size: 1.1rem;
    }

    .btn {
        padding: 12px 28px;
        font-size: 1rem;
    }
}

/* Social Links – Premium look */
.social-links {
    text-align: center;
    margin: 40px 0 20px;
}

.social-links h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent-yellow);
}

.social-icons-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.social-icon {
    display: block;
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.social-icon:hover {
    transform: translateY(-6px) scale(1.1);
    opacity: 0.9;
}

/* Optional: colored hover tint for each platform */
.social-icon.whatsapp:hover img { filter: brightness(1.1) hue-rotate(90deg); }
.social-icon.instagram:hover img { filter: brightness(1.1) hue-rotate(200deg); }
.social-icon.facebook:hover img { filter: brightness(1.1) hue-rotate(220deg); }
.social-icon.tiktok:hover img { filter: brightness(1.1) hue-rotate(300deg); }
.social-icon.twitter:hover img { filter: brightness(1.1) hue-rotate(180deg); }

/* Mobile */
@media (max-width: 768px) {
    .social-icons-grid {
        gap: 20px;
    }
    .social-icon {
        width: 48px;
        height: 48px;
    }
}


/* Embedded Video – Inline playable on contact page */
.video-embed {
    text-align: center;
    margin: 40px auto;
    max-width: 700px;               /* wider for better view */
    padding: 0 16px;
}

.video-embed h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--accent-yellow);
}

.video-embed p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #eee;
}

/* Adaptive Inline TikTok/YouTube Embed – Vertical or Horizontal Auto-Adapt */
.video-embed {
    text-align: center;
    margin: 40px auto;
    max-width: 700px;
    padding: 0 16px;
}

.video-embed h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--accent-yellow);
}

.video-embed p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #333;                    /* dark gray – visible in light mode */
    line-height: 1.5;
}

/* Make sure it's readable in dark mode too */
.dark-mode .video-embed p {
    color: #ddd;                    /* light gray – visible in dark mode */
}

.embed-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
    background: #111; /* fallback dark bg */
}

/* Override TikTok's forced max-width/min-width */
.tiktok-embed {
    max-width: 100% !important;
    min-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
}

/* Let the embed decide its ratio (TikTok vertical will be tall, horizontal wide) */
.embed-wrapper blockquote,
.embed-wrapper iframe {
    width: 100% !important;
    height: auto !important;
    min-height: 400px; /* prevents tiny collapse */
    border: none;
}

/* Fallback aspect ratios – vertical priority on mobile */
.embed-wrapper {
    aspect-ratio: 9 / 16; /* default to vertical (TikTok style) */
}

/* On desktop/large screens, relax to horizontal if needed */
@media (min-width: 769px) {
    .embed-wrapper {
        aspect-ratio: 16 / 9; /* allow wider for YouTube-like if swapped */
        max-height: 600px;    /* cap height on big screens */
    }
}

/* Mobile: force taller view for vertical videos */
@media (max-width: 768px) {
    .embed-wrapper {
        aspect-ratio: 9 / 16;
        max-height: 80vh;
    }
}
.tiktok-embed section {
    width: 100% !important;
    height: auto !important;
}

.user-area {
  display: flex;
  align-items: center;
  gap: 16px;
}

#logged-in-area {
  align-items: center;
  gap: 12px;
}

#user-greeting {
  font-size: 1rem;
}

#logout-btn {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 8px 16px;
  border-radius: 50px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .user-avatar-area {
    margin-left: auto;
    gap: 12px;
  }

  #guest-area,
  #logged-in-area {
    margin-left: auto;
  }

  .mobile-logged-in {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  #logout-btn-mobile {
    padding: 6px 10px;
    font-size: 0.86rem;
    line-height: 1.2;
    white-space: nowrap;
  }
}

/* Avatar-based user area */
.user-avatar-area {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.avatar-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;
  width: 64px;
  height: 64px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fill the circle fully */
    border-radius: 50%;
    display: block;
}

.avatar-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 0 3px rgba(244, 196, 48, 0.3); /* yellow glow */
}

/* Dropdown menu */
.user-menu {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  min-width: 180px;
  margin-top: 8px;
  padding: 12px 0;
  z-index: 1000;
  display: none;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 10px 20px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 0.95rem;
  color: #333;
}

.dropdown-item:hover {
  background: #f8f9fa;
}

.logout {
  color: #d32f2f !important;
  border-top: 1px solid #eee;
  margin-top: 8px;
}

.greeting {
  padding: 10px 20px;
  margin: 0;
  font-weight: 600;
  color: var(--primary-green);
  border-bottom: 1px solid #eee;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .avatar-btn {
    width: 36px;
    height: 36px;
  }
}




.shop-title-wrapper {
  text-align: center;          /* Force center alignment */
  margin: 60px auto 40px;      /* auto left/right = perfect horizontal centering */
  padding: 0;                  /* Remove any side padding that could shift it */
  max-width: 1200px;           /* Match typical content width of other pages */
  width: 100%;                 /* Full available width */
}

.shop-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 0 auto;              /* Extra safety centering */
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: inline-block;       /* Helps with centering when inside block elements */
}

@media (max-width: 768px) {
  .shop-title {
    font-size: 2.2rem;
  }
  .shop-title-wrapper {
    margin: 40px auto 32px;    /* Keep centered on mobile too */
  }
}

.shop-quick-actions {
  width: min(1100px, 100%);
  margin: 28px auto 8px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.shop-quick-actions-bottom {
  margin-top: 32px;
}

.shop-quick-label {
  color: #4d6257;
  font-size: 0.98rem;
  font-weight: 600;
}

.shop-cart-shortcut {
  min-width: 170px;
  text-align: center;
}

@media (max-width: 768px) {
  .shop-quick-actions {
    margin: 22px auto 6px;
  }

  .shop-cart-shortcut {
    width: 100%;
    max-width: 320px;
  }

  .shop-quick-actions-bottom {
    margin-top: 24px;
  }
}

/* Desktop logged-in area */
.desktop-logged-in {
  display: flex;
  align-items: center;
  gap: 12px;
}

#logout-btn-mobile {
  display: none !important;
}

.mobile-menu-auth {
  display: none;
}

.mobile-menu-auth-link,
.mobile-menu-logout-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.mobile-menu-auth-link {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.mobile-menu-logout-btn {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  cursor: pointer;
}

/* Mobile logged-in area (hidden by default) */
.mobile-logged-in {
  display: none;
}

/* Show compact mobile version in header on small screens */
@media (max-width: 768px) {
  .desktop-logged-in {
    display: none; /* hide desktop version on mobile */
  }
  .mobile-logged-in {
    display: flex; /* show mobile version */
    align-items: center;
    gap: 8px;
  }

  #logout-btn {
    display: none !important;
  }

  .mobile-menu-auth {
    display: grid;
    gap: 10px;
    list-style: none;
    margin-top: 6px;
  }
}

/* Auth / Outline Button – replaces inline styles */
.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--accent-yellow);
    font-weight: 600;
    padding: 10px 22px;
    border: 2px solid var(--accent-yellow);
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-outline:hover {
    background: var(--accent-yellow);
    color: var(--primary-green);
    box-shadow: 0 6px 20px rgba(244, 196, 48, 0.35);
}

.map-frame {
  border: 0;
}

.map-note {
  margin-top: 10px;
  font-size: 0.95em;
  color: #555;
}

.btn-glass {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

/* ===== AUTH MODAL FIX ===== */
.auth-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.auth-modal.hidden {
  display: none;
}

.auth-modal-content {
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.auth-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.auth-input {
  width: 100%;
  padding: 12px;
  margin: 12px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.auth-submit {
  width: 100%;
  margin: 16px 0;
}
/* May likely remove later */
.auth-submit {
  width: 100%;
  padding: 14px;
  font-size: 1.1rem;
}

.auth-toggle {
  background: none;
  border: none;
  color: #0066cc;
  cursor: pointer;
  text-decoration: underline;
}
.google-btn {
  background: #4285f4;
  color: #ffffff;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.auth-blocked {
  overflow: hidden;
}

.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
}

@media (max-width: 768px) {
  .shop-page .product-list {
    gap: 20px;
  }

  .shop-page .product-card img {
    height: 200px;
  }
}
.shop-page .product-modal .modal-content img {
  max-height: 260px;
  object-fit: contain;
}

.cart-page {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 24px;
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* =========================
   CHECKOUT LAYOUT
========================= */
.checkout-page {
  max-width: 1180px;
  margin: 30px auto;
  padding: 0 20px 40px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  color: var(--primary-green);
  font-weight: 600;
}

.checkout-page h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4.5vw, 2.4rem);
  color: var(--primary-green);
  margin-bottom: 16px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 1fr);
  gap: 22px;
  align-items: start;
}

.checkout-items,
.checkout-summary {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 20px;
}

.checkout-items h3,
.checkout-summary h3 {
  margin-bottom: 14px;
  color: var(--primary-green);
  font-size: 1.2rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.delivery-box {
  background: #f8fbf8;
  border: 1px solid #e8ece8;
  border-radius: 12px;
  padding: 14px;
  margin: 16px 0;
}

.delivery-box h4 {
  margin-bottom: 10px;
  color: var(--primary-green);
}

.total-row {
  border-top: 1px solid #e5e5e5;
  margin-top: 14px;
  padding-top: 12px;
}

.checkout-summary .pay-btn {
  width: 100%;
  margin-top: 10px;
}

.success-page {
  max-width: 980px;
  margin: 34px auto 48px;
  padding: 0 16px;
}

.receipt-shell {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e4ebe1;
  box-shadow: var(--shadow-soft);
  padding: clamp(18px, 4vw, 30px);
}

.receipt-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px dashed #cedac8;
}

.receipt-heading h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  color: var(--primary-green);
}

.receipt-heading p {
  margin-top: 6px;
  color: #425247;
}

.receipt-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1b7f3c;
}

.receipt-brand {
  text-align: right;
}

.receipt-brand img {
  width: 64px;
  margin-left: auto;
}

.receipt-brand p {
  margin-top: 8px;
  color: #486154;
  font-weight: 600;
}

.receipt-meta {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.receipt-meta-card {
  background: #f5f8f4;
  border: 1px solid #e3ebe0;
  border-radius: 12px;
  padding: 12px;
  display: grid;
  gap: 4px;
}

.receipt-meta-card span {
  color: #627468;
  font-size: 0.86rem;
}

.receipt-meta-card strong {
  color: var(--primary-green);
  font-size: 1rem;
}

.paid-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #c7e3cf;
  background: #edf8f1;
  color: #1b7f3c;
}

.pending-badge,
.failed-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
}

.pending-badge {
  border: 1px solid #eadca4;
  background: #fff6d9;
  color: #7b6110;
}

.failed-badge {
  border: 1px solid #ebc3be;
  background: #fde9e7;
  color: #9e2a1f;
}

.receipt-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
}

.receipt-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.receipt-table th {
  text-align: left;
  font-size: 0.9rem;
  font-weight: 700;
  color: #4d6257;
  padding: 12px 10px;
  border-bottom: 1px solid #dbe5d7;
}

.receipt-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #eef2ec;
  color: #1f2b24;
}

.receipt-summary {
  width: min(380px, 100%);
  margin-left: auto;
  margin-top: 20px;
  border-top: 1px dashed #d4ddd1;
  padding-top: 12px;
}

.receipt-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.receipt-summary-row.total {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid #dde5d9;
  color: var(--primary-green);
}

.receipt-note {
  margin-top: 18px;
  color: #4d6257;
  font-size: 0.95rem;
}

.success-actions {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .success-page {
    margin: 22px auto 34px;
    padding: 0 12px;
  }

  .receipt-head {
    flex-direction: column;
  }

  .receipt-brand {
    text-align: left;
  }

  .receipt-brand img {
    margin-left: 0;
  }

  .receipt-meta {
    grid-template-columns: 1fr;
  }
}

@media print {
  .site-header,
  .success-actions {
    display: none !important;
  }

  .success-page {
    margin: 0;
    max-width: none;
    padding: 0;
  }

  .receipt-shell {
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 0;
  }
}

.order-ref-box {
  max-width: 1180px;
  margin: 0 auto 40px;
  padding: 0 20px;
  color: var(--primary-green);
}

/* =========================
   AUTH PAGE (Glass Style)
========================= */
.auth-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 20%, rgba(244, 196, 48, 0.18), transparent 40%),
    radial-gradient(circle at 90% 0%, rgba(15, 61, 46, 0.2), transparent 42%),
    linear-gradient(160deg, #f3f7ef 0%, #ecf2e8 44%, #e4ece2 100%);
}

.auth-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.auth-box {
  width: 100%;
  max-width: 540px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 48px rgba(15, 61, 46, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.auth-brand {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}

.auth-brand img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  padding: 6px;
}

.auth-brand-label {
  color: #567063;
  font-size: 0.9rem;
}

.auth-subtitle {
  color: #4f5f55;
  font-size: 0.95rem;
}

.auth-box h1 {
  font-family: "Playfair Display", serif;
  color: var(--primary-green);
  font-size: clamp(1.8rem, 4.4vw, 2.3rem);
}

.auth-form {
  display: grid;
  gap: 10px;
}

.auth-name-group {
  display: grid;
  gap: 10px;
}

.auth-form label {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.95rem;
}

.auth-form input {
  width: 100%;
  border: 1px solid #dce5dc;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 1rem;
  color: #1b1b1b;
}

.auth-form input:focus {
  outline: none;
  border-color: #b4c7b7;
  box-shadow: 0 0 0 3px rgba(15, 61, 46, 0.08);
}

.auth-forgot-link {
  justify-self: end;
  color: #3a6d54;
  font-size: 0.9rem;
  font-weight: 600;
}

.auth-forgot-link:hover {
  text-decoration: underline;
}

.auth-continue {
  width: 100%;
  margin-top: 10px;
}

.auth-toggle-text {
  margin-top: 16px;
  text-align: center;
  color: #44554b;
  font-size: 0.98rem;
}

.auth-toggle-text span {
  color: var(--primary-green);
  text-decoration: underline;
  cursor: pointer;
  font-weight: 600;
}

.auth-divider {
  margin: 16px 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #61756a;
  font-size: 0.9rem;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #d8e0d7;
}

.auth-google-btn {
  margin-top: 0;
}

.auth-reset-box {
  max-width: 520px;
}

.settings-page {
  max-width: 980px;
  margin: 30px auto 44px;
  padding: 0 16px;
}

.settings-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e6ede3;
  box-shadow: var(--shadow-soft);
  padding: clamp(18px, 4vw, 28px);
}

.settings-head h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  color: var(--primary-green);
}

.settings-head p {
  margin-top: 6px;
  color: #4c6155;
}

.settings-form {
  margin-top: 18px;
}

.settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.settings-field {
  display: grid;
  gap: 6px;
}

.settings-field.full {
  grid-column: 1 / -1;
}

.settings-field label {
  font-weight: 600;
  color: var(--primary-green);
}

.settings-field input,
.settings-field textarea {
  width: 100%;
  border: 1px solid #dbe5da;
  border-radius: 12px;
  padding: 11px 13px;
  background: #fbfcfb;
}

.settings-field input:focus,
.settings-field textarea:focus {
  outline: none;
  border-color: #b3c8b7;
  box-shadow: 0 0 0 3px rgba(15, 61, 46, 0.08);
}

.settings-field input[readonly] {
  background: #f3f7f2;
  color: #5f7568;
}

.settings-hint {
  font-size: 0.83rem;
  color: #607267;
  margin-top: 2px;
}

.settings-checks {
  margin-top: 14px;
  border: 1px solid #e0e8dd;
  border-radius: 12px;
  padding: 14px;
}

.settings-checks legend {
  color: var(--primary-green);
  font-weight: 700;
  padding: 0 4px;
}

.settings-checks label {
  display: block;
  margin-bottom: 8px;
  color: #34483d;
}

.settings-security-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e0e8dd;
  background: #f7faf6;
}

.settings-security-copy {
  color: #4d6257;
}

.settings-reset-link {
  padding: 8px 14px;
}

.settings-save-btn {
  margin-top: 10px;
}

.settings-status {
  margin-top: 12px;
  min-height: 24px;
  font-weight: 600;
}

.settings-status.info {
  color: #27506f;
}

.settings-status.success {
  color: #1b7f3c;
}

.settings-status.error {
  color: #b3261e;
}

.settings-account-info {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed #d8e1d5;
}

.settings-account-info h2 {
  color: var(--primary-green);
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.settings-account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.settings-account-grid p {
  background: #f6f9f5;
  border: 1px solid #e4ebe1;
  border-radius: 10px;
  padding: 10px;
  display: grid;
  gap: 4px;
}

.settings-account-grid span {
  font-size: 0.84rem;
  color: #607267;
}

.settings-account-grid strong {
  color: #304439;
}

.admin-page {
  max-width: 1200px;
  margin: 28px auto 48px;
  padding: 0 16px;
}

.admin-shell {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e6ede3;
  box-shadow: var(--shadow-soft);
  padding: clamp(16px, 3vw, 26px);
}

.admin-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.admin-header h1 {
  font-family: "Playfair Display", serif;
  color: var(--primary-green);
  font-size: clamp(1.7rem, 4vw, 2.2rem);
}

.admin-header p {
  margin-top: 6px;
  color: #4c6155;
}

.admin-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-toolbar label {
  font-weight: 600;
  color: #2f4a3e;
}

.admin-select {
  border: 1px solid #d8e3d5;
  border-radius: 10px;
  padding: 9px 11px;
  background: #ffffff;
  color: #2f4639;
}

.admin-access-note {
  min-height: 22px;
  margin-top: 10px;
  color: #355245;
  font-weight: 600;
}

.admin-access-note.error {
  color: #b3261e;
}

.admin-access-note.success {
  color: #1b7f3c;
}

.admin-bootstrap-btn {
  margin-top: 6px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.admin-stat-card {
  background: #f6faf4;
  border: 1px solid #e1eadf;
  border-radius: 12px;
  padding: 12px;
  display: grid;
  gap: 4px;
}

.admin-stat-card span {
  color: #607367;
  font-size: 0.86rem;
}

.admin-stat-card strong {
  color: #2c4337;
  font-size: 1.35rem;
}

.admin-orders {
  margin-top: 16px;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-orders-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.admin-orders-table th {
  text-align: left;
  font-size: 0.9rem;
  color: #4d6257;
  border-bottom: 1px solid #dbe4d8;
  padding: 11px 10px;
}

.admin-orders-table td {
  border-bottom: 1px solid #eef3ec;
  padding: 11px 10px;
  color: #213228;
  font-size: 0.95rem;
}

.admin-status {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: capitalize;
}

.admin-status-paid {
  background: #eaf8ef;
  border: 1px solid #c7e2d0;
  color: #196a35;
}

.admin-status-pending {
  background: #fff7da;
  border: 1px solid #e7d89f;
  color: #7d620c;
}

.admin-status-other {
  background: #f4f4f4;
  border: 1px solid #dddddd;
  color: #4f4f4f;
}

.admin-empty-state {
  display: none;
  margin-top: 14px;
  color: #5a6f63;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand-text {
    font-size: 1.3rem;
  }
}

@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 10px 12px;
    gap: 8px;
  }

  .header-left {
    gap: 10px;
  }

  .logo-area img {
    height: 40px;
  }

  .brand-text {
    font-size: 1.1rem;
  }

  .hamburger {
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: 999px;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.14);
  }

  nav ul {
    padding: 14px 14px 18px;
  }

  .checkout-page,
  .cart-page {
    margin: 20px auto;
    padding: 0 12px 28px;
  }

  .order-ref-box {
    padding: 0 12px;
  }

  .auth-shell {
    padding: 14px;
  }

  .auth-box {
    padding: 18px;
    border-radius: 20px;
  }

  .settings-page {
    margin: 20px auto 30px;
    padding: 0 12px;
  }

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

  .settings-security-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .settings-account-grid {
    grid-template-columns: 1fr;
  }

  .admin-page {
    margin: 20px auto 34px;
    padding: 0 12px;
  }

  .admin-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .product-list {
    grid-template-columns: 1fr;
  }

  .checkout-items,
  .checkout-summary {
    padding: 16px;
  }
}

/* =========================
   SHARED FOOTER
========================= */
.site-footer {
  margin-top: 48px;
  padding: 28px 18px;
  background: var(--primary-green);
  color: #ffffff;
  text-align: center;
}

.footer-text {
  margin-bottom: 8px;
  font-weight: 500;
}

.footer-contact {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
}

.footer-link {
  color: var(--accent-yellow);
  font-weight: 600;
}

.footer-link:hover {
  text-decoration: underline;
}
