/* Srimitra Plant Based Food — Verdant warm-cream theme · Ottolenghi-style typography */
:root {
  --bg: #f3ede0;             /* warm linen */
  --surface: #ebe2cd;        /* kraft paper */
  --surface-2: #d9cdb0;
  --ink: #1e2a22;            /* deep forest ink */
  --green: #4f6b3d;          /* warm olive moss */
  --green-deep: #36502d;
  --rust: #a85432;           /* terracotta accent */
  --rust-deep: #823f24;
  --text: #1e2a22;
  --text-muted: #6a6358;
  --border: rgba(30, 42, 34, 0.16);
  --gold: #4f6b3d;
  --gold-soft: #6a8252;
  --wine: #a85432;
  --wine-deep: #823f24;
  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(168,84,50,0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(47,74,54,0.08), transparent 60%),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.005em;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--green); color: var(--bg); }

/* Ottolenghi-style serif headings via Fraunces (variable font, opsz + soft contrast) */
.font-serif, h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 96, "SOFT" 50;
  letter-spacing: -0.018em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); line-height: 0.98; margin: 0 0 1rem; font-weight: 300; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.05; margin: 0 0 1rem; font-weight: 400; }
h3 { font-size: 1.55rem; margin: 0 0 0.6rem; font-weight: 500; line-height: 1.15; }
p  { line-height: 1.65; font-size: 1rem; }
.muted { color: var(--text-muted); }
.muted-sm { color: var(--text-muted); font-size: 0.85rem; }
.overline {
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--rust);
  font-weight: 600;
  margin-bottom: 0.6rem;
  display: block;
}

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; backdrop-filter: blur(20px); background: rgba(243,237,224,0.88); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1200px; margin: 0 auto; height: 76px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 0; }
.brand-logo { width: 52px; height: 52px; object-fit: contain; border-radius: 50%; flex-shrink: 0; box-shadow: 0 2px 12px rgba(30,42,34,0.18); }
.brand-text { display: inline-flex; align-items: baseline; gap: 10px; min-width: 0; }
.brand-text span { font-family: var(--serif); font-size: 1.7rem; color: var(--green); font-weight: 500; font-variation-settings: "opsz" 36; }
.brand-text small { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.32em; color: var(--text-muted); white-space: nowrap; }
.nav-links { display: none; gap: 32px; }
.nav-links a { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.24em; color: var(--text); transition: color 0.3s; font-weight: 500; }
.nav-links a:hover, .nav-links a.active { color: var(--rust); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.cart-btn { position: relative; color: var(--text); display: inline-flex; align-items: center; }
.cart-btn:hover { color: var(--rust); }
.cart-bubble { position: absolute; top: -8px; right: -8px; background: var(--rust); color: #fff; border-radius: 50%; width: 18px; height: 18px; font-size: 10px; font-weight: 600; display: flex; align-items: center; justify-content: center; }
.link-sm { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.24em; color: var(--text); font-weight: 500; }
.link-sm:hover { color: var(--rust); }

/* Hamburger button */
.nav-burger { background: none; border: 0; padding: 8px; cursor: pointer; display: inline-flex; flex-direction: column; gap: 5px; }
.nav-burger span { display: block; width: 24px; height: 1.5px; background: var(--ink); transition: transform 0.3s, opacity 0.3s; }
.nav-burger:hover span { background: var(--rust); }

@media (min-width: 880px) {
  .nav-links { display: flex; }
  .hide-md { display: inline; }
  .nav-burger { display: none; }
  .brand-text small { display: inline; }
}
@media (max-width: 879px) {
  .hide-sm { display: none; }
  .brand-text small { display: none; }
}
@media (max-width: 520px) {
  .nav-inner { padding: 0 16px; height: 68px; gap: 8px; }
  .brand-logo { width: 42px; height: 42px; }
  .brand-text span { font-size: 1.4rem; }
}

/* Full-screen overlay menu */
.nav-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: linear-gradient(160deg, var(--green-deep) 0%, var(--green) 60%, #2a3a2c 100%);
  color: #f3ede0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.45s ease, visibility 0s 0.45s linear;
  display: flex; flex-direction: column; padding: 96px 40px 48px;
}
.nav-overlay.open { opacity: 1; visibility: visible; transition: opacity 0.45s ease; }
.nav-overlay::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(800px 600px at 110% -10%, rgba(168,84,50,0.20), transparent 60%),
              radial-gradient(600px 400px at -10% 110%, rgba(243,237,224,0.06), transparent 60%);
  pointer-events: none;
}
.nav-overlay-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: 0; color: #f3ede0; font-size: 2.6rem; line-height: 1;
  cursor: pointer; padding: 8px 12px; transition: color 0.3s, transform 0.3s;
}
.nav-overlay-close:hover { color: #e6c9b3; transform: rotate(90deg); }
.nav-overlay-links {
  display: flex; flex-direction: column; gap: 4px;
  max-width: 600px; margin: auto 0;
  position: relative; z-index: 1;
}
.nav-overlay-links a {
  font-family: var(--serif); font-weight: 300; font-variation-settings: "opsz" 120;
  font-size: clamp(2.4rem, 8vw, 4.4rem); line-height: 1.05; letter-spacing: -0.02em;
  color: #f3ede0;
  padding: 8px 0;
  display: flex; align-items: baseline; gap: 18px;
  border-bottom: 1px solid rgba(243,237,224,0.12);
  transition: color 0.3s, padding-left 0.3s, border-color 0.3s;
  opacity: 0; transform: translateY(20px);
}
.nav-overlay.open .nav-overlay-links a { animation: navItemIn 0.6s cubic-bezier(.2,.7,.2,1) forwards; }
.nav-overlay-links a:nth-child(1){ animation-delay: 0.08s; }
.nav-overlay-links a:nth-child(2){ animation-delay: 0.14s; }
.nav-overlay-links a:nth-child(3){ animation-delay: 0.20s; }
.nav-overlay-links a:nth-child(4){ animation-delay: 0.26s; }
.nav-overlay-links a:nth-child(5){ animation-delay: 0.32s; }
@keyframes navItemIn { to { opacity: 1; transform: translateY(0); } }
.nav-overlay-links a:hover, .nav-overlay-links a.active {
  color: #e6c9b3; padding-left: 14px; border-bottom-color: rgba(232,201,179,0.4);
}
.nav-overlay-links a span {
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.3em;
  color: rgba(232,201,179,0.7); font-weight: 600;
}
.nav-overlay-foot {
  display: flex; gap: 28px; flex-wrap: wrap;
  font-family: var(--sans); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.24em;
  color: rgba(243,237,224,0.7); padding-top: 24px; border-top: 1px solid rgba(243,237,224,0.12);
  position: relative; z-index: 1;
}
.nav-overlay-foot a { transition: color 0.3s; }
.nav-overlay-foot a:hover { color: #e6c9b3; }

/* Layout */
main { padding-top: 76px; min-height: calc(100vh - 200px); }
.section { padding: 96px 24px; max-width: 1200px; margin: 0 auto; }
.section-tight { padding: 64px 24px; max-width: 900px; margin: 0 auto; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--green), transparent); opacity: 0.35; margin: 36px 0; }
@media (max-width: 720px) {
  main { padding-top: 68px; }
  .section { padding: 56px 18px; }
  .section-tight { padding: 40px 18px; }
}

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; font-family: var(--sans); font-size: 0.74rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.24em; border-radius: 0; border: 1px solid var(--green); background: var(--green); color: #f3ede0; cursor: pointer; transition: background 0.3s, transform 0.3s; }
.btn:hover { background: var(--green-deep); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-outline { background: transparent; border-color: var(--rust); color: var(--rust); font-weight: 600; }
.btn-outline:hover { background: var(--rust); color: #fff; }
.btn-sm { padding: 10px 20px; font-size: 0.68rem; }
.btn-block { display: flex; width: 100%; }

/* Inputs */
.input, select.input, textarea.input {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 12px 14px;
  width: 100%;
  font-family: var(--sans);
  outline: none;
  letter-spacing: 0.01em;
  font-size: 0.96rem;
  border-radius: 2px;
}
.input:focus { border-color: var(--green); }
.input::placeholder { color: var(--text-muted); }
select.input { background: #fff; }
textarea.input { resize: vertical; min-height: 100px; }
label { display: block; }
input[type="file"].input { padding: 6px; }

/* Hero — Ottolenghi-style with strong gradient overlay for legibility */
.hero { position: relative; height: 100vh; min-height: 560px; max-height: 880px; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.6s ease-in-out; }
.hero-slide img, .hero-slide video { width: 100%; height: 100%; object-fit: cover; animation: kenburns 22s ease-in-out infinite alternate; }
.hero-slide.active { opacity: 1; }
@keyframes kenburns { from { transform: scale(1.05); } to { transform: scale(1.18) translate(-1.5%, -1.5%); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,28,22,0.30) 0%, rgba(20,28,22,0.55) 55%, rgba(20,28,22,0.88) 100%),
    linear-gradient(90deg, rgba(20,28,22,0.45) 0%, rgba(20,28,22,0.10) 50%);
}
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; height: 100%; padding: 0 24px 110px; display: flex; flex-direction: column; justify-content: flex-end; color: #f3ede0; }
.hero-content h1 { color: #fbf7ec; font-weight: 300; letter-spacing: -0.02em; text-shadow: 0 2px 30px rgba(0,0,0,0.25); }
.hero-content .overline { color: #e6c9b3; }
.hero-content .muted { color: rgba(251,247,236,0.86); }
.hero-cta { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-cap { position: absolute; right: 24px; bottom: 110px; z-index: 2; max-width: 280px; text-align: right; font-style: italic; font-family: var(--serif); font-size: 1.2rem; color: #f3ede0; }
@media (max-width: 720px) {
  .hero { height: 88vh; min-height: 520px; }
  .hero-content { padding: 0 18px 64px; }
  .hero-cap { display: none; }
}

/* Cards */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.card { background: #fffaf0; border: 1px solid var(--border); transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s; display: block; }
.card:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: 0 12px 32px rgba(30,42,34,0.08); }
.card img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.card-body { padding: 22px 22px 24px; }
.card-cat { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--rust); margin-bottom: 8px; font-weight: 600; }
.card-title { font-family: var(--serif); font-size: 1.45rem; line-height: 1.2; margin: 0 0 8px; color: var(--ink); font-weight: 500; font-variation-settings: "opsz" 36; }
.card-blurb { color: var(--text-muted); font-size: 0.9rem; margin: 0 0 16px; }
.card-price { font-family: var(--serif); font-size: 1.35rem; color: var(--green); font-weight: 500; font-variation-settings: "opsz" 36; }

/* Forms / panels */
.panel { background: #fffaf0; border: 1px solid var(--border); padding: 32px; }
.flash { padding: 14px 24px; text-align: center; font-size: 0.92rem; }
.flash-ok { background: rgba(47,74,54,0.10); color: var(--green); border-bottom: 1px solid var(--green); }
.flash-err { background: rgba(168,84,50,0.10); color: var(--rust-deep); border-bottom: 1px solid var(--rust); }

/* Tabs */
.tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.tab { padding: 10px 20px; border: 1px solid var(--border); background: #fffaf0; color: var(--text); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.24em; cursor: pointer; font-family: var(--sans); font-weight: 500; }
.tab.active { background: var(--green); color: #f3ede0; border-color: var(--green); }
.tab a { color: inherit; display: block; }

/* Tables */
.table { width: 100%; border-collapse: collapse; }
.table th { text-align: left; padding: 12px 8px; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.24em; color: var(--text-muted); font-weight: 600; }
.table td { padding: 16px 8px; border-top: 1px solid var(--border); font-size: 0.9rem; vertical-align: top; }
.badge { display: inline-block; padding: 4px 10px; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.22em; border: 1px solid var(--border); background: #fffaf0; font-weight: 600; }
.badge-gold { background: var(--green); color: #f3ede0; border-color: var(--green); }
.badge-wine { background: var(--rust); color: #fff; border-color: var(--rust); }

/* Recipe player */
.video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #000; }
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* PIN display */
.pin-card { text-align: center; padding: 64px 32px; background: #fffaf0; border: 2px solid var(--green); }
.pin-number { font-family: var(--serif); font-size: clamp(4rem, 10vw, 7rem); color: var(--rust); letter-spacing: 0.5rem; margin: 24px 0; font-weight: 500; }

/* FAQ accordion */
.faq-item { border-top: 1px solid var(--border); }
.faq-item summary { padding: 24px 0; cursor: pointer; font-family: var(--serif); font-size: 1.4rem; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--ink); font-weight: 500; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.6rem; color: var(--rust); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { color: var(--text-muted); padding-bottom: 24px; }

/* Footer */
.site-footer { margin-top: 100px; padding: 80px 24px 32px; background: var(--surface); border-top: 1px solid var(--border); }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1.4fr; gap: 56px; }
.footer-brand-row { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.footer-logo { width: 64px; height: 64px; object-fit: contain; border-radius: 50%; box-shadow: 0 2px 14px rgba(30,42,34,0.18); flex-shrink: 0; }
.footer-brandname { font-family: var(--serif); font-size: 1.8rem; color: var(--green); margin: 0; font-weight: 500; letter-spacing: -0.01em; }
.footer-brandsub { font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text-muted); margin: 4px 0 0; font-weight: 500; }
.footer-tag { color: var(--text-muted); font-size: 0.94rem; line-height: 1.65; max-width: 380px; }
.footer-col ul { list-style: none; padding: 0; margin: 16px 0 0; }
.footer-col ul li { padding: 6px 0; font-size: 0.92rem; }
.footer-col ul li a { transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--rust); }
.footer-contact li { display: flex; gap: 14px; align-items: flex-start; padding: 8px 0 !important; color: var(--text); }
.footer-contact .footer-ico { color: var(--rust); font-size: 1.1rem; line-height: 1.4; min-width: 18px; }

.footer-social-wrap { max-width: 1200px; margin: 56px auto 0; padding-top: 36px; border-top: 1px solid var(--border); }
.footer-socials { list-style: none; padding: 0; margin: 12px 0 0; display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.footer-socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--green); background: #fffaf0;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
}
.footer-socials a:hover { background: var(--green); color: #fffaf0; border-color: var(--green); transform: translateY(-2px); }

.footer-bottom {
  max-width: 1200px; margin: 36px auto 0; padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.72rem; letter-spacing: 0.22em; color: var(--text-muted); text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
.footer-bottom-links { display: inline-flex; gap: 22px; }
.footer-bottom-links a:hover { color: var(--rust); }

@media (max-width: 760px) {
  .site-footer { padding: 56px 18px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-social-wrap { margin-top: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 14px; }
}

/* Utility */
.flex { display: flex; gap: 16px; align-items: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.text-center { text-align: center; }
.mt-2 { margin-top: 8px; } .mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; } .mb-6 { margin-bottom: 24px; } .mb-8 { margin-bottom: 32px; }

/* ===== Slim promo banner (managed via Admin → Promo Banner) ===== */
.promo-banner {
  position: relative;
  width: 100%;
  height: 240px;             /* slim — about a third of the main hero */
  overflow: hidden;
  background: #1c2a22;
  margin: 0;
}
.promo-banner .promo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: block;
  text-decoration: none;
  color: #fbf7ec;
}
.promo-banner .promo-slide.active { opacity: 1; }
.promo-banner .promo-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease-out;
}
.promo-banner .promo-slide.active img { transform: scale(1.04); }
.promo-banner .promo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,28,22,0.55) 0%, rgba(20,28,22,0.10) 60%, rgba(20,28,22,0) 100%);
  pointer-events: none;
}
.promo-banner .promo-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex; align-items: center;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  pointer-events: none;
}
.promo-banner .promo-caption span {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.4vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #fbf7ec;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
  max-width: 600px;
}
a.promo-slide { cursor: pointer; }
a.promo-slide:hover img { transform: scale(1.06); }
.promo-dots {
  position: absolute;
  right: 24px; bottom: 16px;
  display: inline-flex; gap: 8px;
  z-index: 2;
}
.promo-dot {
  display: inline-block;
  width: 28px; height: 3px;
  background: rgba(251,247,236,0.35);
  cursor: pointer;
  transition: background 0.3s;
}
.promo-dot.active { background: #fbf7ec; }
.promo-dot:hover { background: rgba(251,247,236,0.7); }
@media (max-width: 720px) {
  .promo-banner { height: 180px; }
  .promo-banner .promo-caption { padding: 0 20px; }
  .promo-dots { right: 14px; bottom: 12px; }
}

@media (max-width: 760px) {
  /* Cart + checkout columns collapse */
  .grid[style*="2fr 1fr"] { grid-template-columns: 1fr !important; gap: 32px !important; }
  /* Cart line items go vertical */
  .flex { flex-wrap: wrap; }
  .flex-between { flex-wrap: wrap; }
  /* Panel padding tightens */
  .panel { padding: 22px; }
  /* Buttons go block on small screens */
  .btn { padding: 12px 22px; font-size: 0.72rem; }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.4rem; line-height: 1.02; }
  .section { padding: 48px 16px; }
  .card-body { padding: 18px; }
  .footer-inner { gap: 28px; }
  /* Cart item: image left, content right wraps cleanly */
  .panel { padding: 18px; }
  .tabs { gap: 6px; }
  .tab { padding: 8px 14px; font-size: 0.62rem; letter-spacing: 0.2em; }
}

/* ===========================================================================
   Shop (products) + Product detail (PDP)
   Inspired by minimal grocery-store ecommerce — clean grid, prominent price,
   energetic quantity stepper, italic-labelled bullets.
   =========================================================================== */

.shop-wrap { max-width: 1320px; margin: 0 auto; padding: 40px 24px 96px; }

/* --- Toolbar --- */
.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.shop-toolbar-left { display: inline-flex; gap: 12px; flex-wrap: wrap; }
.shop-toolbar-right { display: inline-flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.shop-count { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
.shop-clear { font-size: 0.74rem; letter-spacing: 0.06em; color: var(--rust); font-weight: 600; padding: 8px 14px; border: 1px solid var(--rust); border-radius: 999px; transition: background 0.3s, color 0.3s; }
.shop-clear:hover { background: var(--rust); color: #fff; }

/* --- Dropdown filter --- */
.shop-dropdown { position: relative; }
.shop-dropdown summary {
  list-style: none;
  cursor: pointer;
  background: #fffaf0;
  border: 1px solid var(--border);
  padding: 12px 18px;
  display: inline-flex; align-items: center; gap: 12px;
  border-radius: 2px;
  min-width: 220px;
  transition: border-color 0.3s;
}
.shop-dropdown summary::-webkit-details-marker { display: none; }
.shop-dropdown[open] summary { border-color: var(--green); }
.shop-dd-label { font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
.shop-dd-value { flex: 1; font-family: var(--serif); font-size: 1rem; color: var(--ink); font-weight: 500; }
.shop-dd-arrow { color: var(--rust); font-size: 0.85rem; transition: transform 0.3s; }
.shop-dropdown[open] .shop-dd-arrow { transform: rotate(180deg); }
.shop-dropdown ul {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  z-index: 30;
  list-style: none; padding: 6px; margin: 0;
  background: #fffaf0;
  border: 1px solid var(--green);
  box-shadow: 0 16px 40px rgba(30,42,34,0.14);
  max-height: 360px; overflow-y: auto;
}
.shop-dropdown ul a {
  display: block;
  padding: 11px 14px;
  font-size: 0.92rem;
  color: var(--text);
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.shop-dropdown ul a:hover { background: rgba(75,103,65,0.08); color: var(--green); }
.shop-dropdown ul a.active { background: var(--green); color: #fffaf0; font-weight: 600; }

/* --- Active chips --- */
.shop-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.shop-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(168,84,50,0.10);
  color: var(--rust-deep);
  font-size: 0.78rem; letter-spacing: 0.04em; font-weight: 600;
  padding: 8px 14px;
  border: 1px solid rgba(168,84,50,0.4);
  border-radius: 999px;
  transition: background 0.3s;
}
.shop-chip:hover { background: rgba(168,84,50,0.20); }
.shop-chip span { font-size: 0.8rem; opacity: 0.7; }

/* --- Product grid --- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px 24px;
}
.shop-card {
  display: block;
  background: #fffaf0;
  border: 1px solid var(--border);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.shop-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 18px 36px rgba(30,42,34,0.08);
}
.shop-card-imgwrap {
  position: relative;
  background: #f3ede0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.shop-card-imgwrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.shop-card:hover .shop-card-imgwrap img { transform: scale(1.06); }
.shop-card-tag {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--sans);
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  padding: 5px 10px;
  background: var(--rust); color: #fff;
  border-radius: 999px;
}
.shop-card-tag.tag-new { background: var(--green); }
.shop-card-tag.tag-hot { background: var(--rust); }
.shop-card-tag.tag-out { background: #6a6358; left: auto; right: 12px; }
.shop-card-body { padding: 18px 18px 22px; text-align: center; }
.shop-card-cat { font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; margin: 0 0 8px; }
.shop-card-name {
  font-family: var(--serif);
  font-size: 1.15rem; font-weight: 500;
  line-height: 1.25; letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 10px;
  min-height: 2.5em;        /* keep card heights aligned in the grid */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.shop-card-price {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green);
  margin: 0;
}
.shop-card-mrp {
  font-family: var(--sans);
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 700;
  margin-right: 4px;
}

/* ============================== PDP ============================== */
.pdp { max-width: 1320px; margin: 0 auto; padding: 48px 24px 64px; }
.pdp-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: start; }

.pdp-gallery { position: sticky; top: 100px; }
.pdp-imgwrap { position: relative; background: #f3ede0; aspect-ratio: 1 / 1; overflow: hidden; }
.pdp-imgwrap img { width: 100%; height: 100%; object-fit: cover; }
.pdp-imgwrap .shop-card-tag { top: 18px; left: 18px; padding: 7px 14px; font-size: 0.66rem; }

.pdp-info { padding-top: 8px; }
.pdp-breadcrumb { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--text-muted); }
.pdp-breadcrumb a { color: var(--text-muted); transition: color 0.3s; }
.pdp-breadcrumb a:hover { color: var(--rust); }
.pdp-breadcrumb span { color: var(--text-muted); }

.pdp-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.pdp-weight { color: var(--text-muted); font-size: 0.95rem; margin: 6px 0 0; font-style: italic; }

.pdp-price-row { display: flex; align-items: baseline; gap: 14px; margin: 28px 0 8px; flex-wrap: wrap; }
.pdp-price {
  font-family: var(--serif); font-weight: 600;
  font-size: 1.9rem; color: var(--green); margin: 0;
  letter-spacing: -0.01em;
}
.pdp-mrp { font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; margin-right: 4px; }
.pdp-tax { font-size: 0.78rem; color: var(--text-muted); }

.pdp-soldout { margin: 24px 0; padding: 14px 18px; background: rgba(168,84,50,0.10); border-left: 3px solid var(--rust); color: var(--rust-deep); font-weight: 600; }

.pdp-buy { margin: 26px 0 36px; display: flex; flex-direction: column; gap: 14px; }

.pdp-qty {
  display: inline-flex; align-items: stretch; align-self: flex-start;
  border: 1px solid var(--border);
  background: #fffaf0;
}
.pdp-qty input {
  width: 60px; text-align: center;
  border: 0; background: transparent;
  font-family: var(--serif); font-size: 1.1rem; color: var(--ink);
  -moz-appearance: textfield;
}
.pdp-qty input::-webkit-outer-spin-button,
.pdp-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pdp-qty-btn {
  background: transparent; border: 0; cursor: pointer;
  width: 44px; height: 44px;
  font-size: 1.3rem; color: var(--ink); font-weight: 300;
  transition: background 0.2s;
}
.pdp-qty-btn:hover { background: rgba(75,103,65,0.08); color: var(--green); }

.pdp-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.pdp-add { flex: 1; min-width: 180px; background: transparent; color: var(--green); border-color: var(--green); }
.pdp-add:hover { background: var(--green); color: #fffaf0; }
.pdp-buynow { flex: 1; min-width: 180px; background: var(--rust); border-color: var(--rust); color: #fff; }
.pdp-buynow:hover { background: var(--rust-deep); border-color: var(--rust-deep); }

.pdp-section { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border); }
.pdp-h3 {
  font-family: var(--sans);
  font-size: 0.74rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--rust); font-weight: 700;
  margin: 0 0 18px;
}
.pdp-bullets { list-style: none; padding: 0; margin: 0; }
.pdp-bullets li {
  position: relative;
  padding: 10px 0 10px 22px;
  font-size: 1rem; line-height: 1.65; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.pdp-bullets li:last-child { border-bottom: 0; }
.pdp-bullets li::before {
  content: ''; position: absolute; left: 0; top: 22px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--rust);
}
.pdp-bullets li em { font-style: italic; color: var(--ink); font-weight: 600; }

.pdp-trust { display: flex; flex-wrap: wrap; gap: 10px; border-top: 1px solid var(--border); padding-top: 26px; }
.pdp-trust-pill {
  font-family: var(--sans);
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  color: var(--green);
  background: rgba(75,103,65,0.08);
  padding: 8px 14px;
  border-radius: 999px;
}

/* "You may also like" */
.pdp-related { max-width: 1320px; margin: 0 auto; padding: 24px 24px 96px; }
.pdp-related-h2 {
  font-family: var(--sans);
  font-size: 0.78rem; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin: 0 0 32px;
}

@media (max-width: 900px) {
  .shop-toolbar { padding: 12px 0; }
  .shop-dropdown summary { min-width: 180px; }
  .pdp-grid { grid-template-columns: 1fr; gap: 32px; }
  .pdp-gallery { position: static; }
}
@media (max-width: 520px) {
  .shop-wrap { padding: 24px 16px 64px; }
  .pdp { padding: 32px 16px 48px; }
  .shop-dropdown summary { min-width: 100%; }
  .shop-toolbar-left { width: 100%; }
  .shop-toolbar-right { width: 100%; justify-content: space-between; }
  .pdp-buttons { width: 100%; }
  .pdp-add, .pdp-buynow { min-width: 100%; }
}
