/* ============================================
   Brewoil — shared stylesheet (homepage + PDPs)
   Palette + typography locked to bottle aesthetic
   ============================================ */
:root {
  --cream: #F5EFE3;
  --cream-2: #EFE5D2;
  --cream-3: #F9F4EA;
  --espresso: #3D2817;
  --espresso-2: #5C3A1E;
  --olive: #7A8C3F;
  --olive-dark: #5D7A2E;
  --gold: #C9A04A;
  --gold-soft: #E0BD6C;
  --black: #111111;
  --muted: #8C7B66;
  --line: #E5DAC4;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--espresso);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; font-weight: 800; color: var(--espresso); margin: 0; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); line-height: 1.05; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); line-height: 1.1; }
h3 { font-size: 1.25rem; line-height: 1.3; }
p { margin: 0 0 1rem 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.script { font-family: 'Pinyon Script', cursive; font-weight: 400; color: var(--espresso); }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.gold-line { width: 60px; height: 1.5px; background: var(--gold); margin: 12px auto; }

/* Top promo strip */
.top-strip {
  background: var(--black); color: #fff; font-size: 13px; text-align: center;
  padding: 9px 24px; letter-spacing: 0.03em; font-weight: 500;
}
.top-strip span { margin: 0 18px; opacity: 0.85; }

/* Nav */
nav.main {
  background: var(--cream); border-bottom: 1px solid var(--line);
  padding: 18px 0; position: sticky; top: 0; z-index: 50;
}
nav.main .inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  background: var(--black); color: #fff;
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  letter-spacing: 0.12em; font-size: 22px;
  padding: 8px 16px; display: inline-flex; align-items: center;
}
.logo sup { font-size: 9px; font-weight: 700; margin-left: 2px; opacity: 0.9; }
nav.main ul { list-style: none; display: flex; gap: 32px; margin: 0; padding: 0; font-size: 15px; font-weight: 500; }
nav.main ul a { color: var(--espresso); transition: color .15s; }
nav.main ul a:hover { color: var(--olive-dark); }
.nav-icons { display: flex; gap: 14px; align-items: center; }
.icon-btn {
  width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: var(--cream-2); color: var(--espresso); font-weight: 700; font-size: 13px; cursor: pointer; border: none;
}
.icon-btn:hover { background: var(--gold-soft); }
.region-pill {
  background: var(--cream-3); border: 1px solid #D9CDB5; padding: 6px 12px; border-radius: 99px;
  font-size: 12px; font-weight: 600; color: var(--espresso); letter-spacing: 0.04em;
}

/* Breadcrumb */
.breadcrumb { padding: 18px 0; font-size: 13px; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--olive-dark); }
.breadcrumb .sep { margin: 0 8px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--black); color: #fff; padding: 16px 28px; font-weight: 700; letter-spacing: 0.04em; font-size: 14px;
  border: 2px solid var(--black); cursor: pointer; transition: all .2s; text-transform: uppercase;
}
.btn:hover { background: var(--espresso); border-color: var(--espresso); }
.btn.ghost { background: transparent; color: var(--espresso); }
.btn.ghost:hover { background: var(--espresso); color: #fff; }

/* Section base */
section { padding: 80px 0; }
.section-head { text-align: center; margin-bottom: 50px; max-width: 720px; margin-inline: auto; }
.section-head .eyebrow {
  font-size: 12px; letter-spacing: 0.3em; font-weight: 600; color: var(--olive-dark); text-transform: uppercase; margin-bottom: 8px;
}
.section-head .script { font-size: 2.4rem; display: block; margin: 0; }
.section-head h2 { margin-top: 4px; }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }

/* PDP — gallery + info */
.pdp { padding: 8px 0 80px; }
.pdp-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start; }
.gallery .main-img {
  background: linear-gradient(135deg, var(--cream-3) 0%, var(--cream-2) 100%);
  aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center;
  padding: 30px; margin-bottom: 14px;
}
.gallery .main-img img { max-height: 100%; max-width: 70%; }
.thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.thumb {
  aspect-ratio: 1/1; background: var(--cream-3);
  display: flex; align-items: center; justify-content: center; padding: 6px;
  cursor: pointer; border: 2px solid transparent; transition: all .15s;
}
.thumb:hover, .thumb.active { border-color: var(--gold); }
.thumb img { max-height: 100%; max-width: 100%; }

.pdp-info .category { font-size: 12px; letter-spacing: 0.22em; color: var(--olive-dark); text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.pdp-info h1 { font-size: 2.4rem; margin-bottom: 10px; }
.pdp-info .latin { font-style: italic; color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }
.badges-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 14px 0 20px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px;
  background: #fff; border: 1px solid var(--line);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--olive); }
.price-row { display: flex; align-items: baseline; gap: 14px; margin: 18px 0; }
.price-now { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 2rem; color: var(--espresso); }
.price-was { text-decoration: line-through; color: var(--muted); font-size: 1.2rem; }
.save { background: var(--olive); color: #fff; padding: 4px 10px; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; }

.pack-section { margin: 24px 0; }
.pack-section label { display: block; font-size: 12px; letter-spacing: 0.18em; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; color: var(--espresso); }
.pack-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.pack {
  border: 2px solid var(--line); background: #fff; padding: 14px 8px;
  text-align: center; cursor: pointer; transition: all .15s; position: relative;
}
.pack:hover { border-color: var(--gold); }
.pack.active { border-color: var(--espresso); background: var(--cream-3); }
.pack .vol { font-weight: 800; font-size: 1.05rem; }
.pack .per { font-size: 11px; color: var(--muted); margin-top: 4px; }
.pack .save-tag {
  position: absolute; top: -10px; right: -6px;
  background: var(--gold); color: var(--espresso); padding: 2px 8px; font-size: 10px; font-weight: 800;
}

.qty-row { display: flex; gap: 12px; margin: 16px 0 22px; align-items: stretch; }
.qty { display: inline-flex; border: 1.5px solid var(--espresso); }
.qty button { width: 44px; height: 52px; background: #fff; border: none; cursor: pointer; font-size: 18px; font-weight: 700; color: var(--espresso); }
.qty .val { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; background: #fff; border-left: 1.5px solid var(--espresso); border-right: 1.5px solid var(--espresso); }
.add-cart { background: var(--black); color: #fff; border: none; padding: 0 30px; font-weight: 800; letter-spacing: 0.08em; font-size: 14px; cursor: pointer; text-transform: uppercase; flex: 1; }
.add-cart:hover { background: var(--olive-dark); }
.buy-now { background: var(--gold); color: var(--espresso); border: none; padding: 0 30px; font-weight: 800; letter-spacing: 0.08em; font-size: 14px; cursor: pointer; text-transform: uppercase; }
.buy-now:hover { background: var(--gold-soft); }

/* Trust list panel */
.trust-list { background: var(--cream-3); padding: 18px 22px; border-left: 3px solid var(--gold); margin-top: 14px; }
.trust-list ul { margin: 0; padding-left: 18px; font-size: 14px; }
.trust-list li { margin-bottom: 8px; }
.trust-list li:last-child { margin-bottom: 0; }
.trust-list strong { color: var(--espresso); }

/* COA card */
.coa-card { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px dashed var(--olive-dark); padding: 14px 18px; margin-top: 14px; }
.coa-card .coa-icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--olive); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 11px; letter-spacing: 0.04em; flex-shrink: 0;
}
.coa-card .coa-text small { color: var(--muted); font-size: 12px; }
.coa-card .coa-text strong { display: block; font-weight: 700; }
.coa-card a.dl { margin-left: auto; background: var(--olive-dark); color: #fff; padding: 8px 14px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }

/* Spec strip */
.spec-strip { background: var(--black); color: #fff; padding: 22px 0; margin-top: 60px; }
.spec-strip .row { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.spec-strip .item { padding: 0 14px; border-right: 1px solid var(--espresso-2); }
.spec-strip .item:last-child { border-right: none; }
.spec-strip .label { font-size: 10px; letter-spacing: 0.2em; color: var(--gold); font-weight: 700; text-transform: uppercase; margin-bottom: 4px; }
.spec-strip .val { font-weight: 700; font-size: 15px; color: #fff; }

/* Feature sections */
.feature { padding: 80px 0; }
.feature.alt { background: var(--cream-3); }
.feature .row { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.feature .copy .eyebrow { font-size: 12px; letter-spacing: 0.3em; font-weight: 600; color: var(--olive-dark); text-transform: uppercase; margin-bottom: 8px; }
.feature .copy .script { font-size: 2.4rem; color: var(--espresso); display: block; }
.feature .copy h2 { font-size: 2.2rem; margin: 2px 0 16px; }
.feature .copy p { color: var(--muted); font-size: 1.05rem; line-height: 1.75; max-width: 540px; }
.feature img.frame { box-shadow: 0 25px 40px rgba(60, 40, 20, 0.15); }

.bullets { margin-top: 18px; padding: 0; }
.bullets li {
  display: flex; align-items: flex-start; gap: 12px; padding: 12px 0;
  border-bottom: 1px dashed #D9CDB5; list-style: none;
}
.bullets li:last-child { border-bottom: none; }
.bullets .bicon {
  width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--gold);
  display: inline-flex; align-items: center; justify-content: center; color: var(--olive-dark);
  font-weight: 800; flex-shrink: 0;
}
.bullets strong { display: block; color: var(--espresso); font-weight: 700; }
.bullets p { margin: 2px 0 0 0; color: var(--muted); font-size: 0.95rem; }

/* "100% Pure" dark section */
.pure { background: var(--black); color: #fff; padding: 70px 0; text-align: center; }
.pure .script { color: var(--gold); font-size: 2.4rem; }
.pure h2 { color: #fff; font-size: 2.4rem; margin: 2px 0 12px; }
.pure .row { display: flex; gap: 40px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.pure .pill { padding: 10px 22px; border: 1.5px solid var(--gold); color: var(--gold); border-radius: 99px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-size: 13px; }

/* FAQ */
.faq { padding: 80px 0; background: var(--cream); }
.faq details { background: #fff; border: 1px solid var(--line); padding: 0; margin-bottom: 10px; }
.faq summary { padding: 18px 20px; font-weight: 700; cursor: pointer; list-style: none; position: relative; padding-right: 50px; font-size: 1.02rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 22px; top: 16px; font-size: 22px; color: var(--gold); font-weight: 400; }
.faq details[open] summary::after { content: '−'; }
.faq details[open] summary { color: var(--olive-dark); }
.faq .answer { padding: 0 20px 20px 20px; color: var(--muted); font-size: 0.97rem; line-height: 1.7; }

/* Related products strip */
.related { padding: 70px 0; background: var(--cream-3); }
.related h2 { text-align: center; margin-bottom: 40px; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.related-card { background: #fff; border: 1px solid var(--line); transition: all .2s; display: block; }
.related-card:hover { box-shadow: 0 18px 35px rgba(60, 40, 20, 0.1); transform: translateY(-3px); }
.related-card .img { background: var(--cream-3); aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; padding: 18px; }
.related-card .img img { max-height: 100%; max-width: 70%; }
.related-card .info { padding: 16px 18px; }
.related-card h4 { font-size: 1rem; margin-bottom: 6px; }
.related-card .pr { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--espresso); margin-top: 6px; }

/* Footer */
footer { background: var(--espresso); color: #D9CDB5; padding: 60px 0 30px; font-size: 14px; }
footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }
footer h4 { color: #fff; font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 10px; }
footer ul a:hover { color: var(--gold); }
.footer-logo {
  background: #fff; color: var(--black); padding: 8px 16px; display: inline-block;
  font-family: 'Montserrat', sans-serif; font-weight: 900; letter-spacing: 0.12em; margin-bottom: 14px;
}
footer .copyright {
  border-top: 1px solid var(--espresso-2); padding-top: 22px;
  display: flex; justify-content: space-between; font-size: 12px; color: #B8A98E;
  flex-wrap: wrap; gap: 12px;
}

/* Responsive */
@media (max-width: 900px) {
  .pdp-grid, .feature .row { grid-template-columns: 1fr; gap: 32px; }
  .pack-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-strip .row { grid-template-columns: repeat(2, 1fr); gap: 16px 0; }
  .spec-strip .item { border-right: none; }
  footer .cols { grid-template-columns: 1fr 1fr; }
  nav.main ul { display: none; }
  .pdp-info h1 { font-size: 1.8rem; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Shared footer block builder */
.site-footer-cols .footer-blurb { color: #B8A98E; font-size: 13px; max-width: 280px; }


/* === Product image white-bg removal via blend mode === */
.hero-image img,
.product-card img,
.related-card .img img,
.gallery .main-img img,
.thumb img {
  mix-blend-mode: multiply;
}
.product-card .img-wrap,
.related-card .img,
.gallery .main-img,
.thumb {
  background: var(--cream-3) !important;
}
/* Hero bottle on cream page bg */
.hero-image { background: linear-gradient(135deg, var(--cream-3) 0%, var(--cream-2) 100%); padding: 24px; }

/* === Bigger bottle images === */
.hero-image img{max-width:none!important;width:100%!important;max-height:600px;object-fit:contain}
.product-card .img-wrap{aspect-ratio:1/1;padding:8px!important;background:var(--cream-3)!important}
.product-card img{max-width:96%!important;max-height:96%!important;width:auto;height:auto;object-fit:contain}
.related-card .img{padding:8px!important}
.related-card .img img{max-width:96%!important;max-height:96%!important;object-fit:contain}
.gallery .main-img{padding:12px!important}
.gallery .main-img img{max-width:90%!important;max-height:90%!important;width:auto;height:auto}
.thumb{padding:2px!important}
.thumb img{max-width:98%!important;max-height:98%!important;object-fit:contain}
.concern-card img{max-width:96%!important;max-height:96%!important}
.feature img.frame{width:100%;max-height:500px;object-fit:contain}


/* BREWOIL — MOBILE-FIRST OVERRIDE LAYER v1 2026-05-30 */
html,body{overflow-x:hidden}img,video,iframe,table{max-width:100%}.container{width:100%}nav.main .inner,.qty-row,.cta-row,.price-row,.badges-row,.coa-card,.news-form,.pure .row{min-width:0}.bo-burger{display:none}@media (max-width:900px){nav.main{padding:12px 0}nav.main .inner{gap:8px}.bo-burger{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;margin-left:4px;background:none;border:none;cursor:pointer;color:var(--espresso,#3D2817);-webkit-tap-highlight-color:transparent;order:99}.bo-burger svg{width:24px;height:24px}.bo-drawer{position:fixed;top:0;right:0;height:100dvh;height:100vh;width:min(82vw,340px);background:var(--cream,#F5EFE3);box-shadow:-18px 0 50px rgba(60,40,20,.28);z-index:10000;transform:translateX(100%);transition:transform .28s cubic-bezier(.4,0,.2,1);display:flex;flex-direction:column;padding:18px 0;overflow-y:auto;-webkit-overflow-scrolling:touch}.bo-drawer.open{transform:translateX(0)}.bo-drawer-head{display:flex;align-items:center;justify-content:space-between;padding:4px 20px 16px;border-bottom:1px solid var(--line,#E5DAC4)}.bo-drawer-head .logo{font-size:18px;padding:6px 12px}.bo-drawer-close{width:44px;height:44px;border:none;background:none;cursor:pointer;font-size:26px;line-height:1;color:var(--espresso,#3D2817)}.bo-drawer a{display:flex;align-items:center;min-height:52px;padding:12px 22px;font-size:16px;font-weight:600;color:var(--espresso,#3D2817);border-bottom:1px solid var(--line,#E5DAC4)}.bo-drawer a:active{background:var(--cream-3,#F9F4EA)}.bo-drawer .bo-drawer-cta{margin:16px 20px 4px;justify-content:center;min-height:52px;background:var(--black,#111);color:#fff;border-bottom:none;font-weight:800;letter-spacing:.06em;text-transform:uppercase}.bo-overlay{position:fixed;inset:0;background:rgba(40,26,12,.45);z-index:9999;opacity:0;pointer-events:none;transition:opacity .28s}.bo-overlay.open{opacity:1;pointer-events:auto}body.bo-noscroll{overflow:hidden}}@media (max-width:768px){.icon-btn{min-width:44px;min-height:44px;width:44px;height:44px;font-size:14px}.nav-icons{gap:8px}.region-pill{padding:9px 12px}.faq summary{min-height:56px;display:flex;align-items:center}.thumb{min-height:56px}footer ul a,.breadcrumb a{display:inline-block;padding:4px 0}.btn{min-height:50px}}@media (max-width:768px){section,.feature,.faq,.related,.pure,.news,.pillars-wrap,.process,.pdp{padding-top:48px;padding-bottom:48px}.section-head{margin-bottom:30px}.section-head .script{font-size:1.9rem}.feature .copy .script,.process .script,.pure .script{font-size:1.8rem}}@media (max-width:480px){section,.feature,.faq,.related,.pure,.news,.pillars-wrap,.process,.pdp{padding-top:38px;padding-bottom:38px}.container{padding-left:16px;padding-right:16px}}@media (max-width:768px){.hero{padding:28px 0 20px}.hero .script{font-size:2.4rem}.hero h1{font-size:clamp(1.9rem,8vw,2.6rem)}.hero p.lead{font-size:1rem}.hero-image img{max-height:340px !important;width:auto !important}.cta-row{flex-direction:column;align-items:stretch;gap:10px}.cta-row .btn{width:100%;justify-content:center}.trust-strip{gap:14px 20px}}@media (max-width:768px){.products{gap:12px}.concerns{gap:12px}.product-card .add,.related-card .add{min-height:44px;display:inline-flex;align-items:center;justify-content:center}.product-card .meta{gap:8px}}@media (max-width:360px){.concerns{grid-template-columns:1fr}}@media (max-width:480px){.qty-row{display:grid;grid-template-columns:auto 1fr;grid-auto-rows:54px;gap:10px;align-items:stretch}.qty{width:100%;height:54px;justify-content:center}.qty button,.qty .val{height:54px}.add-cart{grid-column:2;padding:0 12px}.buy-now{grid-column:1 / -1;padding:16px;width:100%}.price-row{flex-wrap:wrap;gap:8px 12px}.pack-grid{grid-template-columns:1fr 1fr;gap:8px}.pdp-info h1{font-size:1.55rem}.coa-card{flex-wrap:wrap}.coa-card a.dl{margin-left:0;width:100%;text-align:center;white-space:normal}}@media (max-width:480px){.thumbs{grid-template-columns:repeat(4,1fr);gap:8px}.gallery .main-img{padding:18px !important}}.hero-image,.gallery .main-img,.product-card .img-wrap,.related-card .img,.concern-card .icon-wrap{aspect-ratio:1 / 1}.hero-image{aspect-ratio:auto}img[loading]{background:var(--cream-3,#F9F4EA)}.bo-buybar{display:none}@media (max-width:768px){.bo-buybar{position:fixed;left:0;right:0;bottom:0;z-index:9990;display:flex;align-items:center;gap:12px;padding:10px 14px calc(10px + env(safe-area-inset-bottom));background:rgba(245,239,227,.97);backdrop-filter:blur(8px);border-top:1px solid var(--line,#E5DAC4);box-shadow:0 -8px 24px rgba(60,40,20,.12);transform:translateY(110%);transition:transform .3s ease}.bo-buybar.show{transform:translateY(0)}.bo-buybar .bb-meta{flex:1;min-width:0;line-height:1.2}.bo-buybar .bb-name{font-weight:700;font-size:13px;color:var(--espresso,#3D2817);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.bo-buybar .bb-price{font-family:'Montserrat',sans-serif;font-weight:800;font-size:16px;color:var(--espresso,#3D2817)}.bo-buybar .bb-cta{flex-shrink:0;min-height:48px;padding:0 22px;display:inline-flex;align-items:center;justify-content:center;background:var(--black,#111);color:#fff;font-weight:800;letter-spacing:.06em;text-transform:uppercase;font-size:13px;border:none}body.bo-has-buybar .palak-toggle{bottom:calc(76px + env(safe-area-inset-bottom))}}@media (max-width:480px){.news-form{flex-direction:column;gap:10px}.news-form input{width:100%}.news-form button{width:100%;padding:14px;min-height:50px}footer .cols{grid-template-columns:1fr 1fr;gap:28px 24px}footer .copyright{flex-direction:column;align-items:flex-start}}@media (max-width:340px){footer .cols{grid-template-columns:1fr}}

/* X-DEVICE-OVERFLOW-FIX-V3 */
@media (max-width:900px){.hero .inner>*,.products>*,.concerns>*,.pillars>*,.related-grid>*,.pack-grid>*,.feature .row>*{min-width:0}}
@media (max-width:768px){.hero-image{max-width:100%;padding:12px}.hero-image img{width:auto!important;height:auto!important;max-width:100%!important;max-height:300px!important;margin:0 auto}nav.main .nav-icons>.region-pill{display:none!important}nav.main .nav-icons>.icon-btn:nth-of-type(2){display:none!important}nav.main .nav-icons{gap:8px}.concern-card,.product-card,.related-card{min-width:0}.concern-card>*{min-width:0}}
@media (max-width:480px){.concerns{grid-template-columns:1fr}}

/* NAV-FIT-V31: shrink logo + drop search on small phones so nav fits to 320px */
@media (max-width:768px){nav.main .logo{font-size:16px!important;padding:6px 10px!important;letter-spacing:.08em!important}}
@media (max-width:480px){nav.main .nav-icons>.icon-btn:nth-of-type(1){display:none!important}}

/* PRODUCT-CARD-FIT-V32: stack price/ADD in narrow product cards; stop mid-char breaks */
@media (max-width:768px){.product-card .meta{flex-direction:column;align-items:stretch;gap:8px}.product-card .price{white-space:nowrap}.product-card .add{width:100%;justify-content:center;white-space:nowrap}.product-card h3{overflow-wrap:break-word!important;word-break:normal!important}.product-card .img-wrap{width:100%}}
