@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
    --accent: #f97316;
    --accent-2: #0f172a;
    --text: #121826;
    --muted: #6b7280;
    --bg: #ffffff;
    --card: #ffffff;
    --card-alt: #f9fafb;
    --border: #e5e7eb;
    --shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
    --radius: 16px;
}

* { box-sizing: border-box; }
html, body {
    margin: 0;
    font-family: 'Manrope', 'Inter', system-ui, sans-serif;
    color: var(--text);
    background: #fff;
    width: 100%;
    overflow-x: hidden;
}
main { width: 100%; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
    width: min(1200px, 94vw);
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}
.flex { display: flex; }
.between { justify-content: space-between; }
.center { align-items: center; }
.grid { display: grid; gap: 1.4rem; }
/* Prevent grid/flex children from forcing overflow */
.flex, .grid { min-width: 0; }

/* Header */
.topbar { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,0.96); border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.08); backdrop-filter: blur(8px); }
.main-bar { padding: 14px 0; }
.logo img { height: 70px; width: auto; display: block; object-fit: contain; }
.nav { display:flex; align-items:center; gap: 6px; }
.nav a { margin-left: 18px; font-weight: 600; transition: color .2s ease; color: var(--text); }
.nav a:hover { color: var(--accent); }
.nav .cta { padding: 10px 16px; background: var(--accent); color: #fff; border-radius: 12px; box-shadow: var(--shadow); }
.menu-toggle { display: none; border: 1px solid var(--border); background: transparent; color: var(--text); padding: 9px 12px; border-radius: 10px; gap:10px; align-items:center; }
.burger { display:inline-flex; flex-direction:column; gap:4px; width:18px; }
.burger span { display:block; height:2px; background: currentColor; border-radius: 6px; transition: transform .2s ease, opacity .2s ease; }
.menu-label { font-weight: 700; }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.32); backdrop-filter: blur(2px); z-index: 40; }

/* Hero */
.hero { position: relative; min-height: 78vh; display: flex; align-items: center; overflow: hidden; }
.hero-content {
    position: relative;
    z-index: 1;
    color: var(--text);
    max-width: 640px;
    padding: 32px 30px;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: var(--shadow);
}
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 56px); margin: 0 0 12px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.hero-tags { display:flex; gap:8px; flex-wrap:wrap; margin-top:12px; }
.hero .pill { background: #fff8f2; border-color: #ffe0c7; color: #b45309; }
.hero-new { border-bottom:1px solid var(--border); }
.hero-new::before {
    content:"";
    position:absolute;
    inset:0;
    background:url('../images/hero-spices.jpg');
    background-size: cover;
    background-position: center;
    filter: saturate(1.05);
    z-index:0;
}
.hero-new::after {
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(115deg, rgba(255,255,255,0.62) 0%, rgba(255,255,255,0.54) 40%, rgba(255,244,229,0.42) 70%, rgba(249,115,22,0.2) 100%);
    z-index:0;
}
.hero-new .container { position: relative; z-index: 1; }
.hero-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; align-items:center; }
.hero-visual { justify-content:flex-end; }
.hero-photo { position: relative; max-width: 520px; margin-left:auto; }
.hero-photo img { width:100%; object-fit: contain; border-radius: 26px; box-shadow: var(--shadow); border:1px solid var(--border); background:#fff; padding: 12px; }
.hero-photo::after {
    content:"";
    position:absolute;
    inset:16px;
    border-radius: 22px;
    border: 1px dashed rgba(255,255,255,0.4);
    pointer-events:none;
}
.floating-card {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    background: rgba(255,255,255,0.94);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 14px;
    color: var(--text);
    box-shadow: var(--shadow);
}
.contact-hero { padding: 32px 0 10px; min-height: auto; }
.contact-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 20px;
    width: min(640px, 100%);
}
.contact-form select {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    font-family: inherit;
}
.alert {
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 12px;
    font-weight: 700;
}
.alert.success { background: #ecfdf3; border:1px solid #bbf7d0; color:#166534; }
.alert.error { background: #fef2f2; border:1px solid #fecaca; color:#991b1b; }
.hero-card { background: #fff; border:1px solid var(--border); border-radius:20px; overflow:hidden; box-shadow: var(--shadow); max-width: 460px; }
.hero-card img { width: 100%; height: 240px; object-fit: cover; }
.hero-card-body { padding: 16px; color: var(--text); }
.hero-card-body h3 { margin: 8px 0; font-family:'Playfair Display', serif; }
.hero-card .mini-strip { display:flex; gap:6px; flex-wrap:wrap; margin-top:10px; }
.chip { display:inline-block; background: var(--accent); color:#fff; padding:8px 12px; border-radius: 999px; font-weight:700; position:absolute; top:12px; right:12px; box-shadow: var(--shadow); }
.glass { backdrop-filter: blur(6px); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 700;
    cursor: pointer;
}
.btn.primary { background: var(--accent); color: #fff; box-shadow: var(--shadow); }
.btn.ghost { background: #fff; color: var(--text); border-color: var(--border); }

/* Sections */
.section { padding: 48px 0; }
.section h2 { font-family: 'Playfair Display', serif; font-size: 28px; margin: 0 0 6px; }
.muted { color: var(--muted); }
.eyebrow { text-transform: uppercase; letter-spacing: 1px; font-weight: 700; color: var(--muted); font-size: 12px; margin: 0 0 4px; }
.section-head { max-width: 720px; margin-bottom: 18px; }
.section-head h2 { margin: 0 0 6px; }
.pill { display:inline-block; padding:8px 12px; border-radius:999px; border:1px solid var(--border); background:#fff; color:var(--text); font-weight:700; font-size: 13px; }
.pill.highlight { background: #fff4e5; border-color: #ffd7a8; color: #b45309; }
.pill.highlight.soft { background:#eef2ff; border-color:#c7d2fe; color:#4338ca; }
.stat-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap:10px; margin-top:18px; }
.stat-card { padding:12px; border:1px solid var(--border); background: #fff; border-radius:14px; color: var(--text); text-align:center; box-shadow: var(--shadow); }
.stat-value { margin:0; font-size:20px; font-weight:800; color: var(--accent-2); }

/* Products */
.products-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.products-grid .product-card { max-width: 420px; margin: 0 auto; }
.product-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); color: var(--text); }
.product-card img { height: 240px; width: 100%; object-fit: cover; }
.product-card .pad { padding: 14px; }
.product-card h3 { margin: 10px 0 6px; font-family: 'Playfair Display', serif; }
.price-row { color: var(--accent); font-weight: 700; }
.badge-card { position: relative; }
.badge { position:absolute; top:12px; left:12px; background:#111; color:#fff; padding:6px 10px; border-radius:10px; font-size:12px; font-weight:700; box-shadow: var(--shadow); }
.featured-grid .product-card img { height: 240px; }

.size-strip { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.size-pill { padding: 6px 10px; border-radius: 20px; border: 1px solid var(--border); font-size: 13px; color: var(--muted); }

/* Image slider */
.image-slider {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--border);
    aspect-ratio: 4 / 3;
}
.products-grid .image-slider {
    height: 240px;
    aspect-ratio: auto;
    border: 0;
    border-radius: 16px 16px 0 0;
}
.image-slider .slides { position: relative; height: 100%; }
.image-slider .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .45s ease;
}
.image-slider .slide.active { opacity: 1; }
.image-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-slider .slide-prev,
.image-slider .slide-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    color: #fff;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 18px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}
.image-slider .slide-prev { left: 10px; }
.image-slider .slide-next { right: 10px; }
.image-slider .slide-dots {
    position: absolute;
    display: flex;
    gap: 6px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
}
.image-slider .slide-dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.6);
    padding: 0;
    cursor: pointer;
    transition: all .2s ease;
}
.image-slider .slide-dots button.active {
    background: var(--accent);
    border-color: var(--accent);
}
.hero-photo.image-slider {
    max-width: 520px;
    margin-left: auto;
    aspect-ratio: 4 / 5;
    padding: 12px;
    box-shadow: var(--shadow);
}
.hero-photo.image-slider .slides { border-radius: 16px; overflow: hidden; }
.prod-main.image-slider {
    padding: 10px;
    aspect-ratio: 3 / 4;
    position: sticky;
    top: 96px;
}
.prod-main.image-slider .slide { border-radius: 12px; overflow: hidden; }

/* About/Banners */
.band { background: #fff; border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow); padding: 20px; }
.band img { border-radius: 14px; }

/* Compare table */
.compare-table {
    border-radius:18px;
    overflow:hidden;
    background:#fff;
    box-shadow: var(--shadow);
    border:1px solid var(--border);
}
.compare-row {
    display:grid;
    grid-template-columns: 1.05fr 1fr 1fr;
    border-bottom:1px solid var(--border);
}
.compare-row:last-child { border-bottom:0; }
.compare-row > div {
    padding:14px 16px;
    border-right:1px solid var(--border);
    font-size:14px;
    color: var(--muted);
    background:#fff;
    display:flex;
    gap:8px;
    align-items:flex-start;
}
.compare-row > div:last-child { border-right:0; }
.compare-head {
    background:#0f172a;
    color:#fff;
    text-transform:uppercase;
    font-weight:800;
    letter-spacing:0.4px;
}
.compare-label {
    font-weight:800;
    color: var(--text);
}
.compare-bad {
    color:#b91c1c;
    font-weight:700;
}
.compare-good {
    color: var(--accent);
    font-weight:700;
}
.compare-note {
    color: var(--muted);
    font-size:13px;
}
.compare-row:nth-child(odd) > div { background:#fffdf8; }
.compare-row:nth-child(even) > div { background:#f8fffb; }
.compare-row:nth-child(1) > div { background:#f97316; color:#fff; border-color: rgba(255,255,255,0.08); }
.compare-row:nth-child(1) .compare-note,
.compare-row:nth-child(1) .compare-label { color:#fff; }

/* Product detail - Dailyfarmer-like */
.product-wrap { display:grid; grid-template-columns: 0.32fr 1fr 0.9fr; gap: 1.2rem; align-items:start; }
.thumb-column { display:flex; flex-direction:column; gap:10px; position: sticky; top:100px; }
.thumb-column img { width:100%; max-width:150px; height:120px; object-fit:cover; border:2px solid var(--border); border-radius:12px; cursor:pointer; transition: border-color .2s ease; }
.thumb-column img.active { border-color: var(--accent); }
.prod-main { background:#fff; border:1px solid var(--border); border-radius:16px; box-shadow: var(--shadow); padding:10px; text-align:center; }
.prod-main img { width:100%; border-radius:12px; object-fit:cover; max-height:640px; }
.prod-info { background:#fff; border:1px solid var(--border); border-radius:16px; box-shadow: var(--shadow); padding:18px; }
.prod-info h1 { font-family:'Playfair Display',serif; margin:0 0 6px; }
.prod-meta { display:flex; gap:8px; flex-wrap:wrap; margin:8px 0 12px; }
.prod-meta .pill { background:#fff7ed; border-radius: 20px; font-size: 11px; padding: 5px; color: var(--accent); border:1px solid #ffe6c7; box-shadow: inset 0 1px 0 rgba(0,0,0,0.02); }
.offer-banner { background:#fff4e5; border:1px solid #ffd7a8; color:#7a4b1a; border-radius:12px; padding:10px 12px; margin-bottom:12px; font-weight:600; }
.delivery-row { display:flex; gap:12px; align-items:center; color: var(--muted); font-size:14px; margin:8px 0 14px; flex-wrap:wrap; }
.size-options { display:flex; gap:10px; margin:14px 0 10px; flex-wrap:wrap; }
.size-btn { padding:10px 14px; border-radius:12px; border:1px solid var(--border); background:#fff; color:var(--text); cursor:pointer; }
.size-btn.active { background: var(--accent); color:#fff; border-color: var(--accent); }
.prod-actions { display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
.trust-strip { display:grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap:10px; margin-top:14px; }
.trust-item { display:flex; gap:8px; align-items:center; padding:10px; border:1px solid var(--border); border-radius:12px; background:#f9fafb; color:var(--muted); }
.accordion { border-top:1px solid var(--border); }
.acc-item { border-bottom:1px solid var(--border); }
.acc-head { display:flex; justify-content:space-between; align-items:center; cursor:pointer; padding:12px 0; font-weight:700; }
.acc-body { display:none; padding:0 0 12px 0; color:var(--muted); line-height:1.6; }
.acc-item.open .acc-body { display:block; }
.acc-item .acc-toggle { font-size:18px; }
.prod-panels { display:grid; grid-template-columns: 1fr 1fr; gap:12px; margin-top:16px; }
.panel { padding:12px; border:1px solid var(--border); border-radius:12px; background:#f9fafb; color:var(--muted); }
.benefit-bar { display:grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap:12px; margin:12px 0 6px; }
.benefit-item { display:flex; gap:10px; align-items:center; padding:10px; border-radius:12px; background:#f9fafb; border:1px solid var(--border); font-weight:700; }
.benefit-item img { width:36px; height:36px; object-fit:contain; }

.faq, .reviews { background:#fff; border:1px solid var(--border); border-radius:16px; box-shadow: var(--shadow); padding:16px; }
.faq-item { padding:10px 0; border-bottom:1px solid var(--border); }
.faq-item:last-child { border-bottom:0; }
.faq-q { font-weight:700; }
.faq-a { color: var(--muted); margin-top:4px; }
.review-card { padding:12px; border:1px solid var(--border); border-radius:12px; background:#fff; margin-bottom:10px; box-shadow: 0 4px 14px rgba(0,0,0,0.05); }
.review-meta { color: var(--muted); font-size:13px; margin-top:4px; }

/* Info strip */
.info-strip {
    /* background: linear-gradient(135deg, #fff8f2 0%, #fff 55%, #fff7ed 100%); */
    color: var(--text);
    padding: 30px 0;
    border-top: 1px solid #ffe0c7;
    border-bottom: 1px solid #ffe0c7;
}
.info-grid { display:grid; gap:14px; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); }
.info-card {
    display:flex;
    gap:12px;
    align-items:flex-start;
    padding:16px;
    border-radius:16px;
    border:1px solid #ffe0c7;
    background: #fff;
    box-shadow: 0 18px 38px rgba(249,115,22,0.08);
}
.info-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 22px;
    background: radial-gradient(circle at 30% 20%, #fff4e5, #ffe0c7);
    color: #b45309;
    border: 1px solid rgba(180, 83, 9, 0.15);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.info-card p { margin: 0; color: var(--muted); }
.info-card .eyebrow { color: #b45309; letter-spacing: 0.5px; }

/* Honey layout */
.honey-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    align-items: stretch;
}
.honey-layout .products-grid {
    grid-column: span 1;
}
@media(min-width: 960px){
  .honey-layout {
      grid-template-columns: 1fr 1.2fr 1fr;
  }
  .honey-layout .products-grid {
      grid-column: 2 / 3;
  }
}
.benefit-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadow);
}
.benefit-card h3 { margin: 4px 0 8px; font-family:'Playfair Display', serif; }
.benefit-card ul { margin: 8px 0 0 18px; padding: 0; }
.benefit-card li { margin: 4px 0; }
.benefit-card.honey { background: linear-gradient(135deg, #fff8f2 0%, #fff 60%); }
.benefit-card.honey.secondary { background: linear-gradient(135deg, #fdf2f8 0%, #fff 60%); }

/* Category cards */
.category-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.category-card { position: relative; overflow:hidden; border:1px solid var(--border); border-radius:18px; padding:16px; background:#fff; box-shadow: var(--shadow); display:grid; gap:10px; min-height: 260px; }
.category-card img { position:absolute; right:-6px; bottom:-6px; width:160px; opacity:0.18; filter: saturate(0.9); }
.category-card h3 { margin: 6px 0; font-family:'Playfair Display', serif; }
.card-footer { display:flex; align-items:center; gap:8px; font-weight:700; color: var(--accent); }
.card-footer .arrow { font-size: 18px; }

/* Pack chooser */
.pack-grid { grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); }
.pack-card { background:#fff; border:1px solid var(--border); border-radius:18px; padding:16px; color:var(--text); box-shadow: var(--shadow); }
.pack-card.featured { border-color: var(--accent); box-shadow: 0 20px 50px rgba(249,115,22,0.18); }
.pack-card h3 { margin: 8px 0; font-family:'Playfair Display', serif; }
.pack-list { margin: 10px 0 14px; padding-left: 18px; color: var(--muted); }
.pack-list li { margin: 4px 0; }
.btn.full { width: 100%; text-align: center; }

@media(max-width:900px){
  .product-wrap { grid-template-columns: 1fr; }
  .prod-main { position: static; }
  .hero { min-height: auto; padding: 32px 0; }
  .hero-content { padding: 22px 20px; }
  .hero-photo img { height: 280px; }
  .floating-card { position: relative; left:0; right:0; bottom:0; margin-top: -36px; }
  /* band section inline grid override */
  .band { display: grid; grid-template-columns: 1fr !important; gap: 16px; }
}

@media(max-width:760px){
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding: 28px 0; }
  /* Hide home hero visual on mobile, keep forms visible on contact/bulk pages */
  .hero:not(.contact-hero) .hero-visual { display: none; }
  .floating-card { margin-top: 0; }
  .section { padding: 38px 0; }
  .section-head { margin-bottom: 14px; }
  .band img { width: 100%; }
  /* Keep form column visible on contact/bulk pages */
  .contact-hero .hero-visual { display: block; }
  .contact-hero .hero-grid { grid-template-columns: 1fr; }
  .contact-hero .contact-card { margin-top: 14px; }
}

/* Floating WhatsApp */
.whatsapp-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
    z-index: 40;
}
.whatsapp-fab svg { width: 28px; height: 28px; }

@media (max-width: 760px) {
    .whatsapp-fab { display: none; }
}

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 32px 0 18px; background: #f9fafb; color: var(--text); }
.footer-grid { display: grid; gap: 3.2rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.footer h4 { margin: 0 0 8px; font-size: 15px; letter-spacing: .4px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer-bottom { margin-top: 10px; border-top: 1px solid var(--border); padding-top: 10px; color: var(--muted); font-size: 14px; }

/* Admin */
.admin-shell { padding: 26px; background: var(--bg); color: var(--text); min-height: 100vh; }
.admin-layout { display: grid; grid-template-columns: 240px 1fr; gap: 20px; align-items: start; }
.admin-sidebar {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 90px;
}
.admin-sidebar h3 { margin: 0 0 10px; font-size: 16px; letter-spacing: 0.3px; }
.admin-nav { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.admin-nav a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #f9fafb;
    color: var(--text);
    font-weight: 600;
}
.admin-nav a:hover { border-color: var(--accent); color: var(--accent); }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.badge-admin { display:inline-block; padding:6px 10px; border-radius:10px; background:rgba(255,102,0,0.12); color:var(--accent); font-weight:700; font-size:13px; }
.admin-content { display: grid; gap: 18px; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 12px; }
.form-field {
    position: relative;
    display: grid;
    gap: 6px;
}
.form-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
}
.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    font-family: inherit;
    box-shadow: inset 0 1px 0 rgba(0,0,0,0.02);
}
.form-field textarea { min-height: 120px; }
.input-hint { font-size: 12px; color: var(--muted); }

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99;
}
.modal.open { display: flex; }
.modal-card {
    background: #fff;
    color: var(--text);
    width: min(720px, 94vw);
    max-height: 90vh;
    overflow: auto;
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow);
    position: relative;
}
.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: 0;
    font-size: 20px;
    cursor: pointer;
}
.table { width: 100%; border-collapse: collapse; color: var(--text); }
.table th, .table td { border-bottom: 1px solid var(--border); padding: 10px; text-align: left; }
.table th { color: var(--muted); font-weight: 600; }

@media (max-width: 900px) {
    body.nav-open { overflow: hidden; }
    .menu-toggle { display: flex; align-items: center; gap: 8px; }
    body.nav-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    body.nav-open .burger span:nth-child(2) { opacity: 0; }
    body.nav-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .nav {
        display: flex;
        flex-direction: column;
        gap: 6px;
        position: fixed;
        top: 0;
        right: 0;
        width: min(360px, 82vw);
        height: 100vh;
        background: #fff;
        padding: 88px 22px 24px;
        box-shadow: -12px 0 36px rgba(0,0,0,0.18);
        transition: transform .3s ease, opacity .3s ease;
        transform: translateX(110%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 50;
    }
    .nav.open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .nav a { margin: 0; padding: 12px 0; border-bottom: 1px solid var(--border); }
    .nav a:last-child { border-bottom: 0; }
    .nav .cta { margin-top: 10px; text-align: center; }
    .nav-overlay.show { display: block; }
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { position: static; }
}

@media (max-width: 760px) {
    .product-wrap { grid-template-columns: 1fr; }
    .thumb-column { position: static; flex-direction: row; overflow-x: auto; gap: 10px; padding-bottom: 6px; }
    .thumb-column img { flex: 0 0 90px; max-width: 90px; height: 90px; }
    .prod-main.image-slider { position: relative; top: auto; aspect-ratio: 1 / 1; }
    .prod-info { padding: 14px; }
    .size-options { gap: 8px; }
    .prod-actions {
        position: sticky;
        bottom: 0;
        background: #fff;
        padding: 12px;
        margin: 14px 0 0;
        border-top: 1px solid var(--border);
        box-shadow: 0 -10px 28px rgba(0,0,0,0.12);
        border-radius: 0 0 12px 12px;
    }
    .benefit-bar { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
    .product-extra { grid-template-columns: 1fr !important; }
}
