:root {
  --brand: #f4c900;
  --brand-soft: #ffe978;
  --ink: #171712;
  --cream: #fffdf5;
  --line: rgba(23, 23, 18, .09);
}

html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
::selection { background: var(--brand); color: var(--ink); }

.page-shell { width: min(1360px, calc(100% - 32px)); margin-inline: auto; }
@media (min-width: 768px) { .page-shell { width: min(1360px, calc(100% - 64px)); } }

.skip-link {
  position: fixed; left: 16px; top: 12px; z-index: 100; transform: translateY(-150%);
  border-radius: 999px; background: var(--ink); color: white; padding: 10px 16px; font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.announcement-bar { background: var(--brand); border-bottom: 1px solid rgba(0,0,0,.08); }
.site-header { background: rgba(255, 253, 245, .73); backdrop-filter: blur(18px) saturate(155%); -webkit-backdrop-filter: blur(18px) saturate(155%); transition: background .25s ease, box-shadow .25s ease; }
.site-header.is-scrolled { background: rgba(255,255,255,.87); box-shadow: 0 10px 35px rgba(20,18,5,.07); }

.brand-lockup { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { position: relative; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px 16px 12px 16px; background: var(--brand); box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 6px 20px rgba(244,201,0,.24); transform: rotate(-4deg); }
.brand-bean { width: 15px; height: 22px; border: 2px solid var(--ink); border-radius: 70% 38% 70% 38%; transform: rotate(18deg); }
.brand-bean::after { content: ''; position: absolute; width: 1.5px; height: 15px; background: var(--ink); border-radius: 2px; transform: rotate(36deg) translate(1px,-1px); }

.nav-link { position: relative; font-size: 14px; font-weight: 700; color: rgba(23,23,18,.67); transition: color .2s ease; }
.nav-link::after { content:''; position:absolute; left:0; bottom:-7px; width:100%; height:2px; background:var(--brand); transform:scaleX(0); transform-origin:left; transition:transform .22s ease; }
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform:scaleX(1); }

.icon-button, .cart-button { height: 42px; border: 1px solid var(--line); background: rgba(255,255,255,.58); backdrop-filter: blur(12px); transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.icon-button { display:inline-flex; width:42px; border-radius:14px; align-items:center; justify-content:center; padding:0; line-height:0; }
.icon-button svg, .cart-button svg { width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.icon-button > svg { display:block; margin:auto; flex:0 0 auto; }
.icon-button:hover, .cart-button:hover { transform: translateY(-1px); background:white; border-color:rgba(23,23,18,.16); }
.cart-button { display:inline-flex; align-items:center; gap:8px; border-radius:14px; padding:0 9px 0 13px; font-size:13px; font-weight:800; }
.cart-count { display:grid; place-items:center; min-width:25px; height:25px; padding-inline:5px; border-radius:9px; background:var(--brand); font-size:11px; font-weight:900; }
.mobile-menu { border-top: 1px solid var(--line); background: rgba(255,253,245,.96); backdrop-filter: blur(20px); }
.mobile-menu a { border-radius:15px; padding:12px 14px; font-family:Manrope,sans-serif; font-weight:800; letter-spacing:-.02em; }
.mobile-menu a:hover { background:rgba(244,201,0,.16); }

/* ===== Navigation system: desktop mega menus + mobile app drawer ===== */
.desktop-nav {
  align-items: center;
  gap: 4px;
}
.nav-dropdown { position: relative; }
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 13px;
  color: rgba(23,23,18,.65);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.015em;
  transition: background .2s ease, color .2s ease;
}
.nav-trigger:hover,
.nav-dropdown.is-open .nav-trigger { background: rgba(244,201,0,.12); color: var(--ink); }
.nav-chevron {
  display: inline-block;
  margin-top: -3px;
  font-size: 14px;
  transition: transform .2s ease;
}
.nav-dropdown.is-open .nav-chevron { transform: rotate(180deg); }
.nav-panel {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  z-index: 80;
  width: 360px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 25px;
  background: rgba(255,253,245,.91);
  box-shadow: 0 28px 80px rgba(23,23,18,.14), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(26px) saturate(160%);
  -webkit-backdrop-filter: blur(26px) saturate(160%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 9px) scale(.985);
  transform-origin: top center;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-dropdown.is-open .nav-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}
.shop-mega { width: min(900px, calc(100vw - 56px)); padding: 18px; }
.mega-menu-grid { display: grid; grid-template-columns: 1.08fr 1fr 1fr .9fr; gap: 10px; }
.mega-menu-column { padding: 10px; }
.mega-menu-label {
  margin: 0 0 8px;
  color: rgba(23,23,18,.39);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.mega-menu-column > a,
.compact-menu > a,
.compact-link-grid > a {
  display: block;
  padding: 10px 11px;
  border-radius: 14px;
  transition: background .18s ease, transform .18s ease;
}
.mega-menu-column > a:hover,
.compact-menu > a:hover,
.compact-link-grid > a:hover { background: rgba(244,201,0,.12); transform: translateX(2px); }
.mega-menu-column strong,
.compact-menu strong,
.compact-link-grid strong { display: block; font-family: Manrope,sans-serif; font-size: 12px; font-weight: 800; letter-spacing: -.025em; }
.mega-menu-column small,
.compact-menu small,
.compact-link-grid small { display: block; margin-top: 3px; color: rgba(23,23,18,.44); font-size: 9.5px; line-height: 1.35; }
.mega-menu-feature { border: 1px solid rgba(23,23,18,.06); background: rgba(255,255,255,.58); }
.mega-menu-icon { display: grid; place-items: center; width: 29px; height: 29px; margin-bottom: 8px; border-radius: 10px; background: var(--brand); font-size: 13px; }
.mega-promo-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 20px;
  background: var(--brand);
  padding: 18px;
}
.mega-promo-card::after {
  content: '';
  z-index: 0;
  position: absolute;
  width: 150px;
  height: 150px;
  right: -50px;
  top: -55px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
}
.mega-promo-card > * { position: relative; z-index: 1; }
.mega-promo-badge { align-self: flex-start; margin-bottom: auto; border-radius: 999px; background: var(--ink); color: white; padding: 6px 9px; font-size: 8px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.mega-promo-card > strong { font-family: Manrope,sans-serif; font-size: 56px; line-height: .8; letter-spacing: -.08em; }
.mega-promo-card > span:not(.mega-promo-badge) { margin-top: 13px; font-size: 13px; font-weight: 800; line-height: 1.2; }
.mega-promo-card em { margin-top: 14px; font-size: 9.5px; font-style: normal; font-weight: 900; }
.discover-menu { width: min(700px, calc(100vw - 56px)); padding: 16px; }
.nav-highlight-card {
  display: grid;
  min-height: 118px;
  align-content: end;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(130deg, var(--brand), #ffe46d 62%, #fff6c7);
  padding: 16px;
}
.nav-highlight-kicker { margin-bottom: auto; font-size: 8px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.nav-highlight-card strong { max-width: 340px; font-family: Manrope,sans-serif; font-size: 18px; line-height: 1.05; letter-spacing: -.04em; }
.nav-highlight-card > span:last-child { margin-top: 7px; font-size: 9.5px; font-weight: 700; color: rgba(23,23,18,.56); }
.compact-link-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 2px; margin-top: 8px; }
.compact-menu { width: 330px; padding: 17px; }
.help-menu { width: 310px; }

/* mobile drawer */
.mobile-menu-shell {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu-shell.is-open { visibility: visible; pointer-events: auto; }
.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17,17,12,.32);
  opacity: 0;
  backdrop-filter: blur(4px);
  transition: opacity .25s ease;
}
.mobile-menu-shell.is-open .mobile-menu-backdrop { opacity: 1; }
.mobile-menu-drawer {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(92vw, 430px);
  height: 100dvh;
  max-height: 100dvh;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-left: 1px solid rgba(255,255,255,.65);
  background: rgba(255,253,245,.94);
  box-shadow: -28px 0 80px rgba(20,18,5,.16);
  backdrop-filter: blur(26px) saturate(155%);
  -webkit-backdrop-filter: blur(26px) saturate(155%);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateX(104%);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.mobile-menu-shell.is-open .mobile-menu-drawer { transform: translateX(0); }
body.menu-open { overflow: hidden; }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 18px 14px; }
.mobile-menu-head > div { display: grid; gap: 2px; }
.mobile-menu-eyebrow { color: rgba(23,23,18,.42); font-size: 8px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.mobile-menu-head strong { font-family: Manrope,sans-serif; font-size: 26px; letter-spacing: -.055em; }
.mobile-close-button { display: grid; place-items: center; width: 39px; height: 39px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.66); font-size: 24px; line-height: 1; }
.mobile-quick-actions { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; padding: 0 18px 14px; }
.mobile-quick-actions button { display: flex; min-height: 51px; flex-direction: column; align-items: center; justify-content: center; gap: 4px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.62); font-size: 9px; font-weight: 800; }
.mobile-quick-actions button > span { font-size: 17px; line-height: 1; }
.mobile-quick-actions b { display: inline-grid; place-items: center; min-width: 17px; height: 17px; margin-left: 2px; border-radius: 6px; background: var(--brand); font-size: 8px; }
.mobile-nav-accordion { padding: 0 12px 22px; }
.mobile-nav-group { border-top: 1px solid var(--line); }
.mobile-nav-group:last-child { border-bottom: 1px solid var(--line); }
.mobile-nav-trigger { display: flex; width: 100%; min-height: 62px; align-items: center; justify-content: space-between; padding: 0 7px; font-family: Manrope,sans-serif; font-size: 19px; font-weight: 800; letter-spacing: -.04em; }
.mobile-nav-trigger span { display: flex; align-items: center; gap: 10px; }
.mobile-nav-trigger b { color: rgba(23,23,18,.29); font-size: 8px; letter-spacing: .08em; }
.mobile-nav-trigger i { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 9px; background: rgba(244,201,0,.14); font-size: 16px; font-style: normal; transition: transform .2s ease, background .2s ease; }
.mobile-nav-group.is-open .mobile-nav-trigger i { transform: rotate(45deg); background: var(--brand); }
.mobile-nav-panel { max-height: 0; overflow: hidden; opacity: 0; padding-inline: 5px; transition: max-height .32s cubic-bezier(.2,.8,.2,1), opacity .2s ease, padding-bottom .2s ease; }
.mobile-nav-group.is-open .mobile-nav-panel { max-height: 720px; opacity: 1; padding-bottom: 13px; }
.mobile-nav-feature { display: flex; min-height: 74px; flex-direction: column; justify-content: center; border-radius: 16px; background: rgba(255,255,255,.72); padding: 13px 14px; }
.mobile-nav-feature strong { font-family: Manrope,sans-serif; font-size: 14px; font-weight: 800; letter-spacing: -.03em; }
.mobile-nav-feature span { margin-top: 4px; color: rgba(23,23,18,.45); font-size: 9px; font-weight: 700; }
.finder-feature { background: linear-gradient(135deg, rgba(244,201,0,.93), rgba(255,235,117,.78)); }
.mobile-link-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 6px; margin-top: 7px; }
.mobile-link-grid a { display: flex; min-height: 46px; align-items: center; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.48); padding: 9px 10px; font-size: 10px; font-weight: 800; line-height: 1.15; }
.mobile-link-list { display: grid; gap: 4px; margin-top: 6px; }
.mobile-link-list a { display: flex; min-height: 39px; align-items: center; border-radius: 11px; padding: 6px 10px; font-size: 11px; font-weight: 800; }
.mobile-link-list a:hover { background: rgba(244,201,0,.11); }
.mobile-offer-link { display: flex; min-height: 70px; align-items: center; justify-content: space-between; margin-top: 7px; border-radius: 16px; background: var(--ink); color: white; padding: 12px 14px; }
.mobile-offer-link span { display: grid; }
.mobile-offer-link small { color: rgba(255,255,255,.47); font-size: 7px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.mobile-offer-link strong { margin-top: 2px; font-family: Manrope,sans-serif; font-size: 18px; letter-spacing: -.04em; }
.mobile-offer-link > b { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px; background: var(--brand); color: var(--ink); }
.mobile-menu-footer { display: flex; justify-content: space-between; margin-top: auto; padding: 16px 18px 22px; color: rgba(23,23,18,.43); font-size: 9px; font-weight: 800; }
.mobile-menu-footer a { color: var(--ink); }

@media (max-width: 1120px) and (min-width: 1024px) {
  .desktop-nav { gap: 0; }
  .nav-trigger { padding-inline: 9px; font-size: 12px; }
  .shop-mega { width: min(850px, calc(100vw - 44px)); }
}

.hero-section { position:relative; }
.hero-section::before { content:''; position:absolute; width:680px; height:680px; left:-360px; top:70px; border-radius:50%; background:radial-gradient(circle, rgba(244,201,0,.23), transparent 67%); pointer-events:none; }
.eyebrow { display:inline-flex; align-items:center; gap:9px; padding:8px 12px; border:1px solid rgba(0,0,0,.08); border-radius:999px; background:rgba(255,255,255,.58); backdrop-filter:blur(14px); font-size:11px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color:rgba(0,0,0,.58); }
.eyebrow-dot { width:7px; height:7px; border-radius:50%; background:var(--brand); box-shadow:0 0 0 5px rgba(244,201,0,.17); }
.hero-swoosh { position:absolute; left:-1%; right:-1%; bottom:-.08em; height:.14em; border-radius:999px; background:var(--brand); transform:rotate(-1deg); z-index:-1; }
.button { display:inline-flex; align-items:center; justify-content:center; gap:8px; min-height:50px; border-radius:17px; padding:0 20px; font-size:14px; font-weight:800; letter-spacing:-.01em; transition:transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform:translateY(-2px); }
.button-primary { background:var(--brand); color:var(--ink); box-shadow:0 12px 30px rgba(244,201,0,.23); }
.button-primary:hover { box-shadow:0 16px 34px rgba(244,201,0,.34); }
.button-glass { border:1px solid var(--line); background:rgba(255,255,255,.55); backdrop-filter:blur(15px); }
.button-dark { background:var(--ink); color:white; }
.check-dot { display:grid; place-items:center; width:20px; height:20px; border-radius:50%; background:rgba(244,201,0,.18); color:#8c7000; font-size:10px; font-weight:900; }

.hero-photo { border-radius:36px 36px 90px 36px; border:1px solid rgba(255,255,255,.52); box-shadow:0 35px 90px rgba(23,23,18,.18); }
.glass-frame::before { content:''; position:absolute; inset:0; z-index:2; pointer-events:none; border-radius:inherit; box-shadow:inset 0 1px 0 rgba(255,255,255,.75); }
.hero-orb { position:absolute; border-radius:50%; filter:blur(1px); pointer-events:none; }
.hero-orb-one { width:270px; height:270px; right:-60px; top:-25px; background:radial-gradient(circle at 30% 30%, #ffe66a, var(--brand)); opacity:.95; }
.hero-orb-two { width:130px; height:130px; left:-15px; bottom:75px; background:rgba(255,255,255,.6); border:1px solid rgba(255,255,255,.8); backdrop-filter:blur(20px); }
.glass-card { border:1px solid rgba(255,255,255,.62); background:rgba(255,255,255,.64); backdrop-filter:blur(18px) saturate(150%); box-shadow:0 18px 50px rgba(23,23,18,.13), inset 0 1px 0 rgba(255,255,255,.85); }
.floating-card { position:absolute; z-index:8; border-radius:21px; padding:14px 16px; }
.floating-card-rating { left:-5px; top:95px; min-width:145px; }
.floating-card-origin { right:-8px; bottom:70px; }
@media(max-width:640px){ .floating-card-rating{left:0;top:42px;transform:scale(.9)} .floating-card-origin{right:0;bottom:35px;transform:scale(.88);transform-origin:right bottom;} }

.trust-strip { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); overflow:hidden; border:1px solid var(--line); border-radius:25px; background:rgba(255,255,255,.57); backdrop-filter:blur(15px); box-shadow:inset 0 1px 0 rgba(255,255,255,.7); }
.trust-item { padding:21px 22px; }
.trust-item:nth-child(even){ border-left:1px solid var(--line); }
.trust-item:nth-child(n+3){ border-top:1px solid var(--line); }
.trust-number { display:block; font-family:Manrope,sans-serif; font-size:18px; font-weight:800; letter-spacing:-.04em; }
.trust-label { display:block; margin-top:3px; font-size:11px; font-weight:600; color:rgba(23,23,18,.45); }
@media(min-width:900px){ .trust-strip{grid-template-columns:repeat(4,minmax(0,1fr));}.trust-item:nth-child(n+3){border-top:0}.trust-item:not(:first-child){border-left:1px solid var(--line)} }

.section-space { padding-block:70px; }
@media(min-width:768px){ .section-space{padding-block:96px;} }
.section-heading { display:flex; align-items:end; justify-content:space-between; gap:30px; }
.section-kicker { font-size:11px; font-weight:900; letter-spacing:.15em; text-transform:uppercase; color:rgba(23,23,18,.43); }
.section-title { margin-top:8px; max-width:800px; font-family:Manrope,sans-serif; font-size:clamp(2.15rem,4.6vw,4.8rem); line-height:.98; font-weight:800; letter-spacing:-.062em; }
.text-link { display:none; align-items:center; gap:8px; white-space:nowrap; font-size:13px; font-weight:800; }
@media(min-width:640px){.text-link{display:inline-flex}}
.text-link span { display:grid; place-items:center; width:30px; height:30px; border-radius:10px; background:var(--brand); transition:transform .2s ease; }
.text-link:hover span { transform:translate(2px,-2px); }

.product-card { overflow:hidden; border:1px solid var(--line); border-radius:26px; background:rgba(255,255,255,.66); box-shadow:inset 0 1px 0 rgba(255,255,255,.8); transition:transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease; }
.product-card:hover { transform:translateY(-7px); box-shadow:0 24px 60px rgba(23,23,18,.11); }
.product-visual { position:relative; display:block; overflow:hidden; aspect-ratio:1/1.12; background:#eee9d7; }
.product-visual img { width:100%; height:100%; object-fit:cover; transition:transform .65s cubic-bezier(.2,.8,.2,1); }
.product-card:hover .product-visual img { transform:scale(1.045); }
.product-badge,.product-score { position:absolute; top:13px; padding:7px 10px; border-radius:999px; font-size:10px; font-weight:900; letter-spacing:.04em; }
.product-badge { left:13px; background:rgba(255,255,255,.72); backdrop-filter:blur(14px); }
.product-score { right:13px; background:var(--brand); }
.product-origin { font-size:10px; font-weight:900; letter-spacing:.13em; text-transform:uppercase; color:rgba(23,23,18,.42); }
.product-title { margin-top:3px; font-family:Manrope,sans-serif; font-size:22px; font-weight:800; letter-spacing:-.045em; }
.product-price { font-family:Manrope,sans-serif; font-size:16px; font-weight:800; white-space:nowrap; }
.pill { border:1px solid var(--line); border-radius:999px; padding:7px 10px; font-size:10px; font-weight:800; color:rgba(23,23,18,.5); }
.quick-add { display:grid; place-items:center; width:38px; height:38px; border-radius:13px; background:var(--ink); color:white; font-size:20px; transition:background .2s ease, transform .2s ease; }
.quick-add:hover { background:var(--brand); color:var(--ink); transform:rotate(7deg); }

.taste-panel { border:1px solid rgba(0,0,0,.07); border-radius:36px; background:linear-gradient(135deg, rgba(255,232,95,.78), rgba(255,255,255,.72) 48%, rgba(244,201,0,.3)); padding:28px; box-shadow:0 26px 80px rgba(77,61,0,.08), inset 0 1px 0 rgba(255,255,255,.9); }
@media(min-width:768px){.taste-panel{padding:48px}}
.liquid-blob { position:absolute; border-radius:42% 58% 64% 36% / 42% 43% 57% 58%; filter:blur(1px); opacity:.8; }
.liquid-blob-one { width:250px; height:250px; right:10%; top:-90px; background:rgba(255,255,255,.45); border:1px solid rgba(255,255,255,.75); box-shadow:inset 14px 12px 28px rgba(255,255,255,.35); }
.liquid-blob-two { width:180px; height:180px; left:-70px; bottom:-85px; background:rgba(244,201,0,.36); }
.taste-card { display:grid; grid-template-columns:44px 1fr 30px; align-items:center; gap:13px; min-height:92px; border:1px solid rgba(255,255,255,.72); border-radius:22px; background:rgba(255,255,255,.55); padding:14px; text-align:left; backdrop-filter:blur(14px) saturate(140%); box-shadow:inset 0 1px 0 rgba(255,255,255,.7); transition:transform .25s ease, background .25s ease, box-shadow .25s ease; }
.taste-card:hover, .taste-card.is-active { transform:translateY(-3px); background:rgba(255,255,255,.82); box-shadow:0 15px 40px rgba(46,38,3,.1); }
.taste-icon { display:grid; place-items:center; width:44px; height:44px; border-radius:15px; background:var(--ink); color:var(--brand); font-size:17px; }
.taste-card strong { display:block; font-family:Manrope,sans-serif; font-size:14px; font-weight:800; letter-spacing:-.02em; }
.taste-card small { display:block; margin-top:4px; color:rgba(23,23,18,.48); font-size:11px; }
.taste-arrow { color:rgba(23,23,18,.4); font-size:15px; }

.glass-chip { display:none; align-items:center; gap:8px; border:1px solid var(--line); border-radius:16px; background:rgba(255,255,255,.58); padding:10px 13px; backdrop-filter:blur(14px); font-size:12px; }
.glass-chip strong { color:#a58100; }
.glass-chip span { color:rgba(0,0,0,.43); }
@media(min-width:640px){.glass-chip{display:flex}}
.review-card { display:flex; min-height:280px; flex-direction:column; justify-content:space-between; border:1px solid var(--line); border-radius:27px; background:rgba(255,255,255,.66); padding:25px; }
.review-card-featured { background:var(--brand); transform:rotate(-1deg); border-color:transparent; }
.review-stars { color:#c49d00; font-size:13px; letter-spacing:.08em; }
.review-card-featured .review-stars { color:var(--ink); }
.review-card blockquote { margin-top:22px; font-family:Manrope,sans-serif; font-size:21px; line-height:1.35; font-weight:700; letter-spacing:-.035em; }
.review-card footer { display:flex; align-items:center; gap:11px; margin-top:28px; }
.review-avatar { display:grid; place-items:center; width:38px; height:38px; border-radius:13px; background:var(--ink); color:white; font-weight:800; }
.review-card footer strong { display:block; font-size:12px; }
.review-card footer small { display:block; margin-top:2px; font-size:10px; color:rgba(23,23,18,.45); }

.process-grid { box-shadow:0 30px 80px rgba(23,23,18,.12); }
.play-button { display:grid; place-items:center; width:63px; height:63px; flex:0 0 auto; border-radius:22px; background:var(--brand); color:var(--ink); box-shadow:0 15px 35px rgba(0,0,0,.2); transition:transform .25s ease; }
.video-placeholder:hover .play-button { transform:scale(1.07) rotate(4deg); }
.play-button svg { width:24px; height:24px; fill:currentColor; }
.process-step { display:grid; grid-template-columns:39px 1fr; gap:16px; border-top:1px solid rgba(255,255,255,.12); padding-top:18px; }
.process-step > span { display:grid; place-items:center; width:35px; height:35px; border-radius:12px; background:rgba(244,201,0,.12); color:var(--brand-soft); font-size:10px; font-weight:900; }
.process-step strong { display:block; font-family:Manrope,sans-serif; font-size:15px; }
.process-step p { margin-top:4px; color:rgba(255,255,255,.48); font-size:12px; line-height:1.6; }

.stat-card { border:1px solid var(--line); border-radius:20px; background:rgba(255,255,255,.62); padding:18px; backdrop-filter:blur(10px); }
.stat-card strong { display:block; font-family:Manrope,sans-serif; font-size:17px; font-weight:800; letter-spacing:-.03em; }
.stat-card span { display:block; margin-top:4px; font-size:11px; color:rgba(23,23,18,.48); }

.origin-panel { border-radius:36px; border:1px solid var(--line); box-shadow:0 28px 80px rgba(23,23,18,.1); }
.origin-data-card { border:1px solid rgba(255,255,255,.38); border-radius:26px; background:rgba(15,15,12,.48); padding:22px; color:white; backdrop-filter:blur(20px) saturate(140%); }
.origin-data-card dt { color:rgba(255,255,255,.48); font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; }
.origin-data-card dd { margin-top:2px; font-weight:700; }

.offer-card { border-radius:36px; background:var(--brand); box-shadow:0 28px 70px rgba(126,100,0,.14); }
.offer-orb { position:absolute; width:420px; height:420px; left:33%; top:-180px; border-radius:50%; border:1px solid rgba(255,255,255,.55); background:rgba(255,255,255,.22); box-shadow:inset 35px 20px 80px rgba(255,255,255,.26); backdrop-filter:blur(13px); }

.ugc-track { display:flex; gap:14px; width:max-content; padding-inline:max(16px,calc((100vw - 1360px)/2)); }
.ugc-card { width:min(330px,72vw); aspect-ratio:4/5; overflow:hidden; border-radius:28px; background:white; box-shadow:0 20px 50px rgba(23,23,18,.09); }
.ugc-card img { width:100%; height:100%; object-fit:cover; }
.rotate-left { transform:rotate(-1.6deg); }.rotate-right { transform:rotate(1.8deg); }

.guide-card { overflow:hidden; border:1px solid var(--line); border-radius:27px; background:rgba(255,255,255,.64); transition:transform .25s ease, box-shadow .25s ease; }
.guide-card:hover { transform:translateY(-5px); box-shadow:0 22px 55px rgba(23,23,18,.09); }
.guide-image { display:block; aspect-ratio:16/10; overflow:hidden; }
.guide-image img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.guide-card:hover .guide-image img { transform:scale(1.035); }
.guide-meta { font-size:10px; font-weight:900; letter-spacing:.12em; text-transform:uppercase; color:rgba(23,23,18,.4); }
.guide-card h3 { margin-top:8px; font-family:Manrope,sans-serif; font-size:21px; line-height:1.25; font-weight:800; letter-spacing:-.035em; }
.guide-card > div > p:last-child { margin-top:11px; color:rgba(23,23,18,.5); font-size:13px; line-height:1.65; }

.newsletter-panel { position:relative; overflow:hidden; border-radius:34px; background:var(--ink); padding:30px; box-shadow:0 30px 90px rgba(23,23,18,.17); }
.newsletter-panel::after { content:''; position:absolute; width:390px; height:390px; right:-130px; top:-170px; border-radius:43% 57% 49% 51% / 54% 44% 56% 46%; background:var(--brand); filter:blur(2px); opacity:.9; }
@media(min-width:900px){.newsletter-panel{display:grid;grid-template-columns:1.2fr .8fr;align-items:end;gap:60px;padding:52px}.newsletter-form{position:relative;z-index:2}.newsletter-panel #newsletter-status{grid-column:2}}
.newsletter-form { position:relative; z-index:2; display:flex; gap:8px; margin-top:30px; border:1px solid rgba(255,255,255,.15); border-radius:18px; background:rgba(255,255,255,.08); padding:6px; backdrop-filter:blur(15px); }
.newsletter-form input { min-width:0; flex:1; background:transparent; padding:0 10px; color:white; outline:none; font-size:13px; }
.newsletter-form input::placeholder { color:rgba(255,255,255,.38); }
.newsletter-form button { border-radius:13px; background:var(--brand); padding:12px 14px; white-space:nowrap; font-size:12px; font-weight:900; }

.footer-title { font-family:Manrope,sans-serif; font-size:12px; font-weight:900; letter-spacing:.08em; text-transform:uppercase; }
.footer-links { margin-top:17px; display:grid; gap:10px; font-size:13px; color:rgba(23,23,18,.5); }
.footer-links a:hover { color:var(--ink); }
.social-button { display:grid; place-items:center; width:38px; height:38px; border:1px solid var(--line); border-radius:12px; background:white; font-size:10px; font-weight:900; }

.toast { position:fixed; z-index:100; right:18px; bottom:18px; max-width:calc(100vw - 36px); transform:translateY(30px); opacity:0; pointer-events:none; border:1px solid rgba(255,255,255,.2); border-radius:16px; background:rgba(23,23,18,.9); color:white; padding:12px 15px; backdrop-filter:blur(15px); box-shadow:0 18px 50px rgba(0,0,0,.18); font-size:12px; font-weight:700; transition:opacity .2s ease, transform .2s ease; }
.toast.is-visible { transform:translateY(0); opacity:1; }

.reveal { opacity:0; transform:translateY(18px); transition:opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity:1; transform:none; }
@media(prefers-reduced-motion:reduce){ html{scroll-behavior:auto}.reveal{opacity:1;transform:none;transition:none}*{animation:none!important;transition-duration:.001ms!important} }

@media(max-width:640px){
  .section-heading{align-items:start}.hero-photo{border-radius:28px 28px 62px 28px}.taste-panel,.origin-panel,.offer-card,.newsletter-panel{border-radius:28px}.review-card-featured{transform:none}.newsletter-form{flex-direction:column}.newsletter-form button{min-height:44px}.section-space{padding-block:58px}
}

/* ===== Hero v3 — full-bleed photographic / liquid glass ===== */
.hero-v3 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  height: calc(100svh - 113px);
  min-height: 520px;
  background: #1d1b16;
}
.hero-v3::before { display: none; }
.hero-media,
.hero-media picture,
.hero-media img,
.hero-media-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media { z-index: -2; overflow: hidden; }
.hero-media img {
  object-fit: cover;
  object-position: center 52%;
  transform: scale(1.015);
}
.hero-media-shade {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 38%, rgba(15,14,10,.06) 0, rgba(15,14,10,.16) 35%, rgba(15,14,10,.48) 100%),
    linear-gradient(180deg, rgba(15,14,10,.12) 0%, rgba(15,14,10,.12) 42%, rgba(15,14,10,.54) 100%);
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(244,201,0,.08), transparent 22%, transparent 76%, rgba(255,255,255,.05));
}
.hero-liquid {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 22px 80px rgba(0,0,0,.08);
  backdrop-filter: blur(14px) saturate(145%);
  -webkit-backdrop-filter: blur(14px) saturate(145%);
}
.hero-liquid-a {
  width: clamp(150px, 15vw, 260px);
  aspect-ratio: 1;
  right: -4.5vw;
  top: 10%;
  border-radius: 58% 42% 47% 53% / 47% 61% 39% 53%;
  background: rgba(244,201,0,.82);
  border-color: rgba(255,231,89,.72);
  filter: saturate(108%);
}
.hero-liquid-b {
  width: clamp(110px, 10vw, 180px);
  aspect-ratio: 1;
  left: -3vw;
  bottom: 13%;
  border-radius: 39% 61% 56% 44% / 61% 38% 62% 39%;
  opacity: .7;
}
.hero-stage {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: clamp(24px, 4vh, 52px);
  padding-bottom: clamp(92px, 15vh, 132px);
}
.hero-center {
  position: relative;
  z-index: 5;
  width: min(920px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
}
.hero-eyebrow-glass {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  color: rgba(255,255,255,.88);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 12px 35px rgba(0,0,0,.08);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero-eyebrow-glass .eyebrow-dot {
  box-shadow: 0 0 0 5px rgba(244,201,0,.17), 0 0 20px rgba(244,201,0,.28);
}
.hero-title-v3 {
  margin-top: clamp(16px, 2.4vh, 24px);
  max-width: 900px;
  font-size: clamp(3.15rem, 5.55vw, 5.55rem);
  line-height: .94;
  letter-spacing: -.065em;
  text-wrap: balance;
  text-shadow: 0 4px 30px rgba(0,0,0,.22);
}
.hero-title-v3 span {
  position: relative;
  display: inline-block;
  color: #fff;
}
.hero-title-v3 span::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: -.02em;
  right: -.04em;
  bottom: .02em;
  height: .13em;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 5px 20px rgba(244,201,0,.24);
  transform: rotate(-.8deg);
}
.hero-lead-v3 {
  margin-top: clamp(16px, 2.2vh, 22px);
  max-width: 680px;
  color: rgba(255,255,255,.78);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.58;
  text-shadow: 0 2px 20px rgba(0,0,0,.22);
}
.hero-actions-v3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(18px, 2.8vh, 28px);
}
.hero-primary {
  background: var(--brand);
  color: var(--ink);
  box-shadow: 0 14px 38px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.6);
}
.hero-secondary {
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.13);
  color: white;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 14px 38px rgba(0,0,0,.10);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}
.hero-secondary:hover { background: rgba(255,255,255,.2); }
.hero-proof-dock {
  position: absolute;
  z-index: 6;
  left: 0;
  right: 0;
  bottom: clamp(18px, 3.5vh, 34px);
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1px 1fr;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 25px;
  background: rgba(255,255,255,.13);
  color: white;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.23), 0 20px 55px rgba(0,0,0,.13);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}
.hero-rating-inline {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}
.hero-stars { color: var(--brand); letter-spacing: -.06em; font-size: 14px; }
.hero-rating-inline strong { font-family: Manrope,sans-serif; font-size: 24px; letter-spacing: -.05em; }
.hero-rating-inline > span:last-child { color: rgba(255,255,255,.64); font-size: 11px; font-weight: 700; }
.hero-proof-divider { width: 1px; height: 34px; background: rgba(255,255,255,.22); }
.hero-proof-items { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.hero-proof-items span { display: flex; align-items: center; justify-content: center; gap: 8px; color: rgba(255,255,255,.78); font-size: 11px; font-weight: 800; white-space: nowrap; }
.hero-proof-items i { display: grid; place-items:center; width: 21px; height: 21px; border-radius: 50%; background: rgba(244,201,0,.18); color: var(--brand-soft); font-style: normal; font-size: 10px; }

@media (max-width: 1023px) {
  .hero-v3 { height: calc(100svh - 113px); min-height: 560px; }
  .hero-stage { padding-top: 24px; padding-bottom: 112px; }
  .hero-title-v3 { font-size: clamp(3rem, 8vw, 4.8rem); }
  .hero-media img { object-position: center center; }
  .hero-proof-dock { grid-template-columns: 1fr; gap: 10px; padding: 12px 16px; }
  .hero-proof-divider { display: none; }
  .hero-rating-inline { justify-content: center; }
}

@media (max-width: 640px) {
  .announcement-bar .page-shell { padding-block: 7px !important; font-size: 11px !important; }
  .announcement-bar .page-shell > span:nth-of-type(2) { max-width: 172px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  #site-header .page-shell { height: 68px !important; }
  .hero-v3 { height: calc(100svh - 96px); min-height: 530px; }
  .hero-stage { justify-content: flex-end; align-items: stretch; padding-top: 18px; padding-bottom: 116px; }
  .hero-center { align-items: flex-start; text-align: left; width: 100%; }
  .hero-eyebrow-glass { padding: 7px 10px; font-size: 8.5px; }
  .hero-title-v3 {
    margin-top: 14px;
    max-width: 94%;
    font-size: clamp(2.55rem, 12.4vw, 3.55rem);
    line-height: .91;
    letter-spacing: -.058em;
  }
  .hero-title-v3 br { display: none; }
  .hero-lead-v3 { margin-top: 12px; max-width: 94%; font-size: 12.5px; line-height: 1.45; }
  .hero-actions-v3 { width: 100%; justify-content: flex-start; gap: 8px; margin-top: 15px; }
  .hero-actions-v3 .button { min-height: 43px; border-radius: 14px; padding-inline: 14px; font-size: 11.5px; }
  .hero-media img { object-position: 58% center; transform: scale(1.02); }
  .hero-media-shade {
    background:
      linear-gradient(180deg, rgba(15,14,10,.08) 0%, rgba(15,14,10,.10) 26%, rgba(15,14,10,.38) 56%, rgba(15,14,10,.82) 100%);
  }
  .hero-liquid-a { width: 145px; right: -60px; top: 12%; opacity: .86; }
  .hero-liquid-b { width: 90px; left: -40px; bottom: 36%; opacity: .46; }
  .hero-proof-dock {
    left: 16px;
    right: 16px;
    bottom: 14px;
    min-height: 0;
    gap: 7px;
    padding: 10px 11px;
    border-radius: 18px;
  }
  .hero-rating-inline { justify-content: flex-start; gap: 6px; }
  .hero-stars { font-size: 11px; }
  .hero-rating-inline strong { font-size: 18px; }
  .hero-rating-inline > span:last-child { font-size: 9px; }
  .hero-proof-items { grid-template-columns: repeat(3, auto); justify-content: start; gap: 10px; overflow: hidden; }
  .hero-proof-items span { justify-content: flex-start; gap: 5px; font-size: 8.5px; }
  .hero-proof-items i { width: 17px; height: 17px; font-size: 8px; }
}

@media (max-height: 720px) and (min-width: 641px) {
  .hero-v3 { min-height: 0; }
  .hero-stage { padding-top: 16px; padding-bottom: 94px; }
  .hero-title-v3 { margin-top: 12px; font-size: clamp(2.55rem, 5vw, 4rem); }
  .hero-lead-v3 { margin-top: 11px; font-size: 13px; line-height: 1.45; }
  .hero-actions-v3 { margin-top: 14px; }
  .hero-actions-v3 .button { min-height: 44px; }
  .hero-proof-dock { bottom: 14px; min-height: 58px; }
}

@media (max-height: 670px) and (max-width: 640px) {
  .hero-v3 { min-height: 0; }
  .hero-stage { padding-bottom: 92px; }
  .hero-title-v3 { font-size: clamp(2.1rem, 10.7vw, 2.75rem); }
  .hero-lead-v3 { font-size: 11.5px; margin-top: 9px; }
  .hero-actions-v3 { margin-top: 10px; }
  .hero-actions-v3 .button { min-height: 39px; padding-inline: 11px; font-size: 10.5px; }
  .hero-proof-items { display: none; }
  .hero-proof-dock { bottom: 10px; }
}

/* ===== Coffee Match calculator ===== */
.coffee-finder-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(23,23,18,.07);
  border-radius: 38px;
  background:
    radial-gradient(circle at 88% 6%, rgba(255,255,255,.82), transparent 26%),
    linear-gradient(135deg, rgba(244,201,0,.95) 0%, rgba(255,229,88,.78) 36%, rgba(255,253,245,.94) 72%);
  padding: clamp(28px, 4vw, 58px);
  box-shadow: 0 28px 85px rgba(85,68,0,.10), inset 0 1px 0 rgba(255,255,255,.85);
}
.finder-liquid { position:absolute; z-index:-1; pointer-events:none; border:1px solid rgba(255,255,255,.62); background:rgba(255,255,255,.20); backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px); box-shadow:inset 18px 14px 45px rgba(255,255,255,.30); }
.finder-liquid-one { width:360px; height:360px; right:-100px; top:-180px; border-radius:44% 56% 53% 47% / 57% 42% 58% 43%; }
.finder-liquid-two { width:220px; height:220px; left:-105px; bottom:-105px; border-radius:61% 39% 48% 52% / 42% 57% 43% 58%; background:rgba(244,201,0,.22); }
.finder-intro { position:relative; z-index:2; display:grid; gap:22px; align-items:end; }
@media(min-width:900px){ .finder-intro{grid-template-columns:1.15fr .65fr; gap:70px;} }
.finder-label { display:inline-flex; align-items:center; gap:8px; border:1px solid rgba(23,23,18,.10); border-radius:999px; background:rgba(255,255,255,.55); padding:8px 11px; backdrop-filter:blur(15px); -webkit-backdrop-filter:blur(15px); font-size:10px; font-weight:900; letter-spacing:.10em; text-transform:uppercase; }
.finder-label span { display:grid; place-items:center; width:20px; height:20px; border-radius:8px; background:var(--ink); color:var(--brand); font-size:10px; }
.finder-title { max-width:850px; font-size:clamp(2.3rem,4.35vw,4.7rem); }
.finder-intro-copy { max-width:480px; color:rgba(23,23,18,.58); font-size:14px; line-height:1.7; }
.finder-app { position:relative; z-index:3; margin-top:34px; overflow:hidden; border:1px solid rgba(255,255,255,.70); border-radius:30px; background:rgba(255,255,255,.68); box-shadow:0 24px 70px rgba(35,29,0,.10), inset 0 1px 0 rgba(255,255,255,.88); backdrop-filter:blur(24px) saturate(145%); -webkit-backdrop-filter:blur(24px) saturate(145%); }
.finder-topbar { display:flex; align-items:center; justify-content:space-between; gap:18px; border-bottom:1px solid rgba(23,23,18,.08); padding:17px 20px; background:rgba(255,255,255,.34); }
.finder-topbar > div { min-width:0; flex:1; }
.finder-step-label { display:block; color:rgba(23,23,18,.46); font-size:9px; font-weight:900; letter-spacing:.13em; }
.finder-step-label strong { color:var(--ink); }
.finder-progress { width:min(360px,100%); height:5px; overflow:hidden; margin-top:8px; border-radius:999px; background:rgba(23,23,18,.08); }
.finder-progress span { display:block; width:25%; height:100%; border-radius:inherit; background:var(--ink); transition:width .35s cubic-bezier(.2,.8,.2,1); }
.finder-restart { display:grid; place-items:center; width:38px; height:38px; flex:0 0 auto; border:1px solid rgba(23,23,18,.09); border-radius:13px; background:rgba(255,255,255,.64); font-size:18px; transition:transform .25s ease, background .25s ease; }
.finder-restart:hover { transform:rotate(-20deg); background:white; }
.finder-question-view { display:grid; grid-template-columns:auto 1fr; gap:15px 18px; padding:24px; }
.finder-question-icon { display:grid; place-items:center; width:52px; height:52px; border-radius:17px; background:var(--ink); color:var(--brand); box-shadow:0 12px 28px rgba(23,23,18,.15); font-size:20px; }
.finder-question-copy { align-self:center; }
.finder-question-kicker { color:rgba(23,23,18,.42); font-size:9px; font-weight:900; letter-spacing:.13em; text-transform:uppercase; }
.finder-question-copy h3,.finder-result-head h3 { margin-top:5px; font-family:Manrope,sans-serif; font-size:clamp(1.45rem,2.6vw,2.35rem); line-height:1.08; font-weight:800; letter-spacing:-.045em; }
.finder-question-copy > p:last-child { margin-top:7px; color:rgba(23,23,18,.48); font-size:12px; }
.finder-options { grid-column:1/-1; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; margin-top:5px; }
@media(min-width:900px){ .finder-options{grid-template-columns:repeat(4,minmax(0,1fr));} }
.finder-option { position:relative; min-height:104px; display:flex; flex-direction:column; justify-content:space-between; align-items:flex-start; gap:14px; border:1px solid rgba(23,23,18,.09); border-radius:20px; background:rgba(255,255,255,.58); padding:15px; text-align:left; transition:transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.finder-option:hover { transform:translateY(-2px); background:rgba(255,255,255,.88); }
.finder-option.is-selected { border-color:rgba(23,23,18,.82); background:white; box-shadow:0 12px 32px rgba(23,23,18,.08); }
.finder-option.is-selected::after { content:'✓'; position:absolute; top:10px; right:10px; display:grid; place-items:center; width:22px; height:22px; border-radius:8px; background:var(--brand); font-size:10px; font-weight:900; }
.finder-option-icon { display:grid; place-items:center; width:34px; height:34px; border-radius:12px; background:rgba(244,201,0,.18); font-size:16px; }
.finder-option strong { display:block; max-width:90%; font-family:Manrope,sans-serif; font-size:13px; line-height:1.2; letter-spacing:-.025em; }
.finder-option small { display:block; margin-top:4px; color:rgba(23,23,18,.43); font-size:10px; line-height:1.35; }
.finder-actions { grid-column:1/-1; display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top:3px; padding-top:16px; border-top:1px solid rgba(23,23,18,.07); }
.finder-back,.finder-edit { color:rgba(23,23,18,.56); font-size:11px; font-weight:800; }
.finder-back:disabled { opacity:.32; cursor:not-allowed; }
.finder-next { display:inline-flex; align-items:center; justify-content:center; gap:8px; min-height:43px; border-radius:14px; background:var(--ink); color:white; padding:0 16px; font-size:11px; font-weight:900; transition:transform .2s ease, opacity .2s ease; }
.finder-next:disabled { opacity:.28; cursor:not-allowed; }
.finder-next:not(:disabled):hover { transform:translateY(-1px); }
.finder-result { padding:24px; }
.finder-result-head { display:grid; grid-template-columns:auto 1fr; gap:14px; align-items:start; }
.finder-result-icon { display:grid; place-items:center; width:52px; height:52px; border-radius:17px; background:var(--brand); font-size:18px; font-weight:900; }
.finder-result-head > div > p:last-child { margin-top:7px; max-width:720px; color:rgba(23,23,18,.50); font-size:12px; line-height:1.55; }
.finder-recommendations { display:grid; gap:10px; margin-top:20px; }
@media(min-width:720px){ .finder-recommendations{grid-template-columns:repeat(2,minmax(0,1fr));} }
.finder-match-card { display:grid; grid-template-columns:78px 1fr auto; align-items:center; gap:13px; border:1px solid rgba(23,23,18,.08); border-radius:19px; background:rgba(255,255,255,.68); padding:9px; }
.finder-match-card img { width:78px; height:78px; object-fit:cover; border-radius:14px; }
.finder-match-meta { min-width:0; }
.finder-match-meta small { display:block; color:rgba(23,23,18,.42); font-size:9px; font-weight:900; letter-spacing:.10em; text-transform:uppercase; }
.finder-match-meta strong { display:block; margin-top:3px; font-family:Manrope,sans-serif; font-size:16px; letter-spacing:-.035em; }
.finder-match-meta span { display:block; margin-top:3px; overflow:hidden; color:rgba(23,23,18,.48); font-size:10px; white-space:nowrap; text-overflow:ellipsis; }
.finder-match-score { display:grid; place-items:center; min-width:48px; height:48px; border-radius:15px; background:var(--ink); color:white; font-family:Manrope,sans-serif; font-size:12px; font-weight:800; }
.finder-match-score b { color:var(--brand); font-size:15px; }
.finder-result-actions { display:flex; flex-wrap:wrap; align-items:center; gap:16px; margin-top:20px; }

/* Product collection layout: deliberately 2-up on mobile */
.product-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
@media(min-width:1280px){ .product-grid{grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px;} }

/* ===== Mobile: denser, app-like information architecture ===== */
@media(max-width:640px){
  .page-shell { width:calc(100% - 24px); }
  .section-space { padding-block:44px; }
  .section-heading { gap:12px; }
  .section-kicker { font-size:9px; letter-spacing:.13em; }
  .section-title { margin-top:6px; font-size:clamp(1.75rem,8.5vw,2.35rem); line-height:.98; letter-spacing:-.055em; }

  /* Product shelf */
  #cafele .section-heading { align-items:end; }
  #cafele .product-grid { margin-top:20px !important; gap:9px; }
  .product-card { border-radius:18px; }
  .product-visual { aspect-ratio:1/1.03; }
  .product-badge,.product-score { top:7px; padding:5px 6px; font-size:7px; letter-spacing:.02em; }
  .product-badge { left:7px; max-width:64%; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
  .product-score { right:7px; }
  .product-grid .product-card > .p-5 { padding:11px !important; }
  .product-origin { font-size:7.5px; letter-spacing:.09em; }
  .product-title { margin-top:2px; font-size:16px; letter-spacing:-.035em; }
  .product-price { font-size:12px; }
  .product-grid .product-card .mt-3 { margin-top:6px !important; overflow:hidden; font-size:9.5px !important; line-height:1.35; white-space:nowrap; text-overflow:ellipsis; }
  .product-grid .product-card .mt-5 { margin-top:9px !important; }
  .pill { max-width:82px; overflow:hidden; padding:5px 7px; font-size:7.5px; white-space:nowrap; text-overflow:ellipsis; }
  .quick-add { width:31px; height:31px; border-radius:10px; font-size:17px; }

  /* Coffee Match becomes a compact in-app card */
  .coffee-finder-panel { border-radius:27px; padding:18px; }
  .finder-liquid-one { width:200px; height:200px; right:-90px; top:-90px; }
  .finder-liquid-two { width:120px; height:120px; }
  .finder-label { padding:6px 8px; font-size:7.5px; }
  .finder-label span { width:17px; height:17px; border-radius:6px; font-size:8px; }
  .finder-title { font-size:clamp(1.85rem,9.3vw,2.55rem); }
  .finder-intro-copy { font-size:11px; line-height:1.55; }
  .finder-app { margin-top:20px; border-radius:22px; }
  .finder-topbar { padding:12px 13px; }
  .finder-step-label { font-size:7.5px; }
  .finder-progress { height:4px; margin-top:6px; }
  .finder-restart { width:32px; height:32px; border-radius:10px; font-size:15px; }
  .finder-question-view { grid-template-columns:38px 1fr; gap:10px; padding:14px; }
  .finder-question-icon { width:38px; height:38px; border-radius:12px; font-size:15px; }
  .finder-question-kicker { font-size:7.5px; }
  .finder-question-copy h3,.finder-result-head h3 { margin-top:3px; font-size:18px; }
  .finder-question-copy > p:last-child { margin-top:4px; font-size:9.5px; }
  .finder-options { gap:7px; margin-top:2px; }
  .finder-option { min-height:86px; gap:8px; border-radius:15px; padding:10px; }
  .finder-option-icon { width:28px; height:28px; border-radius:9px; font-size:13px; }
  .finder-option strong { font-size:10.5px; }
  .finder-option small { margin-top:2px; font-size:8.5px; }
  .finder-option.is-selected::after { top:7px; right:7px; width:18px; height:18px; border-radius:6px; font-size:8px; }
  .finder-actions { padding-top:11px; }
  .finder-back { font-size:9.5px; }
  .finder-next { min-height:38px; border-radius:12px; padding-inline:12px; font-size:9.5px; }
  .finder-result { padding:14px; }
  .finder-result-head { grid-template-columns:38px 1fr; gap:10px; }
  .finder-result-icon { width:38px; height:38px; border-radius:12px; font-size:13px; }
  .finder-result-head > div > p:last-child { margin-top:5px; font-size:9.5px; }
  .finder-recommendations { margin-top:13px; gap:7px; }
  .finder-match-card { grid-template-columns:58px 1fr auto; gap:9px; border-radius:15px; padding:7px; }
  .finder-match-card img { width:58px; height:58px; border-radius:11px; }
  .finder-match-meta small { font-size:7px; }
  .finder-match-meta strong { font-size:13px; }
  .finder-match-meta span { font-size:8px; }
  .finder-match-score { min-width:39px; height:39px; border-radius:11px; font-size:9px; }
  .finder-match-score b { font-size:12px; }
  .finder-result-actions { gap:12px; margin-top:13px; }
  .finder-result-actions .button { min-height:39px; border-radius:12px; padding-inline:12px; font-size:9px; }
  .finder-edit { font-size:9px; }

  /* Reviews feel like an app carousel instead of a tall stack */
  .reviews-grid { display:flex !important; gap:10px !important; overflow-x:auto; margin-inline:-12px; padding:2px 12px 16px; scroll-snap-type:x mandatory; scrollbar-width:none; }
  .reviews-grid::-webkit-scrollbar { display:none; }
  .reviews-grid .review-card { width:78vw; min-width:78vw; min-height:215px; scroll-snap-align:start; border-radius:20px; padding:18px; }
  .review-card blockquote { margin-top:15px; font-size:16px; line-height:1.32; }
  .review-card footer { margin-top:18px; }

  /* Big editorial/banner sections are intentionally shorter on phones */
  .process-grid { border-radius:25px !important; }
  .process-video { min-height:275px !important; }
  .process-video > span:last-child { bottom:18px !important; left:18px !important; right:18px !important; }
  .process-video strong { font-size:25px !important; }
  .play-button { width:48px; height:48px; border-radius:16px; }
  .process-copy { padding:22px !important; }
  .process-copy h2 { font-size:30px !important; }
  .process-copy .mt-10 { margin-top:24px !important; }
  .process-copy .grid.gap-7 { gap:17px !important; }
  .process-step { grid-template-columns:32px 1fr; gap:11px; padding-top:13px; }
  .process-step > span { width:30px; height:30px; border-radius:10px; }
  .process-step strong { font-size:13px; }
  .process-step p { margin-top:3px; font-size:10px; line-height:1.45; }

  #poveste .grid { gap:22px !important; }
  #poveste figure { border-radius:25px !important; }
  #poveste figure img { aspect-ratio:4/3 !important; }
  #poveste .mt-6 { margin-top:15px !important; font-size:13px !important; line-height:1.65 !important; }
  #poveste .mt-8 { margin-top:18px !important; }
  .stat-card { padding:13px; border-radius:16px; }

  .origin-panel { border-radius:25px; }
  .origin-layout { min-height:0 !important; }
  .origin-copy { padding:22px !important; }
  .origin-copy h2 { font-size:37px !important; }
  .origin-copy .mt-10 { margin-top:18px !important; font-size:10.5px !important; line-height:1.55 !important; }
  .origin-visual { min-height:310px !important; }
  .origin-data-card { bottom:14px; left:14px; right:14px; border-radius:19px; padding:15px; }
  .origin-data-card h3 { margin-top:7px !important; font-size:23px !important; }
  .origin-data-card dl { margin-top:13px !important; gap:11px 16px !important; font-size:10px !important; }

  .offer-card { border-radius:25px; }
  .offer-card .p-7 { padding:22px !important; }
  .offer-card .mt-6 { margin-top:16px !important; }
  .offer-card p[class*="text-[clamp"] { font-size:64px !important; }
  .offer-card h2 { margin-top:12px !important; font-size:27px !important; }
  .offer-card h2 + p { margin-top:9px !important; font-size:11px; line-height:1.55; }
  .offer-card .button { margin-top:18px !important; min-height:42px; border-radius:13px; font-size:10px; }
  .offer-media { min-height:270px !important; }
  .offer-media > div:last-child { bottom:12px !important; right:12px !important; padding:8px 10px !important; border-radius:12px !important; font-size:9px !important; }
  .offer-orb { width:230px; height:230px; left:38%; top:-105px; }

  .ugc-track { gap:9px; padding-inline:12px; }
  .ugc-card { width:61vw; border-radius:20px; }

  .guides-grid { display:flex !important; gap:10px !important; overflow-x:auto; margin-inline:-12px; padding:2px 12px 16px; scroll-snap-type:x mandatory; scrollbar-width:none; }
  .guides-grid::-webkit-scrollbar { display:none; }
  .guides-grid .guide-card { width:76vw; min-width:76vw; border-radius:20px; scroll-snap-align:start; }
  .guide-card > div { padding:15px !important; }
  .guide-card h3 { font-size:17px; }
  .guide-card > div > p:last-child { font-size:10px; line-height:1.5; }

  .newsletter-panel { border-radius:25px; padding:22px; }
  .newsletter-panel h2 { font-size:29px !important; }
  .newsletter-form { margin-top:20px; }
}
@media(max-width:390px){
  .product-grid .product-card .flex.items-start { gap:6px !important; }
  .product-title { font-size:15px; }
  .product-price { font-size:11px; }
  .product-grid { gap:8px; }
}

/* Menu fix: the feature card is text-only in the final navigation. */
.mega-menu-feature .mega-menu-icon { display:none; }

.mobile-quick-actions a { display:flex; min-height:51px; flex-direction:column; align-items:center; justify-content:center; gap:4px; border:1px solid var(--line); border-radius:15px; background:rgba(255,255,255,.62); font-size:9px; font-weight:800; }
.mobile-quick-actions a > span { font-size:17px; line-height:1; }
.mobile-quick-actions a b { display:inline-grid; place-items:center; min-width:17px; height:17px; margin-left:2px; border-radius:6px; background:var(--brand); font-size:8px; }


/* V3: logo size is global so internal pages match the homepage. */
.site-header .site-logo-image{width:54px!important;height:54px!important;max-width:54px!important;max-height:54px!important;object-fit:contain;display:block;flex:0 0 auto;}
.site-footer .site-logo-image{width:72px!important;height:72px!important;max-width:72px!important;max-height:72px!important;object-fit:contain;display:block;}
@media(max-width:640px){.site-header .site-logo-image{width:46px!important;height:46px!important;max-width:46px!important;max-height:46px!important;}.site-footer .site-logo-image{width:60px!important;height:60px!important;max-width:60px!important;max-height:60px!important;}}

/* =========================================================
   V3.2 — UI consistency fixes
   Text arrows on iOS, real SVG menu icons, 2+1 nav CTA,
   and Coffee Match icon sizing.
   ========================================================= */
html,body{font-variant-emoji:text;}
.ui-arrow{display:inline-block;width:1em;height:1em;flex:0 0 auto;vertical-align:-.12em;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.button .ui-arrow,.text-link .ui-arrow{margin-left:.18em;}

/* Desktop offer CTA sits with the primary navigation, not with utility icons. */
.nav-offer-pill{
  display:inline-flex;
  min-height:38px;
  align-items:center;
  justify-content:center;
  gap:7px;
  margin-left:7px;
  border:1px solid rgba(23,23,18,.10);
  border-radius:13px;
  background:#f8c900;
  padding:0 12px;
  color:#171712;
  box-shadow:0 8px 22px rgba(191,141,0,.14);
  font-family:Manrope,sans-serif;
  font-size:12px;
  font-weight:900;
  line-height:1;
  text-decoration:none;
  white-space:nowrap;
  transition:transform .2s ease,background .2s ease,box-shadow .2s ease;
}
.nav-offer-pill strong{font-size:13px;letter-spacing:-.02em;}
.nav-offer-pill span{font-size:10px;font-weight:800;opacity:.66;}
.nav-offer-pill:hover{background:#ffda32;transform:translateY(-1px);box-shadow:0 12px 28px rgba(191,141,0,.18);}
@media(max-width:1180px) and (min-width:1024px){
  .nav-offer-pill{padding:0 9px;margin-left:4px;}
  .nav-offer-pill span{display:none;}
}

/* Mobile drawer quick actions: never rely on Unicode/emoji glyphs. */
.mobile-quick-actions .mobile-quick-icon{
  display:grid;
  width:22px;
  height:22px;
  place-items:center;
  line-height:1;
}
.mobile-quick-actions .mobile-quick-icon svg{
  width:21px;
  height:21px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.75;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.mobile-quick-actions a>span.mobile-quick-icon,
.mobile-quick-actions button>span.mobile-quick-icon{font-size:0;}

/* Coffee Match uses descriptive line icons instead of abstract symbols. */
.finder-question-icon{display:none!important;}
.finder-option-icon{
  display:grid!important;
  place-items:center!important;
  width:42px!important;
  height:42px!important;
  flex:0 0 42px!important;
  border-radius:13px!important;
}
.finder-option-icon svg{
  width:24px;
  height:24px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.finder-restart svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}

/* The traceability visual always has a neutral fallback even if a remote image fails. */
.origin-visual{background:linear-gradient(145deg,#27251e,#5c574b);}
.origin-visual>img{display:block;}

@media(max-width:640px){
  .finder-option-icon{width:44px!important;height:44px!important;flex-basis:44px!important;border-radius:13px!important;}
  .finder-option-icon svg{width:25px;height:25px;}
}

/* ============================================================
   CURRENT THEME PATCH — MOBILE HERO CENTERING + TOUCH-SCROLL UGC
   Applied on top of the user's latest uploaded theme.
   ============================================================ */
@media (max-width:640px){
  /* Keep the hero content optically centered above the proof dock. */
  .hero-stage{
    justify-content:center!important;
    align-items:center!important;
    padding-top:18px!important;
    padding-bottom:112px!important;
  }
  .hero-center{
    width:100%!important;
    align-items:center!important;
    text-align:center!important;
    transform:translateY(-10px);
  }
  .hero-title-v3,
  .hero-lead-v3{
    margin-left:auto!important;
    margin-right:auto!important;
  }
  .hero-title-v3{max-width:96%!important;}
  .hero-lead-v3{max-width:92%!important;}
  .hero-actions-v3{
    width:100%!important;
    justify-content:center!important;
  }

  /* Make the social / Instagram strip swipeable on touch devices. */
  .ugc-track{
    display:flex!important;
    flex-wrap:nowrap!important;
    width:100%!important;
    max-width:100vw!important;
    gap:11px!important;
    overflow-x:auto!important;
    overflow-y:hidden!important;
    padding:4px 14px 18px!important;
    scroll-snap-type:x mandatory!important;
    scroll-padding-inline:14px!important;
    -webkit-overflow-scrolling:touch!important;
    overscroll-behavior-inline:contain!important;
    touch-action:pan-x!important;
    scrollbar-width:none!important;
  }
  .ugc-track::-webkit-scrollbar{display:none!important;}
  .ugc-card{
    flex:0 0 72vw!important;
    width:72vw!important;
    min-width:72vw!important;
    max-width:320px!important;
    scroll-snap-align:start!important;
    scroll-snap-stop:normal!important;
  }
}

@media (max-width:390px){
  .hero-center{transform:translateY(-6px);}
  .ugc-card{
    flex-basis:78vw!important;
    width:78vw!important;
    min-width:78vw!important;
  }
}

/* =========================================================
   PDF REVIEW PATCH 2026-08 — navigation, search and guide pages
   Added on top of the user's latest theme without removing prior rules.
   ========================================================= */

/* Search overlay opened from both desktop and mobile menu actions. */
.site-search-shell{
  position:fixed;
  inset:0;
  z-index:1600;
  display:grid;
  place-items:start center;
  padding:clamp(84px,11vh,128px) 18px 24px;
  pointer-events:none;
  opacity:0;
  transition:opacity .2s ease;
}
.site-search-shell.is-open{pointer-events:auto;opacity:1;}
.site-search-backdrop{position:absolute;inset:0;background:rgba(17,17,12,.46);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);}
.site-search-dialog{
  position:relative;
  z-index:1;
  width:min(720px,100%);
  border:1px solid rgba(255,255,255,.7);
  border-radius:28px;
  background:rgba(255,253,245,.96);
  box-shadow:0 34px 100px rgba(17,17,12,.22);
  padding:24px;
  backdrop-filter:blur(22px) saturate(130%);
  -webkit-backdrop-filter:blur(22px) saturate(130%);
}
.site-search-head{display:flex;align-items:center;justify-content:space-between;gap:18px;}
.site-search-head>div{display:grid;gap:4px;}
.site-search-head span{font-size:9px;font-weight:900;letter-spacing:.16em;color:rgba(23,23,18,.42);}
.site-search-head strong{font:800 clamp(25px,3.2vw,38px)/1 Manrope,sans-serif;letter-spacing:-.045em;}
.site-search-close{display:grid;place-items:center;width:44px;height:44px;border:1px solid rgba(23,23,18,.1);border-radius:14px;background:#fff;font-size:25px;line-height:1;}
.site-search-form{display:grid;gap:8px;margin-top:24px;}
.site-search-form label{font-size:12px;font-weight:750;color:rgba(23,23,18,.58);}
.site-search-form>div{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:8px;}
.site-search-form input{min-width:0;height:54px;border:1px solid rgba(23,23,18,.1);border-radius:15px;background:#fff;padding:0 16px;font-size:15px;outline:none;}
.site-search-form input:focus{border-color:rgba(23,23,18,.32);box-shadow:0 0 0 3px rgba(248,201,0,.14);}
.site-search-form button{min-height:54px;border-radius:15px;background:var(--ink);color:#fff;padding:0 22px;font-size:13px;font-weight:900;}
.site-search-shortcuts{display:flex;align-items:center;flex-wrap:wrap;gap:7px;margin-top:15px;}
.site-search-shortcuts>span{margin-right:2px;font-size:10px;font-weight:800;color:rgba(23,23,18,.45);}
.site-search-shortcuts a{border:1px solid rgba(23,23,18,.08);border-radius:999px;background:#fff;padding:7px 10px;font-size:10px;font-weight:800;}

/* Keep the desktop promo CTA stable instead of allowing it to be compressed out. */
.desktop-nav{flex:0 1 auto;min-width:0;}
.nav-dropdown{flex:0 0 auto;}
.nav-offer-pill{flex:0 0 auto!important;visibility:visible!important;opacity:1!important;}
@media(min-width:1024px) and (max-width:1210px){
  .site-header .page-shell{gap:10px!important;}
  .desktop-nav{gap:0!important;}
  .nav-trigger{padding-inline:8px!important;font-size:11.5px!important;}
  .nav-offer-pill{min-height:36px!important;padding-inline:10px!important;margin-left:2px!important;}
  .nav-offer-pill strong{font-size:12px!important;}
}

/* Mobile quick actions: clearer icon size and cart quantity anchored to the card's top-right. */
.mobile-quick-actions>button,.mobile-quick-actions>a{position:relative!important;min-width:0!important;}
.mobile-quick-actions .mobile-quick-icon{width:27px!important;height:27px!important;}
.mobile-quick-actions .mobile-quick-icon svg{width:24px!important;height:24px!important;stroke-width:1.9!important;}
.mobile-quick-actions .mobile-quick-label{font-size:11px!important;font-weight:850!important;line-height:1.15!important;}
.mobile-quick-actions .mobile-quick-cart #mobile-cart-count{
  position:absolute!important;
  top:8px!important;
  right:8px!important;
  min-width:22px!important;
  height:22px!important;
  margin:0!important;
  border-radius:999px!important;
  padding:0 6px!important;
  font-size:10px!important;
  box-shadow:0 4px 12px rgba(191,141,0,.18);
}

/* New editorial guide pages created from the Descoperă menu. */
.guide-page,.guide-index-page{padding-bottom:64px;}
.guide-hero,.guide-index-hero{padding:26px 0 30px;}
.guide-breadcrumb{display:flex;align-items:center;gap:8px;margin-bottom:16px;color:rgba(23,23,18,.42);font-size:11px;font-weight:750;}
.guide-hero-card{display:grid;grid-template-columns:minmax(0,1fr) minmax(360px,.78fr);overflow:hidden;border:1px solid rgba(23,23,18,.08);border-radius:32px;background:rgba(255,255,255,.7);box-shadow:0 20px 65px rgba(23,23,18,.06);}
.guide-hero-copy{display:flex;min-height:520px;flex-direction:column;justify-content:center;padding:clamp(34px,5vw,72px);}
.guide-hero-copy h1,.guide-index-hero h1{margin-top:12px;font:800 clamp(48px,6vw,84px)/.94 Manrope,sans-serif;letter-spacing:-.065em;}
.guide-hero-copy>p:not(.section-kicker),.guide-index-hero>div>p:last-child{max-width:720px;margin-top:20px;color:rgba(23,23,18,.6);font-size:17px;line-height:1.65;}
.guide-meta-line{display:flex;flex-wrap:wrap;gap:8px;margin-top:26px;}
.guide-meta-line span{border:1px solid rgba(23,23,18,.08);border-radius:999px;background:#fff;padding:8px 11px;font-size:10px;font-weight:850;}
.guide-hero-media{min-height:520px;}
.guide-hero-media img{width:100%;height:100%;object-fit:cover;display:block;}
.guide-content-section{padding:34px 0 20px;}
.guide-content-layout{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:34px;align-items:start;}
.guide-article{display:grid;gap:14px;}
.guide-article>section{position:relative;border:1px solid rgba(23,23,18,.08);border-radius:24px;background:rgba(255,255,255,.66);padding:28px 30px 30px;}
.guide-section-number{display:inline-grid;place-items:center;min-width:36px;height:30px;border-radius:10px;background:rgba(248,201,0,.18);font-size:10px;font-weight:900;letter-spacing:.08em;}
.guide-article h2{margin-top:14px;font:800 clamp(24px,2.8vw,36px)/1.04 Manrope,sans-serif;letter-spacing:-.045em;}
.guide-article p{margin-top:13px;color:rgba(23,23,18,.62);font-size:16px;line-height:1.72;}
.guide-side-card{position:sticky;top:104px;border-radius:25px;background:#f8c900;padding:25px;overflow:hidden;}
.guide-side-card>span{font-size:9px;font-weight:900;letter-spacing:.15em;}
.guide-side-card h2{margin-top:9px;font:800 30px/1 Manrope,sans-serif;letter-spacing:-.05em;}
.guide-side-card p{margin-top:13px;font-size:13px;line-height:1.55;color:rgba(23,23,18,.65);}
.guide-side-card a{display:inline-flex;align-items:center;min-height:44px;margin-top:18px;border-radius:13px;background:#171712;color:#fff;padding:0 14px;font-size:11px;font-weight:900;}
.guide-index-hero>div{max-width:900px;}
.guide-index-section{padding:10px 0 40px;}
.guide-index-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;}
.guide-index-card{overflow:hidden;border:1px solid rgba(23,23,18,.08);border-radius:24px;background:rgba(255,255,255,.68);transition:transform .2s ease,box-shadow .2s ease;}
.guide-index-card:hover{transform:translateY(-3px);box-shadow:0 18px 48px rgba(23,23,18,.08);}
.guide-index-media{aspect-ratio:1.35;overflow:hidden;background:#eee9d8;}
.guide-index-media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s ease;}
.guide-index-card:hover img{transform:scale(1.025);}
.guide-index-copy{padding:20px;}
.guide-index-copy>span{font-size:8px;font-weight:900;letter-spacing:.12em;color:rgba(23,23,18,.42);}
.guide-index-copy h2{margin-top:9px;font:800 23px/1.05 Manrope,sans-serif;letter-spacing:-.045em;}
.guide-index-copy p{margin-top:10px;color:rgba(23,23,18,.55);font-size:12px;line-height:1.55;}
.guide-index-copy strong{display:inline-flex;margin-top:16px;font-size:11px;}

@media(max-width:900px){
  .guide-hero-card{grid-template-columns:1fr;}
  .guide-hero-media{order:-1;min-height:0;aspect-ratio:16/9;}
  .guide-hero-copy{min-height:0;padding:28px;}
  .guide-content-layout{grid-template-columns:1fr;}
  .guide-side-card{position:static;}
  .guide-index-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:640px){
  .site-search-shell{padding:74px 10px 10px;align-items:start;}
  .site-search-dialog{border-radius:22px;padding:18px;}
  .site-search-head strong{font-size:26px;}
  .site-search-form>div{grid-template-columns:1fr;}
  .site-search-form input,.site-search-form button{height:50px;min-height:50px;}
  .site-search-shortcuts{gap:5px;}
  .site-search-shortcuts a{font-size:9px;}
  .guide-page,.guide-index-page{padding-bottom:40px;}
  .guide-hero,.guide-index-hero{padding:12px 0 20px;}
  .guide-breadcrumb{font-size:9px;margin-bottom:10px;overflow:hidden;white-space:nowrap;}
  .guide-hero-card{border-radius:24px;}
  .guide-hero-media{aspect-ratio:4/3;}
  .guide-hero-copy{padding:22px 19px 24px;}
  .guide-hero-copy h1,.guide-index-hero h1{font-size:clamp(36px,11vw,50px);line-height:.96;}
  .guide-hero-copy>p:not(.section-kicker),.guide-index-hero>div>p:last-child{margin-top:14px;font-size:14px;line-height:1.55;}
  .guide-content-section{padding-top:18px;}
  .guide-content-layout{gap:16px;}
  .guide-article{gap:10px;}
  .guide-article>section{border-radius:19px;padding:20px 18px 21px;}
  .guide-article h2{font-size:26px;}
  .guide-article p{font-size:14px;line-height:1.65;}
  .guide-side-card{border-radius:20px;padding:20px;}
  .guide-index-grid{grid-template-columns:1fr;gap:11px;}
  .guide-index-card{border-radius:20px;}
  .guide-index-copy{padding:16px;}
  .guide-index-copy h2{font-size:21px;}
}


/* =========================================================
   CATALOG + HOMEPAGE DATA PATCH 2026-08-12
   Built on the current installed theme. No legacy rules removed.
   ========================================================= */

/* Coffee Match result cards now point to real WooCommerce products. */
.finder-match-price{
  display:block;
  margin-top:7px;
  color:var(--ink);
  font-style:normal;
  font-family:Manrope,sans-serif;
  font-size:13px;
  font-weight:900;
  letter-spacing:-.02em;
}
.finder-match-score>small{
  display:block;
  margin-top:3px;
  color:rgba(23,23,18,.42);
  font-size:8px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

/* Traceability: keep the plantation visual and rotate actual catalog products. */
.origin-data-stack{
  position:absolute;
  left:36px;
  right:36px;
  bottom:34px;
  min-height:284px;
  z-index:3;
}
.origin-data-stack .origin-slide{
  position:absolute;
  inset:auto auto 0 0;
  width:min(470px,calc(100% - 54px));
  margin:0;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(22px) scale(.985);
  transition:opacity .42s ease,transform .42s ease,visibility .42s;
  text-decoration:none;
}
.origin-data-stack .origin-slide.is-active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateY(0) scale(1);
}
.origin-country{
  display:inline-flex;
  align-items:center;
  min-height:26px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:999px;
  padding:0 9px;
  color:rgba(255,255,255,.72);
  font-size:9px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.origin-card-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:18px;
  color:#ffda32;
  font-size:11px;
  font-weight:900;
}
.origin-slider-controls{
  position:absolute;
  right:0;
  bottom:10px;
  display:grid;
  gap:7px;
}
.origin-slider-controls button{
  width:9px;
  height:9px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.38);
  padding:0;
  transition:height .2s ease,background .2s ease;
}
.origin-slider-controls button.is-active{
  height:25px;
  background:var(--brand);
}

/* Six guide cards: two balanced rows on desktop, swipe rail on mobile. */
.guides-grid-expanded{
  align-items:stretch;
}
.guides-grid-expanded .guide-card{
  height:100%;
}

/* Mobile footer: hierarchy and spacing should stay legible, not collapse into tiny text. */
@media(max-width:640px){
  .site-footer .page-shell{padding-top:38px!important;padding-bottom:32px!important;}
  .site-footer .page-shell>div:first-child{
    display:grid!important;
    grid-template-columns:1fr 1fr!important;
    gap:34px 20px!important;
  }
  .site-footer .page-shell>div:first-child>div:first-child{
    grid-column:1/-1!important;
  }
  .site-footer .page-shell>div:first-child>div:last-child{
    grid-column:1/-1!important;
  }
  .site-footer .footer-title{
    font-size:11px!important;
    letter-spacing:.12em!important;
  }
  .site-footer .footer-links{
    margin-top:13px!important;
    gap:9px!important;
    font-size:13px!important;
    line-height:1.45!important;
  }
  .site-footer address{
    font-size:13px!important;
    line-height:1.7!important;
  }
  .site-footer p.text-sm,
  .site-footer .max-w-sm{
    font-size:12px!important;
    line-height:1.65!important;
  }
  .site-footer .mt-12{
    margin-top:34px!important;
    font-size:10px!important;
    line-height:1.5!important;
  }

  .origin-data-stack{
    left:14px;
    right:14px;
    bottom:14px;
    min-height:226px;
  }
  .origin-data-stack .origin-slide{
    width:calc(100% - 28px);
    padding:15px;
  }
  .origin-data-stack .origin-slide h3{
    font-size:21px!important;
    line-height:1.04!important;
  }
  .origin-data-stack .origin-slide dl{
    font-size:10px!important;
    gap:10px 14px!important;
  }
  .origin-data-stack .origin-slide dd{
    font-size:11px!important;
  }
  .origin-slider-controls{
    right:0;
    bottom:8px;
  }
  .origin-card-link{
    margin-top:12px;
    font-size:10px;
  }
  .finder-match-price{font-size:12px;}
}


/* Global announcement bar: current offer + free shipping. */
.announcement-inner{
  min-height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding-top:7px;
  padding-bottom:7px;
  font-size:12px;
  font-weight:800;
  line-height:1.2;
  letter-spacing:-.01em;
}
.announcement-offer,.announcement-shipping{display:inline-flex;align-items:center;justify-content:center;gap:6px;white-space:nowrap;}
.announcement-dot{width:7px;height:7px;border-radius:50%;background:#171712;flex:0 0 auto;}
.announcement-offer a{color:inherit;text-decoration:underline;text-decoration-color:rgba(23,23,18,.32);text-underline-offset:3px;}
.announcement-separator{width:1px;height:16px;background:rgba(23,23,18,.22);flex:0 0 auto;}
.announcement-shipping svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;flex:0 0 auto;}
.announcement-shipping span{font-weight:650;opacity:.72;}
@media(max-width:640px){
  .announcement-inner{gap:7px;font-size:10px;padding-top:6px;padding-bottom:6px;}
  .announcement-wide,.announcement-offer a{display:none;}
  .announcement-separator{height:14px;}
  .announcement-shipping svg{width:16px;height:16px;}
}


/* ============================================================
   CURRENT REQUEST — consistent roaster copy + mobile 2+1 CTA
   ============================================================ */
.mobile-header-offer{display:none;}

@media (max-width:640px){
  /* Both editorial paragraphs under Cosmin use exactly the same reading size. */
  #poveste p.mt-6,
  #poveste p.mt-4{
    font-size:13px!important;
    line-height:1.65!important;
    letter-spacing:0!important;
  }

  /* Keep the 2+1 promotion visible directly in the mobile header. */
  .mobile-header-offer{
    display:inline-flex;
    min-height:38px;
    align-items:center;
    justify-content:center;
    gap:4px;
    padding:0 10px;
    border:1px solid rgba(23,23,18,.10);
    border-radius:13px;
    background:var(--brand);
    color:var(--ink);
    box-shadow:0 7px 18px rgba(191,141,0,.16);
    font-family:Manrope,sans-serif;
    line-height:1;
    white-space:nowrap;
  }
  .mobile-header-offer strong{font-size:12px;font-weight:900;letter-spacing:-.02em;}
  .mobile-header-offer span{font-size:9px;font-weight:850;opacity:.66;}
}

@media (max-width:360px){
  .mobile-header-offer{padding-inline:8px;gap:3px;}
  .mobile-header-offer span{display:none;}
}

/* Cookie consent — discreet, brand-matched and fully responsive. */
.cookie-consent{position:fixed;z-index:99990;left:18px;right:18px;bottom:18px;display:none;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:24px;max-width:1180px;margin:auto;padding:18px 20px;border:1px solid rgba(23,23,18,.10);border-radius:24px;background:rgba(255,253,245,.96);box-shadow:0 24px 70px rgba(23,23,18,.18);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px)}
.cookie-consent.is-visible{display:grid}.cookie-consent-copy{max-width:760px}.cookie-consent-kicker{display:block;font-size:9px;font-weight:900;letter-spacing:.17em;text-transform:uppercase;color:rgba(23,23,18,.46)}.cookie-consent-copy strong{display:block;margin-top:4px;font:800 18px/1.2 Manrope,sans-serif;letter-spacing:-.025em}.cookie-consent-copy p{margin-top:5px;font-size:12px;line-height:1.55;color:rgba(23,23,18,.62)}.cookie-consent-copy a{display:inline-block;margin-top:5px;font-size:11px;font-weight:800;text-decoration:underline;text-underline-offset:3px}.cookie-consent-actions{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:8px}.cookie-btn{min-height:42px;padding:0 15px;border-radius:13px;font-size:11px;font-weight:850;transition:transform .18s ease,background .18s ease}.cookie-btn:hover{transform:translateY(-1px)}.cookie-btn-primary{background:#171712;color:#fff}.cookie-btn-secondary{border:1px solid rgba(23,23,18,.12);background:rgba(255,255,255,.78);color:#171712}
.footer-cookie-settings{padding:0;background:none;border:0;color:inherit;font:inherit;cursor:pointer}.footer-cookie-settings:hover{color:#171712}
.cookie-modal{position:fixed;z-index:99999;inset:0;display:none;place-items:center;padding:18px}.cookie-modal.is-visible{display:grid}.cookie-modal-backdrop{position:absolute;inset:0;background:rgba(12,12,10,.58);backdrop-filter:blur(7px);-webkit-backdrop-filter:blur(7px)}.cookie-modal-card{position:relative;width:min(100%,620px);max-height:min(86svh,760px);overflow:auto;padding:26px;border:1px solid rgba(255,255,255,.5);border-radius:28px;background:#fffdf5;box-shadow:0 30px 100px rgba(0,0,0,.28)}.cookie-modal-head{display:flex;align-items:flex-start;justify-content:space-between;gap:20px}.cookie-modal-head span{font-size:9px;font-weight:900;letter-spacing:.18em;color:rgba(23,23,18,.44)}.cookie-modal-head h2{margin-top:5px;font:800 clamp(25px,4vw,34px)/1 Manrope,sans-serif;letter-spacing:-.045em}.cookie-modal-close{display:grid;place-items:center;flex:0 0 40px;width:40px;height:40px;border:1px solid rgba(23,23,18,.1);border-radius:13px;background:#fff;font-size:22px}.cookie-modal-intro{margin:18px 0 10px;font-size:13px;line-height:1.6;color:rgba(23,23,18,.62)}.cookie-category{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:18px;padding:17px 0;border-top:1px solid rgba(23,23,18,.08)}.cookie-category strong{font:800 14px Manrope,sans-serif}.cookie-category p{margin-top:3px;font-size:11px;line-height:1.5;color:rgba(23,23,18,.55)}.cookie-required{font-size:10px;font-weight:850;color:rgba(23,23,18,.48)}.cookie-toggle-row{position:relative;cursor:pointer}.cookie-toggle-row input{position:absolute;opacity:0;pointer-events:none}.cookie-switch{position:relative;width:46px;height:26px;border-radius:999px;background:rgba(23,23,18,.14);transition:background .18s ease}.cookie-switch:after{content:"";position:absolute;top:4px;left:4px;width:18px;height:18px;border-radius:50%;background:#fff;box-shadow:0 2px 7px rgba(0,0,0,.18);transition:transform .18s ease}.cookie-toggle-row input:checked+.cookie-switch{background:#f8c900}.cookie-toggle-row input:checked+.cookie-switch:after{transform:translateX(20px)}.cookie-toggle-row input:focus-visible+.cookie-switch{outline:3px solid rgba(23,23,18,.35);outline-offset:3px}.cookie-modal-actions{display:flex;justify-content:flex-end;gap:8px;margin-top:14px;padding-top:18px;border-top:1px solid rgba(23,23,18,.08)}body.cookie-modal-open{overflow:hidden}
@media(max-width:760px){.cookie-consent{grid-template-columns:1fr;gap:13px;left:10px;right:10px;bottom:10px;padding:16px;border-radius:20px}.cookie-consent-actions{display:grid;grid-template-columns:1fr 1fr;width:100%}.cookie-consent-actions .cookie-btn-primary{grid-column:1/-1;grid-row:1}.cookie-btn{width:100%}.cookie-modal{padding:10px}.cookie-modal-card{padding:20px 16px;border-radius:23px}.cookie-modal-actions{display:grid;grid-template-columns:1fr}.cookie-modal-actions .cookie-btn-primary{grid-row:1}.cookie-category{gap:12px}}
