  :root{
    --accent: #5a9435;
    --accent-dark: #3b6a2a;
    --accent-dim: rgba(90,148,53,0.10);
    --accent-warm: #c07b3a;
    --ink: #14170f;
    --ink-muted: #6e6a55;
    --bg: #f3f1e4;
    --card: #fffef8;
    --line: #e1ddc4;
    --success: #22c55e;
    --mystic-shift: 0;
    --font: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  }

  *{ box-sizing: border-box; }
  html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body{
    margin:0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font);
    line-height: 1.5;
    position: relative;
    z-index: 0;
  }
  body::before,
  body::after{
    content:"";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    transition: opacity 180ms linear;
  }
  body::before{
    background:
      radial-gradient(980px 560px at 10% 12%, rgba(58,102,54,0.42), transparent 66%),
      radial-gradient(880px 500px at 88% 22%, rgba(145,98,44,0.28), transparent 72%),
      linear-gradient(180deg, #e9e4cc 0%, #ddd8bf 45%, #d0cab0 100%);
    opacity: calc(1 - (var(--mystic-shift) * 0.62));
  }
  body::after{
    background:
      radial-gradient(820px 460px at 16% 70%, rgba(26,74,48,0.52), transparent 68%),
      radial-gradient(980px 540px at 84% 84%, rgba(42,66,94,0.42), transparent 73%),
      linear-gradient(180deg, #cfc8ab 0%, #bcb496 44%, #a79d7d 100%);
    opacity: calc(var(--mystic-shift) * 1);
    z-index: -3;
  }
  a{ color: inherit; }
  button{ font: inherit; cursor: pointer; }

  .wrap{ max-width: 1180px; margin: 0 auto; padding: 0 24px; }

  .trust-bar{
    background: #1e2d1f;
    color: #d8e8c8;
    font-size: 12.5px;
  }
  .trust-bar .wrap{
    display:flex; align-items:center; justify-content:space-between;
    padding: 8px 24px; flex-wrap: wrap; gap: 8px;
  }
  .trust-bar-item{ display:flex; align-items:center; gap:6px; opacity:0.85; }
  .trust-bar-item .ti{ font-size: 13px; flex-shrink: 0; line-height: 1; }
  .trust-bar-item.hidden{ display:none; }

  /* Mobile: 2x2 info grid */
  @media (max-width: 560px){
    .trust-bar .wrap{
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      align-items:start;
      justify-content:stretch;
      padding: 8px 16px;
      gap: 6px 12px;
    }
    .trust-bar-item{
      width: 100%;
      min-width:0;
      font-size: 11px;
      line-height:1.28;
    }
  }

  .site-header{
    position: sticky; top: env(safe-area-inset-top, 0px); z-index: 50;
    background:
      linear-gradient(180deg, rgba(255,254,248,0.97) 0%, rgba(246,243,228,0.94) 100%);
    backdrop-filter: blur(12px) saturate(1.15);
    border-bottom: 1px solid rgba(90,148,53,0.18);
    box-shadow:
      0 1px 0 rgba(255,255,255,0.65) inset,
      0 10px 28px rgba(45,58,28,0.06);
  }
  .site-header::before{
    content:"";
    position:absolute; left:0; right:0; top:0; height:3px;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent) 42%, var(--accent-warm) 78%, var(--accent));
    opacity: 0.9;
  }
  .site-header::after{
    content:"";
    position:absolute; inset:0;
    pointer-events:none;
    opacity: 0.35;
    background-image:
      radial-gradient(circle at 12% 40%, rgba(90,148,53,0.10), transparent 42%),
      radial-gradient(circle at 88% 20%, rgba(192,123,58,0.08), transparent 38%);
  }
  .site-header .wrap{
    position:relative; z-index:1;
    display:flex; align-items:center; gap: 14px;
    padding: 14px 20px;
    min-height: 72px;
  }
  .site-header .header-main{
    gap: 10px;
  }
  .header-search-row{
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(90,148,53,0.12);
    background: rgba(255,254,248,0.55);
  }
  .header-search-row .wrap{
    min-height: 0;
    padding: 8px 20px 10px;
    gap: 0;
  }

  #brand{
    font-family: var(--font-display);
    font-size: 18px; font-weight: 700; letter-spacing: -0.02em;
    flex-shrink:0; text-decoration:none; color: var(--ink);
    display:flex; align-items:center; gap:11px; min-width:0; max-width: min(34vw, 240px);
  }
  #brand img{ height:44px; width:auto; max-width:170px; object-fit:contain; flex-shrink:0; }
  #brand .brand-mark{
    width:42px; height:42px; border-radius:14px; flex-shrink:0;
    display:inline-flex; align-items:center; justify-content:center;
    background:
      linear-gradient(145deg, rgba(90,148,53,0.18), rgba(59,106,42,0.08)),
      var(--card);
    border: 1px solid rgba(90,148,53,0.28);
    color: var(--accent-dark);
    box-shadow: 0 6px 16px rgba(59,106,42,0.10);
  }
  #brand .brand-mark .ti{ font-size: 22px; line-height:1; }
  #brand.has-logo .brand-mark{ display:none; }
  #brand .brand-copy{ min-width:0; display:flex; flex-direction:column; gap:2px; }
  #brand #brandName{ display:block; line-height:1.15; }
  #brand .tagline{
    display:block; font-family: var(--font); font-size: 11px; font-weight:500;
    color: var(--ink-muted); white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
    letter-spacing: 0.01em;
  }

  #headerNav{
    display:flex; align-items:center; gap: 5px; flex:1; min-width:0;
    overflow: hidden;
    padding: 2px 0;
  }
  #headerNav .header-nav-item{
    position:relative;
    flex:0 0 auto;
  }
  #headerNav .header-nav-item[hidden]{ display:none !important; }
  #headerNav .header-nav-link{
    text-decoration:none; font-size: 12px; font-weight:600; color: var(--ink);
    padding: 6px 10px; border-radius: 999px; white-space:nowrap;
    display:inline-flex; align-items:center; gap:4px;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(225,221,196,0.95);
    box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset;
    transition: background 140ms ease, border-color 140ms ease, color 140ms ease, transform 140ms ease;
    cursor:pointer;
  }
  #headerNav .header-nav-link .ti{ font-size: 12px; opacity: 0.75; }
  #headerNav .header-nav-item.is-open > .header-nav-link,
  #headerNav .header-nav-link:hover{
    background: var(--accent-dim);
    border-color: rgba(90,148,53,0.45);
    color: var(--accent-dark);
    transform: translateY(-1px);
  }

  .header-search{
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    align-items: center;
  }
  .header-search .ti-search{
    position: absolute;
    left: 11px;
    font-size: 15px;
    color: var(--ink-muted);
    pointer-events: none;
    z-index: 1;
  }
  .header-search input{
    width: 100%;
    border: 1px solid rgba(225,221,196,0.95);
    background: rgba(255,255,255,0.72);
    color: var(--ink);
    border-radius: 999px;
    padding: 9px 34px 9px 34px;
    font: inherit;
    font-size: 13px;
    font-weight: 500;
    outline: none;
    box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset;
    transition: border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
  }
  .header-search input::placeholder{ color: var(--ink-muted); opacity: 0.85; }
  .header-search input:focus{
    border-color: rgba(90,148,53,0.55);
    background: #fff;
    box-shadow: 0 0 0 3px var(--accent-dim);
  }
  .header-search-clear{
    position: absolute;
    right: 6px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--ink-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .header-search-clear:hover{ color: var(--ink); background: rgba(0,0,0,0.05); }
  .header-search-clear .ti{ font-size: 15px; line-height: 1; }
  .visually-hidden{
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
  }
  .search-landing-head{ margin-bottom: 18px; }
  .search-landing-head h1{ font-size: clamp(22px, 3vw, 30px); margin: 0 0 6px; font-weight: 800; }
  .search-landing-head .cat-count{ color: var(--ink-muted); font-size: 13px; }

  .header-nav-dropdown{
    display:none;
    position:fixed;
    min-width: 210px;
    max-width: min(300px, 78vw);
    max-height: min(50vh, 320px);
    overflow-y:auto;
    padding: 8px;
    border-radius: 14px;
    background: var(--card);
    border: 1px solid var(--line);
    box-shadow: 0 18px 42px rgba(20,23,15,0.18);
    z-index: 10050;
  }
  .header-nav-dropdown.is-open{
    display:block;
  }
  .header-nav-dropdown a{
    display:block;
    text-decoration:none;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    padding: 9px 11px;
    border-radius: 10px;
    background: transparent;
    border: 0;
    box-shadow: none;
    white-space: nowrap;
  }
  .header-nav-dropdown a:hover{
    background: var(--accent-dim);
    color: var(--accent-dark);
  }

  .header-categories{
    position:relative; flex-shrink:0;
  }
  .header-categories[hidden]{ display:none !important; }
  .header-categories-btn{
    display:inline-flex; align-items:center; justify-content:center; gap:6px;
    background: rgba(255,255,255,0.7); border:1px solid rgba(90,148,53,0.28); color: var(--accent-dark);
    min-width: 42px; height: 42px; padding: 0 12px; border-radius: 12px; cursor:pointer;
    box-shadow: 0 1px 0 rgba(255,255,255,0.75) inset;
  }
  .header-categories-btn .ti{ font-size: 20px; line-height: 1; }
  .header-categories-btn .menu-label{
    font-size: 12px; font-weight:700; letter-spacing: 0.02em;
  }
  .header-categories.open .header-categories-btn{
    border-color: var(--accent); color: var(--accent-dark); background: var(--accent-dim);
  }
  .header-categories-panel{
    display:none; position:fixed; top: 0; right: 12px;
    min-width: min(300px, calc(100vw - 48px)); max-width: min(360px, calc(100vw - 48px));
    max-height: min(420px, 58vh); overflow-y:auto; overscroll-behavior:contain;
    background: linear-gradient(180deg, #fffef8, #f7f4e6);
    border:1px solid rgba(90,148,53,0.22); border-radius: 16px;
    padding: 8px; box-shadow: 0 18px 44px rgba(35,48,22,0.16); z-index: 10060;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .header-categories-panel::-webkit-scrollbar{ display: none; width: 0; height: 0; }
  .header-categories.open .header-categories-panel{ display:block; }
  .header-categories-panel a{
    display:flex; align-items:center; justify-content:space-between; gap:10px;
    padding: 11px 12px; border-radius: 11px; text-decoration:none;
    font-size: 13px; font-weight:600; color: var(--ink);
  }
  .header-categories-panel a:hover{ background: var(--accent-dim); color: var(--accent-dark); }
  .header-categories-panel .cat-label{
    display:flex; align-items:center; gap:8px; min-width:0;
  }
  .header-categories-panel .cat-label span{
    overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
  }
  .header-categories-panel .cat-emoji{ font-size:15px; line-height:1; flex-shrink:0; }
  .header-categories-panel .cat-label .ti{ font-size:16px; color: var(--accent); line-height:1; flex-shrink:0; }
  .header-categories-panel .cat-count{
    font-size:11px; font-weight:500; color: var(--ink-muted); flex-shrink:0;
  }
  .header-categories-panel .panel-section{
    padding: 4px 0 6px;
  }
  .header-categories-panel .panel-section + .panel-section{
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px solid rgba(90,148,53,0.14);
  }
  .header-categories-panel .panel-section-label{
    display:block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-muted);
    padding: 4px 10px 8px;
  }
  .header-categories-panel .panel-sub{
    margin: 0 0 2px 18px;
    padding: 8px 12px;
    font-size: 12.5px;
    font-weight: 600;
    opacity: 0.92;
  }
  .header-categories-panel .panel-sub .cat-label .ti,
  .header-categories-panel .panel-sub .cat-emoji{
    font-size: 13px;
  }
  @media (min-width: 721px){
    .header-categories-panel .panel-block-header-nav{ display:none !important; }
    .header-categories-panel .panel-section-label-menu{ display:none !important; }
    .header-categories-panel .panel-section + .panel-section{
      margin-top: 0;
      padding-top: 0;
      border-top: 0;
    }
  }

  #cartBtn{
    display:flex; align-items:center; gap: 8px;
    background: linear-gradient(145deg, #6aa83f 0%, var(--accent) 48%, var(--accent-dark) 100%);
    color:#fff; border:none;
    padding: 11px 16px; border-radius: 14px; font-size: 13.5px; font-weight:700;
    cursor:pointer; flex-shrink:0;
    box-shadow:
      0 1px 0 rgba(255,255,255,0.28) inset,
      0 10px 22px rgba(59,106,42,0.28);
    transition: transform 140ms ease, box-shadow 140ms ease;
  }
  #cartBtn:hover{
    transform: translateY(-1px);
    box-shadow:
      0 1px 0 rgba(255,255,255,0.3) inset,
      0 14px 28px rgba(59,106,42,0.34);
  }
  #cartBtn .ti{ font-size: 17px; line-height: 1; }
  #cartLabel{
    background: rgba(255,255,255,0.22); border-radius:999px;
    min-width: 22px; text-align:center; padding:2px 7px; font-size:11.5px; font-weight:800;
  }

  @media (max-width: 720px){
    .site-header{
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto auto;
      grid-template-areas: "brand search cats cart";
      align-items: center;
      column-gap: 10px;
      padding: 12px 14px;
      min-height: 64px;
    }
    .site-header .header-main,
    .header-search-row,
    .header-search-row .wrap{
      display: contents;
    }
    #brand{
      grid-area: brand;
      max-width: min(42vw, 160px);
      font-size: 16px;
    }
    #brand .brand-mark{ width:38px; height:38px; border-radius:12px; }
    #headerNav{ display:none !important; }
    .header-search{
      grid-area: search;
      max-width: none;
      margin: 0;
      min-width: 0;
    }
    .header-search input{
      padding: 9px 32px 9px 32px;
      font-size: 12.5px;
    }
    .header-categories{
      grid-area: cats;
      position: relative;
      flex-shrink: 0;
    }
    .header-categories-btn .menu-label{ display:none; }
    .header-categories-panel{
      max-width: min(360px, calc(100vw - 24px));
      min-width: min(280px, calc(100vw - 24px));
      z-index: 10060;
    }
    #cartBtn{
      grid-area: cart;
      padding: 10px 12px;
      border-radius: 12px;
      flex-shrink: 0;
    }
  }

  .hero{ padding: 64px 0 56px 0; border-bottom: 1px solid var(--line); background: var(--card); position:relative; overflow:hidden; }
  .hero.has-banner{
    color:#fff;
    padding: 0;
    min-height: clamp(160px, calc(100vw / 3.2), 440px);
    display:flex;
    flex-direction: column;
    align-items:stretch;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: visible;
  }
  .hero-banners{
    position:absolute; inset:0; z-index:0;
    pointer-events:none;
  }
  .hero-banners[hidden]{ display:none !important; }
  .hero-banner-slide{
    position:absolute; inset:0;
    opacity:0;
    transition: opacity .75s ease;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    pointer-events:none;
  }
  .hero-banner-slide.is-active{
    opacity:1;
  }
  .hero-banner-slide.is-active.is-linked{
    pointer-events:auto;
  }
  .hero-banner-slide a{
    display:block; width:100%; height:100%;
    text-indent:-9999px; overflow:hidden;
  }
  .hero.has-banner::before{
    content:"";
    position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(18,35,20,0.25), rgba(18,35,20,0.45));
    pointer-events:none;
    z-index:1;
  }
  .hero .wrap{ max-width: 700px; text-align:center; margin: 0 auto; position:relative; z-index:2; }
  .hero.has-banner .wrap{
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    padding: 18px 20px 18px;
  }
  .hero.has-banner > .hero-categories{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
  }
  .hero-copy{ max-width: min(92vw, 760px); margin: 0 auto; }
  @media (min-width: 900px){
    .hero.has-banner{ background-position: center center; }
  }
  .hero.has-banner #heroSubtitle{ color: rgba(255,255,255,0.88); }
  #heroTitle{ font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin: 0 0 14px 0; line-height:1.2; }
  #heroSubtitle{ font-size: 15.5px; color: var(--ink-muted); line-height:1.6; margin: 0 0 20px 0; }
  #heroTitle:empty,
  #heroSubtitle:empty{ display:none; }
  .hero-categories{
    display:grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 12px;
    width: min(100%, 960px);
    margin-left:auto;
    margin-right:auto;
    position: relative;
    z-index: 2;
  }
  .hero.has-banner .hero-categories{
    margin-top: auto;
    margin-bottom: 8px;
  }
  .hero-categories[hidden]{ display:none !important; }
  .hero-cat{
    display:flex; align-items:center; justify-content:center;
    min-height: 128px;
    border-radius: 14px;
    overflow:hidden;
    position:relative;
    text-decoration:none;
    border:1px solid rgba(255,255,255,0.28);
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    box-shadow: 0 10px 24px rgba(0,0,0,0.20);
  }
  .hero-cat::before{
    content:"";
    position:absolute; inset:0;
    background:
      radial-gradient(120% 90% at 50% 50%, rgba(12,22,14,0.18), rgba(12,22,14,0.62) 72%),
      linear-gradient(180deg, rgba(12,22,14,0.22), rgba(12,22,14,0.58));
    z-index:1;
  }
  .hero-cat img{
    position:absolute; inset:0;
    width:100%; height:100%; object-fit:cover;
  }
  .hero-cat-name{
    position:relative; z-index:2;
    display:flex;
    align-items:center;
    justify-content:center;
    box-sizing: border-box;
    width:100%;
    height:100%;
    text-align:center;
    padding: 14px 12px;
    font-size: clamp(12px, 1.55vw, 15px);
    font-weight: 700;
    line-height: 1.2;
    color:#fff;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: manual;
  }

  @keyframes heroCatMove1{
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(-10px); }
  }
  @keyframes heroCatMove2{
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(-6px) translateX(6px); }
  }
  @keyframes heroCatMove3{
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(-6px) translateX(-6px); }
  }
  .hero.has-banner .hero-cat{
    will-change: transform;
  }
  .hero.has-banner .hero-categories .hero-cat:nth-child(1){ animation: heroCatMove1 4.8s ease-in-out infinite; }
  .hero.has-banner .hero-categories .hero-cat:nth-child(2){ animation: heroCatMove2 5.2s ease-in-out infinite; }
  .hero.has-banner .hero-categories .hero-cat:nth-child(3){ animation: heroCatMove3 5.6s ease-in-out infinite; }
  @media (prefers-reduced-motion: reduce){
    .hero.has-banner .hero-cat{ animation: none !important; }
  }
  @media (min-width: 900px){
    .hero.has-banner{
      margin-bottom: 250px;
    }
    .hero.has-banner > .hero-categories{
      bottom: -182px;
      width: min(95vw, 1100px);
      gap: 52px;
      margin-bottom: 0;
    }
    .hero-cat{
      min-height: 308px;
      border-radius: 20px;
      box-shadow: 0 22px 58px rgba(0,0,0,0.26);
    }
    .hero-cat-name{
      padding: 18px 16px;
      font-size: clamp(16px, 1.7vw, 22px);
      line-height: 1.2;
    }
  }

  .benefits{ background: rgba(243,241,228,0.55); padding: 32px 0; border-bottom: 1px solid var(--line); }
  .benefits-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
  .benefit-item{ display:flex; align-items:center; gap:12px; }
  .benefit-icon{
    width: 38px; height:38px; border-radius: 10px; background: var(--accent-dim);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .benefit-icon .ti{ font-size: 18px; color: var(--accent); line-height: 1; }
  .benefit-text strong{ display:block; font-size: 13px; }
  .benefit-text span{ font-size: 11.5px; color: var(--ink-muted); }

  @media (min-width: 860px){ .benefits-grid{ grid-template-columns: repeat(4,1fr); } }

  #main{
    padding: 48px 0 72px 0;
    background: linear-gradient(180deg, rgba(242,238,221,0.36), rgba(228,223,202,0.24));
  }

  #shop-categories{
    display:grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-bottom: 56px;
  }
  @media (min-width: 640px){ #shop-categories{ grid-template-columns: repeat(3,1fr); } }
  @media (min-width: 900px){ #shop-categories{ grid-template-columns: repeat(5,1fr); } }

  .category-tile{
    background: var(--card); border:1px solid var(--line); border-radius: 14px;
    padding: 20px 14px; text-align:center; text-decoration:none; color: var(--ink);
    transition: border-color 0.15s;
  }
  .category-tile:hover{ border-color: var(--accent); }
  .category-tile-icon{ margin-bottom: 8px; display:flex; justify-content:center; }
  .category-tile-icon .ti{ font-size: 24px; color: var(--accent); line-height: 1; }
  .category-tile-name{ font-size: 13px; font-weight:700; }
  .category-tile-meta{ font-size: 11px; color: var(--ink-muted); margin-top: 4px; }

  .bestsellers{
    margin-bottom: 48px;
  }
  .bestsellers h2{
    font-size: 19px; font-weight:800; margin: 0 0 6px 0;
    display:flex; align-items:center; gap:8px;
  }
  .bestsellers h2 .ti{ color: var(--accent); }
  .bestsellers-sub{ font-size: 13px; color: var(--ink-muted); margin: 0 0 16px; }
  .film-strip{
    display:flex; gap:14px; overflow-x:auto; padding: 4px 2px 12px;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  }
  .film-strip::-webkit-scrollbar{ height: 6px; }
  .film-strip::-webkit-scrollbar-thumb{ background: var(--line); border-radius: 99px; }
  .film-card{
    flex: 0 0 210px; scroll-snap-align: start;
    background: var(--card); border:1px solid var(--line); border-radius: 14px;
    padding: 12px; cursor:pointer; display:flex; flex-direction:column;
  }
  .film-card:hover{ border-color: var(--accent); }
  .film-card-img{
    width:100%; aspect-ratio: 1; background: var(--bg); border-radius: 10px;
    margin-bottom: 10px; overflow:hidden; display:flex; align-items:center; justify-content:center;
    color: var(--ink-muted); position:relative;
  }
  .film-card-img img{ width:100%; height:100%; object-fit:cover; }
  .film-card-img .ti{ font-size: 28px; opacity: 0.35; }
  .film-card h3{
    font-size: 13px; font-weight:700; margin:0 0 6px; line-height:1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    max-height: 1.3em;
    word-break: break-word;
  }
  .film-card .price{ font-size: 14px; font-weight:800; }
  .film-add{
    margin-top:8px; width:100%; background: var(--accent); color:#fff; border:none;
    padding: 8px; border-radius: 8px; font-size: 12px; font-weight:700;
  }
  .film-add[disabled]{ background: var(--line); color: var(--ink-muted); }

  .cart-upsell{ padding: 6px 16px 2px; border-top:0; }
  .cart-upsell h4{
    margin:0 0 4px; font-size:9px; font-weight:800; letter-spacing:0.04em;
    text-transform:uppercase; color: var(--ink-muted);
    display:flex; align-items:center; gap:5px;
  }
  .cart-upsell h4 .ti{ color: var(--accent); font-size:10px; }
  .upsell-strip{ display:flex; gap:8px; overflow-x:auto; padding-bottom:4px; }
  .upsell-card{
    flex: 0 0 100px; border:1px solid var(--line); border-radius: 8px; padding:6px;
    background: var(--bg); display:flex; flex-direction:column; gap:4px;
  }
  .upsell-media{
    position:relative;
    width:100%;
    aspect-ratio:1;
    border-radius:5px;
    overflow:hidden;
    background:#fff;
  }
  .upsell-media img, .upsell-ph{
    width:100%; height:100%; object-fit:cover; display:block;
  }
  .upsell-ph{ display:flex; align-items:center; justify-content:center; color: var(--ink-muted); }
  .upsell-name{ font-size:10.5px; font-weight:700; line-height:1.25; }
  .upsell-meta{ display:flex; justify-content:space-between; align-items:center; gap:4px; }
  .upsell-price{ font-size:10.5px; font-weight:800; }
  .upsell-add{
    position:absolute; left:50%; bottom:6px; transform: translateX(-50%);
    border:1.5px solid var(--accent); background: rgba(255,255,255,0.72);
    color: var(--accent); border-radius:999px;
    font-size:10px; font-weight:700; padding:4px 10px; cursor:pointer;
    backdrop-filter: blur(4px);
    transition: background 140ms ease, border-color 140ms ease, color 140ms ease, box-shadow 140ms ease;
  }
  .upsell-card:hover .upsell-add,
  .upsell-add:hover,
  .upsell-add:focus-visible{
    background: var(--accent);
    border-color: var(--accent);
    color:#fff;
    box-shadow: 0 4px 12px rgba(59,106,42,0.28);
  }

  .category-section{
    margin-bottom: 48px;
    content-visibility: auto;
    contain-intrinsic-size: 1px 720px;
  }
  .category-section h2{ font-size: 19px; font-weight:800; margin: 0 0 18px 0; }
  .category-section h2 .category-link{
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 140ms ease, border-color 140ms ease;
  }
  .category-section h2 .category-link:hover{
    color: var(--accent-dark);
    border-bottom-color: rgba(90,148,53,0.45);
  }
  .category-section h2 .cat-count{
    font-size: 11.5px;
    font-weight: 800;
    color: var(--ink-muted);
    margin-left: 10px;
    letter-spacing: 0.01em;
  }

  .product-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
  @media (min-width: 1000px){ .product-grid{ grid-template-columns: repeat(4,1fr); } }
  @media (max-width: 560px){ .product-grid{ grid-template-columns: repeat(3,1fr); } }
  @media (max-width: 360px){ .product-grid{ grid-template-columns: 1fr; } }

  .product-card{
    background: var(--card); border:1px solid var(--line); border-radius: 14px;
    padding: 16px; display:flex; flex-direction:column;
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .product-card:hover{ box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
  .product-card.focused{ outline: 2px solid var(--accent); outline-offset: 2px; }
  .product-card-img{
    width:100%; aspect-ratio: 1/1; background: var(--bg); border-radius: 10px;
    margin-bottom: 12px; display:flex; align-items:center; justify-content:center;
    color: var(--ink-muted); font-size: 11px; overflow:hidden; position:relative;
  }
  .product-card-img .ti{ font-size: 32px; opacity: 0.35; line-height: 1; }
  .product-card-img img{ width:100%; height:100%; object-fit:cover; border-radius:10px; }
  .product-card .open-link .ti{ font-size: 12px; vertical-align: -1px; margin-left: 2px; }
  .pdp-media .ti{ font-size: 48px; opacity: 0.35; line-height: 1; }
  .drawer-close .ti{ font-size: 20px; line-height: 1; color: var(--ink-muted); }
  .footer-social a .ti{ font-size: 14px; margin-right: 4px; vertical-align: -2px; }
  .age-gate-kicker .ti{ margin-right: 6px; vertical-align: -2px; }
  .age-gate-enter .ti, .age-gate-leave .ti{ margin-right: 6px; vertical-align: -2px; }
  .footer-col ul a .ti{ margin-right: 6px; vertical-align: -2px; font-size: 14px; opacity: 0.85; }
  .badge-last{
    position:absolute; top:8px; left:8px; background:#fef0dc; color:#8a5a1e;
    font-size:10px; font-weight:700; padding:3px 7px; border-radius:6px;
  }
  .badge-sale{
    position:absolute; top:8px; right:8px; background:#e11d48; color:#fff;
    font-size:10px; font-weight:800; padding:3px 7px; border-radius:6px;
    letter-spacing:0.04em; text-transform:uppercase;
  }
  .price-was{
    text-decoration:line-through; opacity:0.55; font-weight:600;
    font-size:0.78em; margin-right:0.35em;
  }
  .price-now{ font-weight:800; }
  .product-card h3{
    font-size: 13.5px; font-weight:700; margin: 0 0 4px 0; line-height:1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    max-height: 1.3em;
    min-height: 1.3em;
    word-break: break-word;
  }
  .product-card .desc{
    font-size: 11.5px; color: var(--ink-muted); margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    max-height: calc(1.45em * 2);
    min-height: 0;
    word-break: break-word;
  }
  .product-card .price-row{ display:flex; align-items:center; justify-content:space-between; margin-top:auto; gap:6px; min-width:0; }
  .product-card .price{ font-size: 15px; font-weight:800; flex-shrink:0; }
  .product-card .stock{
    font-size: 10.5px; font-weight:700; text-transform:uppercase; letter-spacing:0.03em;
    min-width:0; max-width: 58%;
    overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
    text-align:right;
  }
  .stock.in{ color: var(--success); }
  .stock.last{ color: #c07b3a; }
  .stock.out{ color: #c0392b; }
  .product-card .variant-select{
    width:100%; margin-top:8px; padding:6px 8px; border-radius:7px; border:1px solid var(--line);
    background: var(--bg); font-size:12px; font-family: inherit;
  }
  .add-btn{
    width:100%; margin-top:10px; background: var(--accent); color:#fff; border:none;
    padding: 9px; border-radius: 9px; font-size: 12.5px; font-weight:700; cursor:pointer;
  }
  .add-btn[disabled]{ background: var(--line); color: var(--ink-muted); cursor:not-allowed; }

  .empty-state, .loading-page, .empty-shop{
    text-align:center; padding: 60px 20px; color: var(--ink-muted); font-size: 14px;
  }
  .empty-shop{
    background: var(--card); border:1px dashed var(--line); border-radius:14px; margin-top:24px;
  }
  .shop-404{
    text-align:center;
    padding: 72px 20px 88px;
    max-width: 520px;
    margin: 28px auto 0;
  }
  .shop-404-code{
    font-family: var(--font-display);
    font-size: clamp(64px, 12vw, 96px);
    font-weight: 700;
    line-height: 1;
    color: var(--accent);
    letter-spacing: -0.04em;
    margin-bottom: 10px;
  }
  .shop-404 h1{
    margin: 0 0 12px;
    font-size: clamp(22px, 3vw, 30px);
  }
  .shop-404 p{
    margin: 0 0 24px;
    color: var(--ink-muted);
    font-size: 15px;
    line-height: 1.55;
  }
  .shop-404-home{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
  }
  .shop-404-home:hover{ background: var(--accent-dark); }
  body.not-found-page .hero,
  body.not-found-page .benefits,
  body.not-found-page .trust-badges-section{ display: none !important; }

  /* ── Trust badges ── */
  .trust-badges-section{
    position: relative;
    background: rgba(255,254,248,0.46);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 36px 24px 0;
    overflow: visible;
  }
  .trust-badges-row{
    max-width: 1180px;
    margin: 0 auto;
    position: static;
    padding-bottom: 36px;
  }
  .trust-sketch{
    position: absolute;
    left: max(16px, calc(50% - 590px - 214px));
    bottom: 0;
    width: 200px;
    pointer-events:none;
    line-height: 0;
    opacity:0;
    transform: translateY(4px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    z-index: 1;
  }
  .trust-sketch.is-visible{
    opacity:0.92;
    transform: translateY(0);
  }
  .trust-sketch img{
    display:block;
    width:100%;
    height:auto;
    max-height: 112px;
    object-fit: contain;
    object-position: left bottom;
  }
  .trust-badges-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .trust-badge{
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 18px 20px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .trust-badge:hover{
    border-color: var(--accent);
    box-shadow: 0 2px 14px rgba(74,124,78,0.10);
  }
  .trust-badge-icon-wrap{
    position: relative;
    width: 46px; height: 46px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .trust-badge-ring{
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 1.5px solid transparent;
    border-top-color: var(--accent);
    border-right-color: var(--accent);
    opacity: 0.5;
    animation: tbspin 5s linear infinite;
  }
  @keyframes tbspin{ to{ transform: rotate(360deg); } }
  @media (prefers-reduced-motion: reduce){ .trust-badge-ring{ animation: none; } }
  .trust-badge-icon-inner{
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
  }
  .trust-badge-icon-inner svg{
    width: 18px; height: 18px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .trust-badge-text strong{
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.35;
  }
  .trust-badge-text span{
    display: block;
    font-size: 11.5px;
    color: var(--ink-muted);
    margin-top: 2px;
    line-height: 1.4;
  }
  @media (max-width: 1280px){
    .trust-sketch{
      left: 12px;
      width: 150px;
    }
    .trust-sketch img{ max-height: 96px; }
  }
  @media (max-width: 900px){
    .trust-badges-grid{ grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .trust-sketch{ width: 130px; }
    .trust-sketch img{ max-height: 84px; }
  }
  @media (max-width: 540px){
    .trust-badges-section{ padding: 22px 14px 0; }
    .trust-badges-row{ padding-bottom: 18px; }
    .trust-badges-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .trust-sketch{
      position: static;
      width: min(180px, 52vw);
      margin: 0 auto 10px;
      transform: translateY(6px);
    }
    .trust-sketch.is-visible{ transform: translateY(0); }
    .trust-sketch img{ max-height: 80px; object-position: center center; }

    .trust-badge{
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 14px 10px;
      gap: 10px;
      border-radius: 10px;
    }
    .trust-badge-icon-wrap{ width: 40px; height: 40px; }
    .trust-badge-icon-inner{ inset: 4px; }
    .trust-badge-icon-inner svg{ width: 16px; height: 16px; }
    .trust-badge-text strong{ font-size: 12px; }
    .trust-badge-text span{ font-size: 10.5px; }
  }
  @media (max-width: 360px){
    .trust-badges-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }

  .site-footer{
    background: #1a2b1c;
    color: #b8c8a8;
    padding: 48px 0 24px 0;
    position: relative;
    overflow: visible;
  }
  /* "Korene" dekorácia v spodnej časti (pozadie, bez vplyvu na kliknutia) */
  .site-footer::before,
  .site-footer::after{
    content:"";
    position:absolute;
    top:-20px;
    width:640px;
    height:320px;
    background-repeat:no-repeat;
    background-size:contain;
    pointer-events:none;
    z-index:0;
    opacity:0.58;
  }
  .site-footer::before{
    left:-220px;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240' fill='none'%3E%3Cpath d='M120 0 C103 48 94 73 78 110 C56 162 60 190 72 240' stroke='%23c07b3a' stroke-width='3.2' stroke-linecap='round'/%3E%3Cpath d='M92 112 C74 108 61 120 55 145 C47 178 67 196 82 208' stroke='%23c07b3a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M110 82 C132 78 148 68 165 50 C187 26 214 34 233 52' stroke='%23c07b3a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M78 160 C98 148 123 154 134 172 C149 196 132 218 105 235' stroke='%23c07b3a' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }
  .site-footer::after{
    right:-160px;
    transform: scaleX(-1);
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240' fill='none'%3E%3Cpath d='M120 0 C103 48 94 73 78 110 C56 162 60 190 72 240' stroke='%23c07b3a' stroke-width='3.2' stroke-linecap='round'/%3E%3Cpath d='M92 112 C74 108 61 120 55 145 C47 178 67 196 82 208' stroke='%23c07b3a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M110 82 C132 78 148 68 165 50 C187 26 214 34 233 52' stroke='%23c07b3a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M78 160 C98 148 123 154 134 172 C149 196 132 218 105 235' stroke='%23c07b3a' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }
  .site-footer .wrap{ position:relative; z-index:1; }
  .footer-grid{ display:grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
  @media (min-width: 780px){ .footer-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); } }
  @media (min-width: 1100px){ .footer-grid{ grid-template-columns: 1.25fr 1fr 1fr 1.15fr 1fr; } }
  .footer-col h4{ font-size: 12px; font-weight:800; letter-spacing:0.04em; text-transform:uppercase; color:#e8f0d8; margin: 0 0 14px 0; }
  .footer-hours{ font-size:13px; line-height:1.9; white-space:pre-line; }
  #footerContact div, #footerContact a{ font-size: 13px; line-height:1.9; }
  #footerContact a{ color:#b8c8a8; text-decoration:none; }
  #footerContact a:hover{ color:#e8f0d8; }
  .footer-social{ display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
  .footer-social a{
    font-size:12px; padding:5px 10px; border-radius:999px; border:1px solid #3a5040;
    text-decoration:none; color:#b8c8a8;
  }
  .footer-social a:hover{ border-color:#7aaa80; color:#e8f0d8; }
  .footer-col ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:9px; }
  .footer-col ul a{ text-decoration:none; font-size:13px; color:#b8c8a8; }
  .footer-col ul a:hover{ color:#e8f0d8; }
  .footer-col[hidden]{ display:none !important; }

  .footer-legal-note{
    font-size: 11.5px; line-height:1.6; color:#7a9070; border-top:1px solid #2e4430;
    padding-top: 20px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px;
  }
  .footer-legal-note a{ color:#b8c8a8; text-decoration:none; }
  .footer-legal-note a:hover{ color:#e8f0d8; }

  .flowi-tip{
    position: relative;
    display: inline-block;
    cursor: pointer;
  }
  .flowi-tip-bubble{
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    transform: translateX(-50%) translateY(6px);
    width: min(268px, 78vw);
    padding: 11px 13px;
    border-radius: 14px;
    background: #fffef8;
    color: #243428;
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0;
    text-transform: none;
    text-align: left;
    box-shadow: 0 14px 36px rgba(12, 20, 14, 0.28);
    border: 1px solid rgba(90,148,53,0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    z-index: 80;
  }
  .flowi-tip-bubble::after{
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-top-color: #fffef8;
  }
  .flowi-tip:hover .flowi-tip-bubble,
  .flowi-tip:focus-visible .flowi-tip-bubble,
  .flowi-tip:focus-within .flowi-tip-bubble,
  .flowi-tip.is-open .flowi-tip-bubble{
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  @media (max-width: 560px){
    .site-footer::before,
    .site-footer::after{
      top:-28px;
      width:500px;
      height:260px;
      opacity:0.34;
    }
    .site-footer::before{ left:-240px; }
    .site-footer::after{ right:-240px; }
  }

  #overlay{
    position: fixed; inset:0; background: rgba(0,0,0,0.45); z-index: 10000001;
    opacity:0; pointer-events:none; transition: opacity 0.2s;
  }
  #overlay.active{ opacity:1; pointer-events:auto; }

  .drawer{
    position: fixed; top:0; right:0; height:100%; height:100dvh; width: min(340px, 100vw);
    background: var(--card); z-index: 10000002; box-shadow: -12px 0 40px rgba(0,0,0,0.15);
    transform: translateX(100%); transition: transform 0.3s ease;
    display:flex; flex-direction:column;
    overflow: hidden;
  }
  .drawer.open{ transform: none; }

  .drawer-header{
    display:flex; align-items:center; justify-content:space-between;
    padding: calc(20px + env(safe-area-inset-top, 0px)) 22px 16px; border-bottom:1px solid var(--line);
    flex-shrink: 0;
  }
  .drawer-header h3{ margin:0; font-size:16px; font-weight:800; }
  .drawer-close{ background:none; border:none; font-size:20px; cursor:pointer; color: var(--ink-muted); }

  .drawer-scroll{
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
  }

  #lines{ flex: 0 0 auto; padding: 12px 16px 8px; }
  .cart-line{
    display:flex; justify-content:space-between; align-items:flex-start; gap:8px;
    padding: 8px 0; border-bottom:1px solid var(--line); font-size:12.5px;
  }
  .cart-line-main{ min-width:0; flex:1; }
  .cart-line-name{ font-weight:650; line-height:1.25; font-size:12.5px; }
  .cart-line-controls{ display:flex; align-items:center; gap:4px; margin-top:5px; flex-wrap:wrap; }
  .cart-qty{
    display:inline-flex; align-items:center; border:1px solid var(--line); border-radius:7px; overflow:hidden;
    background: var(--bg);
  }
  .cart-qty button{
    width:24px; height:24px; border:0; background:transparent; color: var(--ink); font-size:14px; line-height:1;
  }
  .cart-qty span{ min-width:18px; text-align:center; font-size:11.5px; font-weight:700; }
  .cart-remove{
    border:0; background:transparent; color: var(--ink-muted); font-size:11px; padding:2px 4px; margin-left:2px;
  }
  .cart-remove:hover{ color:#c0392b; }
  .cart-line-sum{ font-weight:700; white-space:nowrap; font-size:12.5px; padding-top:1px; }
  .cart-line.meta, .cart-line.total{ font-weight:600; border-bottom:0; padding-top:8px; color: var(--ink-muted); }
  .cart-line.total{ font-weight:800; color: var(--ink); padding-top:4px; }
  .cart-min-note{ font-size:12px; color:#7a4e1a; background:#fdf3e3; border:1px solid #e8c99a; border-radius:8px; padding:8px 10px; margin-top:8px; }
  .shop-coupon{ margin-top:12px; padding-top:10px; border-top:1px solid var(--line, rgba(0,0,0,.08)); }
  .shop-coupon label{ font-size:12px; font-weight:600; color: var(--ink-muted); display:block; margin-bottom:5px; }
  .shop-coupon-row{ display:flex; gap:8px; align-items:stretch; }
  .shop-coupon-row input{
    flex:1; min-width:0; border:1px solid var(--line, #d8d5d0); border-radius:10px;
    padding:10px 12px; font-size:14px; background: var(--surface, #fff); color: var(--ink);
  }
  .shop-coupon-btn{
    flex-shrink:0; border:0; border-radius:10px; padding:0 14px; font-size:13px; font-weight:700;
    cursor:pointer; background: var(--accent, #1f6feb); color:#fff;
  }
  .shop-coupon-btn:disabled{ opacity:.65; cursor:wait; }
  .shop-coupon-btn:hover{ filter:brightness(1.05); }
  .shop-coupon-msg{ font-size:12px; margin:8px 0 0; line-height:1.4; color: var(--ink-muted); }
  .shop-coupon-msg.is-ok{ color:#1f7a45; }
  .shop-coupon-msg.is-err{ color:#b42318; }
  .empty-cart{ color: var(--ink-muted); text-align:center; padding:32px 0; font-size:13px; }

  #err{ color:#c0392b; font-size:12.5px; padding: 0 22px 8px; }
  #err[hidden]{ display:none; }

  #form{ padding: 18px 22px; border-top:1px solid var(--line); display:flex; flex-direction:column; gap:12px; }
  #form label{ font-size:12px; font-weight:600; color: var(--ink-muted); display:block; margin-bottom:5px; }
  #form input, #form select, #form textarea{
    width:100%; padding: 9px 11px; border-radius:8px; border:1px solid var(--line);
    font-size:13px; font-family: inherit; background: var(--bg);
  }
  .form-row{ display:flex; gap:10px; }
  .form-row > div{ flex:1; }

  .radio-group{ display:flex; gap:8px; flex-wrap:wrap; }
  .radio-chip{
    flex:1; min-width:90px; text-align:center; border:1px solid var(--line); border-radius:8px;
    padding: 8px; font-size:12px; cursor:pointer;
  }
  .radio-chip.selected{ border-color: var(--accent); background: var(--accent-dim); color: var(--accent); font-weight:700; }

  .age-confirm{ display:flex; flex-direction:row; align-items:flex-start; gap:10px; font-size:11.5px; color: var(--ink-muted); line-height:1.5; cursor:pointer; }
  .age-confirm input[type="checkbox"]{ width:16px; height:16px; margin-top:1px; flex-shrink:0; cursor:pointer; accent-color:var(--accent); }
  .age-confirm span{ flex:1; }
  .age-confirm.hidden{ display:none; }

  .packeta-pick-block{ margin-bottom:10px; }
  .packeta-pick-btn{ display:flex; align-items:center; gap:12px; width:100%; padding:10px 14px; border:2px solid var(--accent, #e30613); border-radius:10px; background:rgba(227,6,19,0.07); cursor:pointer; text-align:left; transition:background 0.15s; }
  .packeta-pick-btn:hover{ background:rgba(227,6,19,0.14); }
  .packeta-pick-btn img{ width:auto; height:28px; max-width:140px; object-fit:contain; flex-shrink:0; background:#fff; border-radius:6px; padding:3px 6px; }
  .packeta-pick-text{ flex:1; display:flex; flex-direction:column; gap:2px; }
  .packeta-pick-title{ font-size:13px; font-weight:700; color: var(--ink); }
  .packeta-pick-hint{ font-size:11px; color: var(--accent, #e30613); }
  .packeta-pick-hint.selected{ color: var(--ink-muted); }
  .packeta-pick-arrow{ font-size:20px; color: var(--accent, #e30613); line-height:1; }
  .packeta-billing-toggle{ background:none; border:none; color:var(--accent); font-size:12px; cursor:pointer; padding:4px 0; text-decoration:underline; }

  .legal-consent{ font-size:11px; color: var(--ink-muted); line-height:1.5; }
  .legal-consent a{ color: var(--accent); text-decoration:underline; }

  #submitOrder{
    background: var(--accent); color:#fff; border:none; padding: 13px; border-radius:10px;
    font-size: 14px; font-weight:800; cursor:pointer;
  }
  #submitOrder:disabled{ opacity:0.6; cursor:not-allowed; }

  .msg-ok{ padding:24px 22px 8px; color:var(--success); font-weight:600; text-align:center; font-size:14px; line-height:1.45; }
  .msg-ok-ready{
    padding: 0 22px 20px;
    text-align:center;
    font-size:13px;
    color: var(--ink);
    font-weight:600;
    line-height:1.45;
  }
  .msg-ok-ready strong{ color: var(--accent); }
  .msg-ok-hint{
    padding: 0 22px 18px;
    text-align:center;
    font-size:11px;
    color: var(--ink-muted);
  }

  .checkout-success{
    text-align: center;
    padding: 28px 22px 24px;
    max-width: 520px;
    margin: 0 auto;
  }
  .checkout-success-icon{
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--success, #16a34a) 16%, transparent);
    color: var(--success, #16a34a);
    font-size: 28px;
  }
  .checkout-success h2{
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
  }
  .checkout-success-code{
    display: inline-block;
    margin: 0 0 14px;
    padding: 6px 12px;
    border-radius: 8px;
    background: var(--surface-2, rgba(0,0,0,0.04));
    border: 1px solid var(--line, rgba(0,0,0,0.08));
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.02em;
  }
  .checkout-success-lead{
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink);
    font-weight: 500;
  }
  .checkout-success-email{
    margin: 0 0 12px;
    padding: 12px 14px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--accent) 8%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
    font-size: 13px;
    line-height: 1.5;
    color: var(--ink);
  }
  .checkout-success-email strong{ color: var(--accent); word-break: break-all; }
  .checkout-success-note{
    margin: 0 0 18px;
    font-size: 12.5px;
    line-height: 1.55;
    color: var(--ink-muted);
  }
  .checkout-success-back{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 10px;
    border: none;
    background: var(--accent);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
  }
  .checkout-success-back:hover{ filter: brightness(1.06); }

  /* Fullscreen fog after successful checkout (optional shop_checkout_fog) */
  .checkout-fog-overlay{
    position:fixed; inset:0; z-index:10000005;
    display:none;
    pointer-events:none;
  }
  .checkout-fog-overlay.is-active{
    display:block;
    pointer-events:auto;
  }
  .checkout-fog-wash{
    position:absolute; inset:0;
    background: radial-gradient(ellipse at center,
      color-mix(in srgb, var(--bg, #f3f1e4) 98%, #fff) 0%,
      color-mix(in srgb, var(--bg, #f3f1e4) 94%, #c8c6b8) 55%,
      color-mix(in srgb, var(--bg, #e8e4d8) 90%, #c8c6b8) 100%);
    opacity:0;
  }
  .checkout-fog-overlay.is-active .checkout-fog-wash{
    animation: checkoutFogWash 4.8s cubic-bezier(0.4,0,0.2,1) forwards;
  }
  @keyframes checkoutFogWash{
    0%   { opacity:0; }
    12%  { opacity:1; }
    55%  { opacity:0.92; }
    100% { opacity:0; }
  }
  .checkout-fog-cloud{
    position:absolute;
    border-radius:50%;
    filter: blur(55px);
    background: radial-gradient(circle, rgba(255,255,255,0.95), rgba(255,255,255,0) 68%);
    opacity:0;
    pointer-events:none;
  }
  .checkout-fog-overlay.is-active .checkout-fog-cloud{
    animation: checkoutFogDrift 4.8s ease-in-out forwards;
  }
  @keyframes checkoutFogDrift{
    0%   { opacity:0; transform: translate(0,15%) scale(0.6); }
    15%  { opacity:1; }
    50%  { opacity:0.85; }
    100% { opacity:0; transform: translate(var(--dx,0), var(--dy,-20%)) scale(1.8); }
  }
  .checkout-fog-stage{
    position:relative; z-index:3;
    display:flex; align-items:center; justify-content:center;
    width:100%; height:100%;
    padding: 20px 16px;
    box-sizing:border-box;
  }
  .checkout-fog-card{
    position:relative; z-index:2;
    /* Always light surface + dark ink so success copy stays readable on dark themes */
    --ink: #14170f;
    --ink-muted: #5a5648;
    --surface-2: rgba(20,23,15,0.05);
    --line: #e1ddc4;
    background: #fffef8;
    border:1px solid #e1ddc4;
    border-radius:24px;
    padding: 8px 6px 6px;
    max-width: min(440px, 100%);
    width:100%;
    text-align:center;
    color: #14170f;
    opacity:0;
    transform:scale(0.8);
    filter:blur(10px);
    box-shadow: 0 30px 70px rgba(20,23,15,0.25);
  }
  .checkout-fog-card .checkout-success h2,
  .checkout-fog-card .checkout-success-lead,
  .checkout-fog-card .checkout-success-email{
    color: #14170f;
  }
  .checkout-fog-card .checkout-success-note{
    color: #5a5648;
  }
  .checkout-fog-overlay.is-active .checkout-fog-card{
    animation: checkoutFogCardReveal 1.1s cubic-bezier(0.22,1,0.36,1) 2.2s forwards;
  }
  @keyframes checkoutFogCardReveal{
    to{ opacity:1; transform:scale(1); filter:blur(0); }
  }
  @media (prefers-reduced-motion: reduce){
    .checkout-fog-wash,
    .checkout-fog-cloud{
      animation: none !important;
      opacity:0 !important;
    }
    .checkout-fog-card{
      animation: none !important;
      opacity:1 !important;
      transform:none !important;
      filter:none !important;
    }
  }

  body.pdp .hero, body.pdp .benefits { display: none; }
  body.category-page .hero,
  body.category-page .benefits { display: none !important; }
  body.category-page .hero.has-banner { margin-bottom: 0 !important; }
  body.search-page .hero,
  body.search-page .benefits { display: none !important; }
  body.search-page .hero.has-banner { margin-bottom: 0 !important; }
  body.info-page .hero,
  body.info-page .benefits { display: none !important; }
  body.info-page .hero.has-banner { margin-bottom: 0 !important; }
  .info-page-article{
    max-width: 720px;
    margin: 0 auto;
    padding: 28px 0 48px;
  }
  .info-page-article .category-landing-back{ margin-bottom: 18px; }
  .info-page-article h1{
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    margin: 0 0 18px;
    line-height: 1.25;
  }
  .info-page-body{
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-muted, #5c564f);
  }
  .info-page-body strong{ color: var(--ink, #1f1a14); }
  .product-card { cursor: pointer; }
  .product-card h3 { color: inherit; }
  .product-card .open-link {
    margin-top: 8px; font-size: 12px; font-weight: 600; color: var(--accent);
    text-decoration: none; align-self: flex-start;
  }
  .product-card .open-link:hover { text-decoration: underline; }

  .pdp-crumb { font-size: 13px; color: var(--ink-muted); margin: 0 0 28px; }
  .pdp-crumb a { color: var(--ink-muted); text-decoration: none; }
  .pdp-crumb a:hover { color: var(--accent); }
  .pdp-layout {
    display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 56px;
  }
  @media (min-width: 800px) {
    .pdp-layout { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); align-items: start; }
  }
  .pdp-media {
    background: var(--card); border: 1px solid var(--line); border-radius: 16px;
    aspect-ratio: 1; overflow: hidden; display: flex; align-items: center; justify-content: center;
    color: var(--ink-muted); position: relative;
  }
  .pdp-media img { width: 100%; height: 100%; object-fit: cover; }
  .pdp-info h1 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; margin: 0 0 10px; line-height: 1.2; }
  .pdp-meta { display: flex; flex-wrap: wrap; gap: 10px 16px; align-items: center; margin-bottom: 16px; }
  .pdp-sku { font-size: 12px; color: var(--ink-muted); }
  .pdp-desc { font-size: 15px; color: var(--ink-muted); line-height: 1.65; margin: 0 0 22px; }
  .pdp-desc strong { color: var(--ink); font-weight: 800; }
  .pdp-desc .desc-color { font-weight: 650; }
  .pdp-price { font-size: 28px; font-weight: 800; margin: 0 0 8px; }
  .pdp-price .price-was { font-size: 0.55em; font-weight: 600; vertical-align: baseline; }
  .pdp-price .price-now { font-size: 1em; }
  .pdp-volume {
    font-size: 12.5px; color: var(--ink-muted); line-height: 1.55; margin: 0 0 16px;
  }
  .pdp-volume strong { color: var(--ink); font-weight: 700; }
  .pdp-related-variants{
    margin: 0 0 20px;
  }
  .pdp-related-variants-label{
    font-size: 12px; font-weight: 700; color: var(--ink-muted);
    margin: 0 0 10px; text-transform: uppercase; letter-spacing: 0.04em;
  }
  .pdp-related-variants-row{
    display:flex; flex-wrap:wrap; gap:10px;
  }
  .pdp-related-variant{
    width:64px; height:64px; border-radius:12px; overflow:hidden;
    border:2px solid var(--line); background: var(--card);
    display:grid; place-items:center; text-decoration:none; color: var(--ink-muted);
    transition: border-color .15s ease, transform .15s ease;
  }
  .pdp-related-variant img{ width:100%; height:100%; object-fit:cover; }
  .pdp-related-variant:hover{ border-color: var(--accent); transform: translateY(-1px); }
  .pdp-related-variant.is-current{
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent-dim);
    pointer-events:none;
  }
  .pdp-related-variant .ti{ font-size:20px; }
  .product-card .desc strong { color: var(--ink); font-weight: 800; }
  .product-card .desc .desc-color { font-weight: 650; }
  .pdp-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
  .qty-row {
    display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
    background: var(--card);
  }
  .qty-row button {
    width: 40px; height: 42px; border: 0; background: transparent; font-size: 18px; color: var(--ink);
  }
  .qty-row input {
    width: 48px; height: 42px; border: 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line);
    text-align: center; font-size: 14px; font-weight: 700; font-family: inherit;
    background: var(--card);
    color: var(--ink);
    -webkit-text-fill-color: var(--ink);
    caret-color: var(--accent);
  }
  .qty-row input:focus{
    outline: none;
    background: var(--bg);
  }
  .pdp-add {
    flex: 1; min-width: 180px; background: var(--accent); color: #fff; border: none;
    padding: 12px 18px; border-radius: 10px; font-size: 14.5px; font-weight: 800;
  }
  .pdp-add[disabled] { background: var(--line); color: var(--ink-muted); cursor: not-allowed; }
  .pdp-related h2 { font-size: 19px; font-weight: 800; margin: 0 0 18px; }

  #shopApp { min-height: 100dvh; }
  body.age-pending #shopApp,
  body.age-locked #shopApp {
    filter: blur(16px);
    transform: scale(1.02);
    pointer-events: none;
    user-select: none;
  }
  body.age-locked, body.age-pending, body.age-denied { overflow: hidden; }
  body.age-locked #flowi-bubble,
  body.age-locked #flowi-panel,
  body.age-locked #flowi-hint,
  body.age-pending #flowi-bubble,
  body.age-pending #flowi-panel,
  body.age-pending #flowi-hint,
  body.age-denied #flowi-bubble,
  body.age-denied #flowi-panel,
  body.age-denied #flowi-hint { display: none !important; }
  body.cart-open #flowi-bubble,
  body.cart-open #flowi-panel,
  body.cart-open #flowi-hint { display: none !important; visibility: hidden !important; pointer-events: none !important; }
  body.checkout-view #flowi-bubble,
  body.checkout-view #flowi-panel,
  body.checkout-view #flowi-hint { display: none !important; visibility: hidden !important; pointer-events: none !important; }

  .age-gate {
    position: fixed; inset: 0; z-index: 10000000;
    display: none; align-items: center; justify-content: center;
    padding: 24px; background: rgba(18, 35, 20, 0.55);
  }
  body.age-locked .age-gate,
  body.age-denied .age-gate { display: flex !important; }
  .age-gate-card {
    width: min(560px, 100%);
    background: #faf8f3;
    color: #1a1a16;
    border-radius: 18px;
    padding: 32px 28px 24px;
    box-shadow: 0 24px 60px rgba(18,35,20,0.35);
    max-height: calc(100dvh - (48px + env(safe-area-inset-top, 0px) + env(safe-area-inset-bottom, 0px)));
    overflow: auto;
  }
  .age-gate-kicker {
    font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--accent); margin: 0 0 10px;
  }
  .age-gate-card h2 {
    font-size: 22px; font-weight: 800; margin: 0 0 14px; line-height: 1.25;
    color: #14140f;
  }
  .age-gate-card p {
    font-size: 14px; color: #3a3830; line-height: 1.65; margin: 0 0 12px;
  }
  .age-gate-legal { font-size: 12px; color: #4a463c; line-height: 1.6; margin: 0 0 20px; }
  .age-gate-contact { font-size: 13px; color: #1f1e18; margin: 0 0 22px; line-height: 1.7; }
  .age-gate-contact a { color: var(--accent-dark, var(--accent)); text-decoration: none; font-weight: 700; }
  .age-gate-actions { display: flex; flex-wrap: wrap; gap: 10px; }
  .age-gate-enter {
    flex: 1; min-width: 160px; background: var(--accent); color: #fff; border: none;
    padding: 13px 16px; border-radius: 11px; font-weight: 800; font-size: 14px;
  }
  .age-gate-leave {
    flex: 1; min-width: 160px; background: #fff; color: #1a1a16; border: 1px solid #cfc9bb;
    padding: 13px 16px; border-radius: 11px; font-weight: 700; font-size: 14px;
  }
  .age-denied-msg { display: none; }
  body.age-denied .age-enter-msg { display: none; }
  body.age-denied .age-denied-msg { display: block; }
  body.age-denied .age-gate-actions { display: none; }

  .drawer-actions{
    padding: 0 22px 12px; display:flex; flex-direction:column; gap:8px;
  }
  .drawer-actions .btn-secondary{
    width:100%; background: var(--bg); color: var(--ink); border:1px solid var(--line);
    padding: 11px 14px; border-radius:10px; font-size:13px; font-weight:700; text-align:center;
    text-decoration:none;
  }
  .drawer-actions .btn-secondary:hover{ border-color: var(--accent); color: var(--accent); }
  .drawer-actions .btn-delivery{
    width:100%; background: #1a2b1c; color:#e8f0d8; border:none;
    padding: 10px 12px; border-radius:9px; font-size:11px; font-weight:800;
  }
  .drawer-actions .btn-delivery:hover{ opacity:0.92; }
  .drawer-actions .btn-pickup{
    width:100%; background: var(--accent); color:#fff; border:none;
    padding: 10px 12px; border-radius:9px; font-size:11px; font-weight:800;
  }
  /* PC: quick lištu v draweri úplne skrývame (ostáva spodný formulár). */
  @media (min-width: 541px){
    #drawerActions{
      display:none !important;
    }
  }
  .drawer-section-title{
    font-size:12px; font-weight:800; letter-spacing:0.04em; text-transform:uppercase;
    color: var(--ink-muted); margin: 4px 0 0;
  }
  #pickupForm{
    padding: 10px 16px calc(14px + env(safe-area-inset-bottom, 0px));
    border-top:1px solid var(--line);
    display:flex;
    flex-direction:column;
    gap:5px;
    flex-shrink: 0;
  }
  #pickupForm label:not(.age-confirm){ font-size:12px; font-weight:600; color: var(--ink-muted); display:block; margin-bottom:4px; }
  #pickupForm .age-confirm{
    display:flex !important;
    align-items:flex-start;
    gap:8px;
    font-size:10.5px;
    color: var(--ink-muted);
    line-height:1.35;
    margin:2px 0 0;
  }
  #pickupForm .age-confirm input[type="checkbox"]{
    width:auto;
    flex-shrink:0;
    margin-top:1px;
    padding:0;
  }
  #pickupForm input, #pickupForm select{
    width:100%; padding: 7px 10px; border-radius:8px; border:1px solid var(--line);
    font-size:12.5px; font-family: inherit; background: var(--bg);
  }
  #pickupSubmit{
    background: var(--accent); color:#fff; border:none; padding: 9px 12px; border-radius:9px;
    font-size: 11px; font-weight:800; cursor:pointer;
  }
  #pickupSubmit:disabled{ opacity:0.6; cursor:not-allowed; }
  #cartSummary{
    padding: 10px 16px 6px;
    border-top: 1px solid var(--line);
    background: var(--card);
  }
  #cartSummary:empty{ display:none; }

  #pickupForm .legal-consent{
    margin: -2px 0 2px;
    padding: 0;
    padding-left: 26px;
    font-size: 10.5px;
    line-height: 1.35;
    color: var(--ink-muted);
  }
  #pickupForm .btn-delivery{
    width:100%; background: var(--bg); color: var(--ink);
    border:1px solid var(--line);
    padding: 9px 12px; border-radius:9px; font-size:11px; font-weight:700;
    text-align:center; text-decoration:none; display:block;
  }
  #pickupForm .btn-delivery:hover{ border-color: var(--accent); color: var(--accent); opacity:1; }
  #pickupForm .btn-secondary{
    width:100%; background: var(--bg); color: var(--ink); border:1px solid var(--line);
    padding: 9px 12px; border-radius:9px; font-size:11px; font-weight:700; text-align:center;
    text-decoration:none; display:block;
  }
  #pickupForm .btn-secondary:hover{ border-color: var(--accent); color: var(--accent); }

  body.checkout-view #main,
  body.checkout-view .hero,
  body.checkout-view .benefits { display: none !important; }
  body.checkout-view .site-header { position: sticky; }
  body.checkout-view #shopApp{
    display:flex;
    flex-direction:column;
    min-height:100vh;
  }
  body.checkout-view #checkoutPage{ order: 10; }
  body.checkout-view .trust-badges-section{ order: 80; }
  body.checkout-view footer.site-footer{ order: 90; }
  #checkoutPage{ display:none; padding: 32px 0 72px; }
  body.checkout-view #checkoutPage{ display:block; }
  .checkout-wrap{ max-width: 920px; }
  .checkout-top{
    display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    margin-bottom: 24px;
  }
  .checkout-back{
    background:none; border:none; color: var(--accent); font-size:13px; font-weight:700; padding:0;
  }
  .checkout-steps{
    display:flex; gap:8px; margin-bottom: 28px;
  }
  .checkout-step-pill{
    flex:1; text-align:center; padding:10px 8px; border-radius:10px; border:1px solid var(--line);
    font-size:12px; font-weight:700; color: var(--ink-muted); background: var(--card);
    font: inherit; cursor: default;
  }
  .checkout-step-pill.active{ border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
  .checkout-step-pill.done{ color: var(--success); border-color: rgba(74,124,78,0.35); }
  .checkout-step-pill.is-clickable{
    cursor: pointer;
  }
  .checkout-step-pill.is-clickable:hover{
    border-color: var(--accent);
    color: var(--accent);
  }
  .checkout-step-pill:disabled{
    opacity: 1;
    cursor: default;
  }
  .checkout-grid{
    display:grid; grid-template-columns: 1fr; gap: 20px;
  }
  @media (min-width: 860px){
    .checkout-grid{ grid-template-columns: 1.1fr 0.9fr; align-items:start; }
  }
  .checkout-card{
    background: var(--card); border:1px solid var(--line); border-radius: 14px; padding: 20px;
  }
  .checkout-card h2{ margin:0 0 16px; font-size:17px; font-weight:800; }
  .checkout-card .form-row{ display:flex; gap:10px; }
  .checkout-card .form-row > div{ flex:1; }
  .checkout-card label{ font-size:12px; font-weight:600; color: var(--ink-muted); display:block; margin-bottom:5px; }
  .checkout-address-heading{
    margin: 4px 0 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
  }
  .checkout-card input, .checkout-card select, .checkout-card textarea{
    width:100%; padding: 9px 11px; border-radius:8px; border:1px solid var(--line);
    font-size:13px; font-family: inherit; background: var(--bg); margin-bottom:12px;
  }
  .checkout-card textarea{ margin-bottom:0; resize:vertical; }
  .checkout-summary-line{
    display:flex; justify-content:space-between; gap:12px; font-size:13px; padding:8px 0;
    border-bottom:1px solid var(--line);
  }
  .checkout-summary-line:last-child{ border-bottom:0; }
  .checkout-summary-line.total{ font-weight:800; font-size:15px; padding-top:12px; }
  .checkout-summary-item{ font-size:12.5px; color: var(--ink-muted); padding: 6px 0; }
  .checkout-summary-item.is-editable{
    display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    padding: 10px 0; border-bottom:1px solid var(--line); color: var(--ink);
  }
  .checkout-summary-item-main{ min-width:0; flex:1; }
  .checkout-summary-item-name{ font-size:13px; font-weight:600; line-height:1.35; }
  .checkout-summary-item-controls{
    display:flex; align-items:center; gap:8px; flex-wrap:wrap; margin-top:6px;
  }
  .checkout-summary-item-sum{
    font-size:13px; font-weight:700; white-space:nowrap; padding-top:1px;
  }
  .checkout-next, .checkout-submit{
    width:100%; margin-top:16px; background: var(--accent); color:#fff; border:none;
    padding: 13px; border-radius:10px; font-size: 14px; font-weight:800; cursor:pointer;
  }
  .checkout-next:disabled, .checkout-submit:disabled{ opacity:0.6; cursor:not-allowed; }
  .checkout-legal{ font-size:11px; color: var(--ink-muted); line-height:1.5; margin-top:12px; }
  .checkout-legal a{ color: var(--accent); text-decoration:underline; }
  .same-address{ display:flex; align-items:flex-start; gap:8px; font-size:12px; color: var(--ink-muted); margin: 4px 0 12px; }
  .same-address input{ width:auto; margin-top:2px; }
  #checkoutErr{ color:#c0392b; font-size:12.5px; margin: 0 0 12px; }
  #checkoutErr[hidden]{ display:none; }
  .checkout-empty{
    text-align:center; padding: 48px 20px; color: var(--ink-muted);
    background: var(--card); border:1px dashed var(--line); border-radius:14px;
  }

  /* Mobile compatibility helpers */
  @media (pointer: coarse){
    button, a, input, select, textarea{ -webkit-tap-highlight-color: transparent; }
    #cartBtn, #pickupSubmit, .add-btn, .checkout-next, .checkout-submit{ min-height: 44px; }
  }

  @media (max-width: 540px){
    /* iOS Safari často spraví zoom, keď input má menej ako ~16px */
    #pickupForm input, #pickupForm select,
    .checkout-card input, #checkoutForm input, .checkout-card select, .checkout-card textarea{
      font-size: 16px;
    }

    html, body{
      max-width: 100%;
      overflow-x: hidden;
    }
    #shopApp{
      width: 100%;
      max-width: 100%;
      overflow-x: clip;
    }

    .wrap{
      width: 100%;
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
      padding-left: 14px;
      padding-right: 14px;
      box-sizing: border-box;
    }

    .trust-bar,
    .site-header,
    .hero,
    .benefits,
    #main,
    .trust-badges-section,
    .site-footer{
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .trust-bar .wrap{
      width: 100%;
      justify-content: center;
      padding-left: 12px;
      padding-right: 12px;
    }

    .site-header{
      width: 100%;
    }
    .site-header{
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      padding: 10px 12px;
      min-height: 60px;
      column-gap: 8px;
    }
    #brand{ max-width: min(42vw, 160px); }
    #cartBtn{ margin-left: 0; flex-shrink: 0; }
    .header-categories:not([hidden]){ margin-left: 0; }
    .header-categories:not([hidden]) + #cartBtn{ margin-left: 0; }
    .header-search{ flex: 1 1 auto; min-width: 0; max-width: none; margin: 0; }

    /* Mobile layout: menej priestoru, hustota zvládnutejšia */
    #main{ padding: 28px 0 56px 0; }
    #main > .wrap{
      width: 100%;
    }
    .hero.has-banner{
      flex-direction: column;
      align-items: stretch;
      min-height: 0;
      background-size: cover;
      background-position: center center;
    }
    .hero.has-banner .wrap{
      width: 100%;
      max-width: 100%;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 18px 16px 10px;
      box-sizing: border-box;
    }
    .hero.has-banner .hero-copy{
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      text-align: center;
    }
    .hero.has-banner #heroTitle{
      text-align: center;
      font-size: clamp(24px, 7vw, 32px);
    }
    .hero.has-banner #heroSubtitle{
      text-align: center;
      margin-left: auto;
      margin-right: auto;
      max-width: 34em;
    }
    .hero.has-banner > .hero-categories{
      position: relative;
      left: auto;
      right: auto;
      bottom: auto;
      transform: none;
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      padding: 0 12px 14px;
      box-sizing: border-box;
    }
    .hero-categories{
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
      margin-top: 0;
      margin-bottom: 0;
      width: 100%;
      max-width: 100%;
      transform: none;
    }
    .hero-cat{
      min-height: 88px;
      border-radius: 12px;
      width: 100%;
    }
    .hero-cat-name{
      padding: 8px 6px;
      font-size: clamp(10px, 2.6vw, 12px);
      line-height: 1.15;
    }

    .benefits .wrap,
    .benefits-grid{
      width: 100%;
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }
    .benefits-grid{
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      justify-items: stretch;
    }
    .benefit-item{
      width: 100%;
      justify-content: flex-start;
    }

    .trust-badges-section{
      padding: 22px 14px 0;
      width: 100%;
    }
    .trust-badges-row{
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      padding-bottom: 18px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .trust-badges-grid{
      width: 100%;
      max-width: 100%;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin: 0 auto;
    }
    .trust-sketch{
      position: static;
      width: min(180px, 52vw);
      margin: 0 auto 12px;
      transform: translateY(6px);
      align-self: center;
    }
    .trust-sketch.is-visible{ transform: translateY(0); }
    .trust-sketch img{ max-height: 80px; object-position: center center; }

    .trust-badge{
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 14px 10px;
      gap: 10px;
      border-radius: 10px;
      width: 100%;
      box-sizing: border-box;
    }
    .trust-badge-icon-wrap{ width: 40px; height: 40px; }
    .trust-badge-icon-inner{ inset: 4px; }
    .trust-badge-icon-inner svg{ width: 16px; height: 16px; }
    .trust-badge-text strong{ font-size: 12px; }
    .trust-badge-text span{ font-size: 10.5px; }

    #shop-categories{
      margin-bottom: 24px;
      gap: 12px;
      width: 100%;
    }
    .category-tile{
      padding: 16px 12px;
      border-radius: 12px;
    }
    .bestsellers{ margin-bottom: 28px; width: 100%; }
    .bestsellers .film-strip{
      justify-content: flex-start;
    }
    .category-section{ margin-bottom: 28px; width: 100%; }
    .category-section h2{ margin: 0 0 12px 0; font-size: 18px; }
    .category-section h2 .cat-count{
      display: block;
      margin-left: 0;
      margin-top: 6px;
      font-size: 11.5px;
    }
    .product-grid{
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      gap: 10px;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      justify-content: center;
      box-sizing: border-box;
    }
    .product-card{
      padding: 11px;
      border-radius: 12px;
      width: 100%;
      min-width: 0;
      box-sizing: border-box;
    }
    .product-card .open-link{ display:none; }
    .product-card-img{ margin-bottom: 7px; }
    .product-card .desc{ display:none; }
    .product-card .price{ font-size: 13px; white-space: nowrap; }
    .product-card .stock{
      font-size: 8.5px;
      letter-spacing: 0.01em;
      max-width: 100%;
      line-height: 1.2;
    }
    .product-card .price-row{
      flex-wrap: wrap;
      align-items: flex-start;
      gap: 2px 6px;
    }
    .product-card h3{ font-size: 12.5px; margin-bottom: 3px; }
    .product-card .add-btn{
      padding: 6px 7px;
      font-size: 11.5px;
      border-radius: 8px;
      margin-top: 8px;
    }

    #cartBtn{
      padding: 10px 11px;
      gap: 6px;
      border-radius: 12px;
      margin-left: auto;
    }
    .header-categories:not([hidden]) + #cartBtn{
      margin-left: 0;
    }
    #cartBtn .cart-btn-label{ display: none; }
    #cartLabel{
      min-width: 20px;
      padding: 2px 6px;
      font-size: 11px;
    }

    .bestsellers .film-strip{ gap: 10px; padding-bottom: 8px; }
    .bestsellers .film-card{
      flex: 0 0 148px;
      padding: 8px;
      border-radius: 12px;
    }
    .bestsellers .film-card-img{ margin-bottom: 7px; border-radius: 8px; }
    .bestsellers .film-card h3{ font-size: 11.5px; margin-bottom: 4px; }
    .bestsellers .film-card .price{ font-size: 12.5px; }
    .bestsellers .film-add{
      margin-top: 6px;
      padding: 6px;
      font-size: 11px;
      border-radius: 7px;
    }

    .qty-row input{
      color: var(--ink);
      background: var(--card);
      -webkit-text-fill-color: var(--ink);
    }

    /* Košík: celá lišta scrolluje; na mobile limitujeme výšku položiek */
    .drawer{ width:100%; max-width: 100vw; }
    .drawer-header{
      padding: calc(14px + env(safe-area-inset-top, 0px)) 16px 12px;
    }
    #lines{
      max-height: none;
      padding: 10px 16px 8px;
    }
    #cartSummary{
      padding: 10px 16px 6px;
    }

    /* Hodí sa k nákupu: menšie na mobile */
    #cartUpsell{ padding: 6px 16px 2px; }
    #cartUpsell h4{ font-size: 8px; }
    #cartUpsell .upsell-card{
      flex: 0 0 86px;
      padding: 5px;
      border-radius: 7px;
    }
    #cartUpsell .upsell-name{ font-size: 10px; }
    #cartUpsell .upsell-price{ font-size: 10px; }
    #cartUpsell .upsell-add{
      font-size: 9px;
      padding: 3px 8px;
      bottom: 5px;
    }

    /* Mobile drawer = mini košík bez formulára */
    #pickupForm{ display:none !important; }
    .drawer-actions{
      padding: 8px 16px calc(14px + env(safe-area-inset-bottom, 0px));
      border-top:1px solid var(--line);
      background: var(--card);
      position: sticky;
      bottom: 0;
      z-index: 2;
    }
    .drawer-actions .btn-pickup,
    .drawer-actions .btn-delivery,
    .drawer-actions .btn-secondary{
      min-height: 38px;
    }

    /* Age-gate 18+ — ~5 % menšie, aby sa zmestilo so všetkým textom */
    .age-gate{
      padding: 12px;
      align-items: center;
    }
    .age-gate-card{
      padding: 18px 14px 14px;
      max-height: calc(100dvh - 16px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
      border-radius: 14px;
      transform: scale(0.95);
      transform-origin: center center;
    }
    .age-gate-kicker{
      font-size: 10px;
      margin: 0 0 8px;
    }
    .age-gate-card h2{
      font-size: 19px;
      margin: 0 0 10px;
      line-height: 1.2;
    }
    .age-gate-card p{
      font-size: 13px;
      line-height: 1.5;
      margin: 0 0 9px;
    }
    .age-gate-legal{
      font-size: 11px;
      line-height: 1.45;
      margin: 0 0 12px;
    }
    .age-gate-contact{
      font-size: 12px;
      margin: 0 0 12px;
      line-height: 1.5;
    }
    .age-gate-enter,
    .age-gate-leave{
      padding: 11px 12px;
      font-size: 13px;
      min-width: 0;
      border-radius: 10px;
    }
    .age-gate-actions{
      position: sticky;
      bottom: 0;
      background: #faf8f3;
      padding-top: 10px;
      margin-top: 10px;
      border-top: 1px solid var(--line);
      z-index: 2;
      gap: 8px;
    }
  }

  body.shop-theme-forest{
    /* Predvolená svetlá lesná paleta — :root + body::before/::after */
  }
  body.shop-theme-forest .site-header::before{
    background: linear-gradient(90deg, var(--accent-dark), var(--accent) 42%, var(--accent-warm) 78%, var(--accent));
  }

  /* ===== Full mystic theme overrides ===== */
  body.shop-theme-mystic{
    --ink: #ece8da;
    --ink-muted: #b8b09a;
    --bg: #181a14;
    --card: #23281f;
    --line: #3a4334;
  }
  body.shop-theme-mystic{
    color: var(--ink);
    background: #151710;
  }
  body.shop-theme-mystic::before{
    background:
      radial-gradient(980px 600px at 12% 12%, rgba(168,85,247,0.45), transparent 66%),
      radial-gradient(980px 560px at 86% 18%, rgba(34,197,94,0.22), transparent 72%),
      radial-gradient(760px 420px at 72% 62%, rgba(59,130,246,0.22), transparent 70%),
      linear-gradient(180deg, #0f1110 0%, #10130d 48%, #0b0d09 100%);
  }
  body.shop-theme-mystic::after{
    background:
      radial-gradient(820px 520px at 14% 74%, rgba(168,85,247,0.28), transparent 70%),
      radial-gradient(1100px 720px at 86% 84%, rgba(56,189,248,0.20), transparent 74%),
      repeating-linear-gradient(135deg, rgba(168,85,247,0.06) 0 1px, transparent 1px 10px),
      repeating-linear-gradient(25deg, rgba(34,197,94,0.04) 0 1px, transparent 1px 12px),
      linear-gradient(180deg, #0f120d 0%, #10120c 44%, #0a0c08 100%);
  }

  body.shop-theme-mystic .site-header{
    background:
      linear-gradient(180deg, rgba(28,34,24,0.94) 0%, rgba(22,26,18,0.9) 100%);
    border-bottom: 1px solid rgba(168,85,247,0.28);
    box-shadow:
      0 1px 0 rgba(255,255,255,0.04) inset,
      0 12px 30px rgba(0,0,0,0.28);
  }
  body.shop-theme-mystic .site-header::before{
    background: linear-gradient(90deg, #7c3aed, #22c55e 45%, #38bdf8 80%, #a855f7);
  }
  body.shop-theme-mystic .site-header::after{
    opacity: 0.45;
    background-image:
      radial-gradient(circle at 14% 40%, rgba(168,85,247,0.18), transparent 44%),
      radial-gradient(circle at 86% 24%, rgba(34,197,94,0.12), transparent 40%);
  }
  body.shop-theme-mystic .header-search-row{
    border-top-color: rgba(168,85,247,0.18);
    background: rgba(28,34,24,0.55);
  }
  body.shop-theme-mystic #brand{ color: #f1ead6; }
  body.shop-theme-mystic #brand .brand-mark{
    background: linear-gradient(145deg, rgba(168,85,247,0.22), rgba(34,197,94,0.1));
    border-color: rgba(168,85,247,0.35);
    color: #d8b4fe;
  }
  body.shop-theme-mystic #headerNav .header-nav-link{
    color: #e8e2d0;
    background: rgba(40,48,34,0.72);
    border-color: rgba(108,126,93,0.4);
    box-shadow: none;
  }
  body.shop-theme-mystic #headerNav .header-nav-link:hover{
    color: #f7f1df;
    background: rgba(168,85,247,0.16);
    border-color: rgba(168,85,247,0.4);
  }
  body.shop-theme-mystic .header-categories-btn{
    background: rgba(33,40,30,0.86);
    border-color: rgba(168,85,247,0.35);
    color: #d8b4fe;
  }
  body.shop-theme-mystic .header-search input{
    background: rgba(40,48,34,0.72);
    border-color: rgba(108,126,93,0.4);
    color: #e8e2d0;
    box-shadow: none;
  }
  body.shop-theme-mystic .header-search input::placeholder{ color: rgba(232,226,208,0.55); }
  body.shop-theme-mystic .header-search .ti-search,
  body.shop-theme-mystic .header-search-clear{ color: rgba(232,226,208,0.7); }
  body.shop-theme-mystic .header-search input:focus{
    border-color: rgba(168,85,247,0.5);
    background: rgba(33,40,30,0.92);
    box-shadow: 0 0 0 3px rgba(168,85,247,0.18);
  }
  body.shop-theme-mystic .header-categories-panel{
    background: linear-gradient(180deg, #242a20, #1c2119);
    border-color: rgba(168,85,247,0.28);
  }
  body.shop-theme-mystic .header-categories-panel a{ color: #ece6d4; }
  body.shop-theme-mystic #cartBtn{
    background: linear-gradient(145deg, #6d28d9, #5a9435);
    box-shadow: 0 10px 26px rgba(88,28,135,0.35);
  }

  body.shop-theme-mystic .benefits,
  body.shop-theme-mystic .trust-badges-section,
  body.shop-theme-mystic #main{
    background: transparent;
  }

  body.shop-theme-mystic .benefit-item{
    background: rgba(34,41,32,0.66);
    border: 1px solid rgba(106,126,91,0.35);
    border-radius: 12px;
    padding: 10px 12px;
  }
  body.shop-theme-mystic .benefit-text strong{ color: #eee7d5; }
  body.shop-theme-mystic .benefit-text span{ color: #b8b09a; }

  body.shop-theme-mystic .trust-badge{
    background: rgba(34,42,32,0.78);
    border-color: rgba(113,131,97,0.4);
  }
  body.shop-theme-mystic .trust-badge-text strong{ color: #efe8d6; }
  body.shop-theme-mystic .trust-badge-text span{ color: #b8b09a; }
  body.shop-theme-mystic .trust-sketch img{
    filter: invert(1) brightness(1.04);
    opacity: 0.9;
  }

  body.shop-theme-mystic .category-tile,
  body.shop-theme-mystic .film-card,
  body.shop-theme-mystic .product-card,
  body.shop-theme-mystic .checkout-card,
  body.shop-theme-mystic .pdp-media,
  body.shop-theme-mystic .pdp-info .qty-row{
    background: rgba(35,42,32,0.82);
    border-color: rgba(112,131,97,0.4);
    color: #ece6d5;
  }
  body.shop-theme-mystic .category-tile-meta,
  body.shop-theme-mystic .product-card .desc,
  body.shop-theme-mystic .bestsellers-sub,
  body.shop-theme-mystic .pdp-sku,
  body.shop-theme-mystic .pdp-desc{ color: #b8b09a; }
  body.shop-theme-mystic .product-card:hover,
  body.shop-theme-mystic .film-card:hover{
    box-shadow: 0 12px 28px rgba(0,0,0,0.28);
  }

  body.shop-theme-mystic .product-card-img,
  body.shop-theme-mystic .film-card-img,
  body.shop-theme-mystic .upsell-card,
  body.shop-theme-mystic .upsell-ph,
  body.shop-theme-mystic .variant-select,
  body.shop-theme-mystic .checkout-card input, body.shop-theme-mystic .checkout-card select, body.shop-theme-mystic .checkout-card textarea,
  body.shop-theme-mystic #pickupForm input, body.shop-theme-mystic #pickupForm select{
    background: rgba(22,26,20,0.85);
    border-color: rgba(104,122,89,0.45);
    color: #ece6d5;
  }

  body.shop-theme-mystic .drawer{
    background: #1f241c;
    box-shadow: -12px 0 44px rgba(0,0,0,0.45);
  }
  body.shop-theme-mystic .drawer-header,
  body.shop-theme-mystic #cartSummary,
  body.shop-theme-mystic .drawer-actions{
    background: rgba(29,34,26,0.94);
    border-color: rgba(100,118,85,0.42);
  }
  body.shop-theme-mystic .drawer-actions .btn-secondary,
  body.shop-theme-mystic #pickupForm .btn-secondary,
  body.shop-theme-mystic #pickupForm .btn-delivery{
    background: rgba(32,39,29,0.88);
    color: #e9e3d2;
    border-color: rgba(104,123,90,0.44);
  }

  body.shop-theme-mystic #form label,
  body.shop-theme-mystic #pickupForm label:not(.age-confirm),
  body.shop-theme-mystic .checkout-card label,
  body.shop-theme-mystic .drawer-section-title{ color: #c3baa4; }

  body.shop-theme-mystic .site-footer{
    background: #11150f;
    color: #cdc7b6;
  }
  body.shop-theme-mystic .footer-col h4{ color: #f0ead8; }

  /* ===== Nordic slate — cool light stone ===== */
  body.shop-theme-nordic{
    --ink: #152033;
    --ink-muted: #5a6b7e;
    --bg: #e6edf4;
    --card: #f5f8fb;
    --line: #c3cfdc;
    --accent-dark: #2a4466;
    --accent-warm: #6ea8c0;
    color: var(--ink);
    background: #dfe7f0;
  }
  body.shop-theme-nordic::before{
    background:
      radial-gradient(920px 540px at 8% 10%, rgba(61,90,128,0.28), transparent 68%),
      radial-gradient(860px 500px at 92% 18%, rgba(110,168,192,0.26), transparent 70%),
      linear-gradient(180deg, #e8eef5 0%, #d9e2ec 48%, #cfd9e6 100%);
    opacity: 1;
  }
  body.shop-theme-nordic::after{
    background:
      radial-gradient(780px 440px at 18% 78%, rgba(42,68,102,0.18), transparent 70%),
      radial-gradient(980px 560px at 88% 88%, rgba(148,163,184,0.22), transparent 72%),
      linear-gradient(180deg, #d5dee8 0%, #c8d3e0 100%);
    opacity: calc(var(--mystic-shift) * 0.85);
  }
  body.shop-theme-nordic .trust-bar{
    background: #1a2838;
    color: #c5d4e4;
  }
  body.shop-theme-nordic .site-header{
    background: linear-gradient(180deg, rgba(245,248,251,0.97) 0%, rgba(230,237,244,0.94) 100%);
    border-bottom: 1px solid rgba(61,90,128,0.18);
    box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 10px 28px rgba(26,40,56,0.06);
  }
  body.shop-theme-nordic .site-header::before{
    background: linear-gradient(90deg, #2a4466, #3d5a80 40%, #6ea8c0 78%, #3d5a80);
  }
  body.shop-theme-nordic #brand .brand-mark{
    background: linear-gradient(145deg, rgba(61,90,128,0.16), rgba(110,168,192,0.12));
    border-color: rgba(61,90,128,0.3);
    color: #3d5a80;
  }
  body.shop-theme-nordic #headerNav .header-nav-link{
    background: rgba(255,255,255,0.72);
    border-color: rgba(61,90,128,0.2);
  }
  body.shop-theme-nordic #headerNav .header-nav-link:hover{
    background: rgba(61,90,128,0.1);
    border-color: rgba(61,90,128,0.35);
    color: #2a4466;
  }
  body.shop-theme-nordic .header-categories-btn{
    border-color: rgba(61,90,128,0.28);
    color: #3d5a80;
  }
  body.shop-theme-nordic #cartBtn{
    background: linear-gradient(145deg, #3d5a80, #2a4466);
    box-shadow: 0 10px 24px rgba(42,68,102,0.28);
  }
  body.shop-theme-nordic .site-footer{
    background: #152033;
    color: #b7c5d4;
  }
  body.shop-theme-nordic .footer-col h4{ color: #e8eef5; }

  /* ===== Cocoa noir — espresso + gold ===== */
  body.shop-theme-cocoa{
    --ink: #f0e6d4;
    --ink-muted: #b5a58e;
    --bg: #1a1410;
    --card: #2a221c;
    --line: #4a3d32;
    --accent-dark: #8a7048;
    --accent-warm: #e8c07a;
    color: var(--ink);
    background: #120e0b;
  }
  body.shop-theme-cocoa::before{
    background:
      radial-gradient(980px 600px at 12% 10%, rgba(196,165,116,0.28), transparent 66%),
      radial-gradient(900px 520px at 88% 16%, rgba(120,72,40,0.35), transparent 70%),
      radial-gradient(720px 400px at 70% 60%, rgba(80,50,30,0.3), transparent 68%),
      linear-gradient(180deg, #1a1410 0%, #14100c 50%, #0c0907 100%);
  }
  body.shop-theme-cocoa::after{
    background:
      radial-gradient(820px 500px at 16% 76%, rgba(196,165,116,0.16), transparent 70%),
      radial-gradient(1000px 680px at 90% 86%, rgba(90,50,28,0.28), transparent 74%),
      repeating-linear-gradient(120deg, rgba(196,165,116,0.04) 0 1px, transparent 1px 11px),
      linear-gradient(180deg, #16110d 0%, #100c09 100%);
  }
  body.shop-theme-cocoa .trust-bar{
    background: #0c0907;
    color: #d4c4a8;
  }
  body.shop-theme-cocoa .site-header{
    background: linear-gradient(180deg, rgba(36,28,22,0.96) 0%, rgba(24,18,14,0.92) 100%);
    border-bottom: 1px solid rgba(196,165,116,0.28);
    box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 12px 30px rgba(0,0,0,0.35);
  }
  body.shop-theme-cocoa .site-header::before{
    background: linear-gradient(90deg, #8a7048, #c4a574 42%, #e8c07a 78%, #c4a574);
  }
  body.shop-theme-cocoa .site-header::after{
    opacity: 0.4;
    background-image:
      radial-gradient(circle at 12% 40%, rgba(196,165,116,0.16), transparent 44%),
      radial-gradient(circle at 88% 20%, rgba(120,72,40,0.18), transparent 42%);
  }
  body.shop-theme-cocoa .header-search-row{
    border-top-color: rgba(196,165,116,0.2);
    background: rgba(28,22,18,0.55);
  }
  body.shop-theme-cocoa #brand{ color: #f3ead8; }
  body.shop-theme-cocoa #brand .brand-mark{
    background: linear-gradient(145deg, rgba(196,165,116,0.22), rgba(120,72,40,0.14));
    border-color: rgba(196,165,116,0.4);
    color: #e8c07a;
  }
  body.shop-theme-cocoa #headerNav .header-nav-link{
    color: #ebe0cc;
    background: rgba(48,38,30,0.75);
    border-color: rgba(120,96,70,0.4);
    box-shadow: none;
  }
  body.shop-theme-cocoa #headerNav .header-nav-link:hover{
    color: #fff8ec;
    background: rgba(196,165,116,0.16);
    border-color: rgba(196,165,116,0.45);
  }
  body.shop-theme-cocoa .header-categories-btn{
    background: rgba(40,32,26,0.9);
    border-color: rgba(196,165,116,0.35);
    color: #e8c07a;
  }
  body.shop-theme-cocoa .header-search input{
    background: rgba(48,38,30,0.75);
    border-color: rgba(120,96,70,0.4);
    color: #ebe0cc;
    box-shadow: none;
  }
  body.shop-theme-cocoa .header-search input::placeholder{ color: rgba(235,224,204,0.55); }
  body.shop-theme-cocoa .header-search .ti-search,
  body.shop-theme-cocoa .header-search-clear{ color: rgba(235,224,204,0.7); }
  body.shop-theme-cocoa .header-search input:focus{
    border-color: rgba(196,165,116,0.5);
    background: rgba(40,32,26,0.95);
    box-shadow: 0 0 0 3px rgba(196,165,116,0.16);
  }
  body.shop-theme-cocoa .header-categories-panel{
    background: linear-gradient(180deg, #2c231c, #221b16);
    border-color: rgba(196,165,116,0.28);
  }
  body.shop-theme-cocoa .header-categories-panel a{ color: #ebe0cc; }
  body.shop-theme-cocoa #cartBtn{
    background: linear-gradient(145deg, #c4a574, #8a7048);
    color: #1a1410;
    box-shadow: 0 10px 26px rgba(120,90,40,0.35);
  }
  body.shop-theme-cocoa .benefits,
  body.shop-theme-cocoa .trust-badges-section,
  body.shop-theme-cocoa #main{ background: transparent; }
  body.shop-theme-cocoa .benefit-item{
    background: rgba(42,34,28,0.72);
    border: 1px solid rgba(120,96,70,0.38);
    border-radius: 12px;
    padding: 10px 12px;
  }
  body.shop-theme-cocoa .benefit-text strong{ color: #f0e6d4; }
  body.shop-theme-cocoa .benefit-text span{ color: #b5a58e; }
  body.shop-theme-cocoa .trust-badge{
    background: rgba(42,34,28,0.8);
    border-color: rgba(120,96,70,0.4);
  }
  body.shop-theme-cocoa .trust-badge-text strong{ color: #f0e6d4; }
  body.shop-theme-cocoa .trust-badge-text span{ color: #b5a58e; }
  body.shop-theme-cocoa .trust-sketch img{
    filter: invert(1) brightness(1.05) sepia(0.25);
    opacity: 0.9;
  }
  body.shop-theme-cocoa .category-tile,
  body.shop-theme-cocoa .film-card,
  body.shop-theme-cocoa .product-card,
  body.shop-theme-cocoa .checkout-card,
  body.shop-theme-cocoa .pdp-media,
  body.shop-theme-cocoa .pdp-info .qty-row{
    background: rgba(42,34,28,0.88);
    border-color: rgba(120,96,70,0.42);
    color: #f0e6d4;
  }
  body.shop-theme-cocoa .category-tile-meta,
  body.shop-theme-cocoa .product-card .desc,
  body.shop-theme-cocoa .bestsellers-sub,
  body.shop-theme-cocoa .pdp-sku,
  body.shop-theme-cocoa .pdp-desc{ color: #b5a58e; }
  body.shop-theme-cocoa .product-card:hover,
  body.shop-theme-cocoa .film-card:hover{
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  }
  body.shop-theme-cocoa .product-card-img,
  body.shop-theme-cocoa .film-card-img,
  body.shop-theme-cocoa .upsell-card,
  body.shop-theme-cocoa .upsell-ph,
  body.shop-theme-cocoa .variant-select,
  body.shop-theme-cocoa .checkout-card input,
  body.shop-theme-cocoa .checkout-card select,
  body.shop-theme-cocoa .checkout-card textarea,
  body.shop-theme-cocoa #pickupForm input,
  body.shop-theme-cocoa #pickupForm select{
    background: rgba(22,16,12,0.88);
    border-color: rgba(120,96,70,0.45);
    color: #f0e6d4;
  }
  body.shop-theme-cocoa .drawer{
    background: #241c16;
    box-shadow: -12px 0 44px rgba(0,0,0,0.5);
  }
  body.shop-theme-cocoa .drawer-header,
  body.shop-theme-cocoa #cartSummary,
  body.shop-theme-cocoa .drawer-actions{
    background: rgba(32,24,18,0.96);
    border-color: rgba(120,96,70,0.42);
  }
  body.shop-theme-cocoa .drawer-actions .btn-secondary,
  body.shop-theme-cocoa #pickupForm .btn-secondary,
  body.shop-theme-cocoa #pickupForm .btn-delivery{
    background: rgba(40,32,26,0.9);
    color: #ebe0cc;
    border-color: rgba(120,96,70,0.45);
  }
  body.shop-theme-cocoa #form label,
  body.shop-theme-cocoa #pickupForm label:not(.age-confirm),
  body.shop-theme-cocoa .checkout-card label,
  body.shop-theme-cocoa .drawer-section-title{ color: #c4b49a; }
  body.shop-theme-cocoa .site-footer{
    background: #0c0907;
    color: #c4b49a;
  }
  body.shop-theme-cocoa .footer-col h4{ color: #f0e6d4; }

  /* ===== Citrus grove — warm cream + amber ===== */
  body.shop-theme-citrus{
    --ink: #2a2114;
    --ink-muted: #7a6a4e;
    --bg: #f7f0e0;
    --card: #fffcf5;
    --line: #e5d9bf;
    --accent-dark: #b45309;
    --accent-warm: #f59e0b;
    color: var(--ink);
    background: #f3ead4;
  }
  body.shop-theme-citrus::before{
    background:
      radial-gradient(960px 560px at 10% 8%, rgba(217,119,6,0.28), transparent 66%),
      radial-gradient(880px 500px at 90% 16%, rgba(234,179,8,0.22), transparent 70%),
      radial-gradient(700px 400px at 50% 90%, rgba(132,204,22,0.12), transparent 68%),
      linear-gradient(180deg, #f8f1e2 0%, #efe4cc 48%, #e6d8b8 100%);
    opacity: 1;
  }
  body.shop-theme-citrus::after{
    background:
      radial-gradient(820px 460px at 14% 74%, rgba(180,83,9,0.16), transparent 70%),
      radial-gradient(980px 540px at 86% 86%, rgba(250,204,21,0.18), transparent 72%),
      linear-gradient(180deg, #eadfc4 0%, #ddd0b0 100%);
    opacity: calc(var(--mystic-shift) * 0.8);
  }
  body.shop-theme-citrus .trust-bar{
    background: #3b2a12;
    color: #f5e6c8;
  }
  body.shop-theme-citrus .site-header{
    background: linear-gradient(180deg, rgba(255,252,245,0.97) 0%, rgba(247,240,224,0.94) 100%);
    border-bottom: 1px solid rgba(217,119,6,0.2);
    box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 10px 28px rgba(90,60,20,0.07);
  }
  body.shop-theme-citrus .site-header::before{
    background: linear-gradient(90deg, #b45309, #d97706 40%, #f59e0b 72%, #84cc16 100%);
  }
  body.shop-theme-citrus #brand .brand-mark{
    background: linear-gradient(145deg, rgba(217,119,6,0.18), rgba(245,158,11,0.12));
    border-color: rgba(217,119,6,0.32);
    color: #d97706;
  }
  body.shop-theme-citrus #headerNav .header-nav-link{
    background: rgba(255,255,255,0.75);
    border-color: rgba(217,119,6,0.22);
  }
  body.shop-theme-citrus #headerNav .header-nav-link:hover{
    background: rgba(217,119,6,0.1);
    border-color: rgba(217,119,6,0.38);
    color: #b45309;
  }
  body.shop-theme-citrus .header-categories-btn{
    border-color: rgba(217,119,6,0.3);
    color: #d97706;
  }
  body.shop-theme-citrus #cartBtn{
    background: linear-gradient(145deg, #f59e0b, #d97706);
    box-shadow: 0 10px 24px rgba(180,83,9,0.28);
  }
  body.shop-theme-citrus .site-footer{
    background: #2a2114;
    color: #dccfb4;
  }
  body.shop-theme-citrus .footer-col h4{ color: #fff8ec; }

  .scroll-top-btn{
    position:fixed;
    right:16px;
    bottom:20px;
    z-index:55;
    width:42px;
    height:42px;
    border: 1.5px solid var(--accent);
    border-radius:999px;
    background: var(--card);
    color: var(--ink);
    box-shadow: 0 10px 28px rgba(20,23,15,0.18);
    cursor:pointer;
    display:grid;
    place-items:center;
    opacity:0;
    pointer-events:none;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease, background .15s ease, border-color .15s ease;
  }
  .scroll-top-btn .ti{
    font-size:20px;
    line-height:1;
    color: var(--ink);
    opacity: 1;
  }
  .scroll-top-btn.is-visible{
    opacity:1;
    pointer-events:auto;
    transform:none;
  }
  .scroll-top-btn:hover{
    background: var(--accent-dim);
    border-color: var(--accent-dark);
  }
  .scroll-top-btn:hover .ti{ color: var(--ink); }
  @media (max-width: 720px){
    .scroll-top-btn{ right:12px; bottom:16px; width:40px; height:40px; }
  }
  /* Chatbot bubble sits bottom-right — lift scroll arrow above it */
  body.flowi-widget-active .scroll-top-btn{
    bottom: 96px;
  }
  @media (max-width: 720px){
    body.flowi-widget-active .scroll-top-btn{
      bottom: 84px;
      right: 12px;
    }
  }

  /* ── Falling leaves (optional shop effect) ── */
  #leafStage{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 40;
  }
  #leafStage .leaf{
    position: absolute;
    top: -24px;
    width: 15px;
    height: 15px;
    opacity: 0;
    will-change: transform, opacity;
  }
  #leafStage .leaf svg{ width: 100%; height: 100%; display: block; overflow: visible; }
  #leafStage .leaf.fall{
    animation: leafFall 4.2s cubic-bezier(0.33, 0, 0.45, 1) forwards;
  }
  @keyframes leafFall{
    0%   { opacity: 0; transform: translate3d(0, 0, 0) rotate(0deg) scale(0.9); }
    8%   { opacity: 0.92; }
    85%  { opacity: 0.82; }
    100% { opacity: 0; transform: translate3d(var(--sway, 40px), var(--fall, 110vh), 0) rotate(var(--spin, 240deg)) scale(1); }
  }
  body.checkout-view #leafStage,
  body.not-found-page #leafStage,
  body.cart-open #leafStage,
  body.age-pending #leafStage{ display: none !important; }
  @media (prefers-reduced-motion: reduce){
    #leafStage{ display: none !important; }
  }
  @media (max-width: 720px){
    #leafStage .leaf{ width: 12px; height: 12px; }
  }

  /* ── Purchase puff hinter (cumulus cloud) ── */
  .puff-hint{
    --puff-fill: color-mix(in srgb, #ffffff 78%, var(--card));
    --puff-fill-soft: color-mix(in srgb, #ffffff 90%, var(--accent-dim));
    --puff-ink: #14110c;
    --puff-ink-soft: #2a2418;
    --puff-product: #1f3a12;
    position: fixed;
    left: 14px;
    bottom: 14px;
    width: min(328px, calc(100vw - 64px));
    z-index: 45;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    filter: drop-shadow(0 10px 18px rgba(20,23,15,0.12));
  }
  .puff-hint.is-ready,
  .puff-hint.is-visible{ visibility: visible; }
  .puff-hint.is-visible{
    opacity: 1;
    pointer-events: auto;
  }
  .puff-hint.is-entering{
    animation: puffIn 0.75s cubic-bezier(0.22,1,0.36,1) forwards;
  }
  @keyframes puffIn{
    0%   { opacity:0; transform: translateY(22px) scale(0.72); filter: drop-shadow(0 6px 10px rgba(20,23,15,0.08)) blur(7px); }
    70%  { opacity:1; filter: drop-shadow(0 10px 18px rgba(20,23,15,0.12)) blur(0); }
    100% { opacity:1; transform: translateY(0) scale(1); filter: drop-shadow(0 10px 18px rgba(20,23,15,0.12)) blur(0); }
  }
  @keyframes puffFloat{
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
  }
  .puff-hint.is-visible .puff-silhouette{
    animation: puffFloat 3.6s ease-in-out 0.8s infinite;
  }
  .puff-silhouette{
    position: absolute;
    inset: -18px -10px -8px -14px;
    pointer-events: none;
    z-index: 0;
  }
  .puff-lobe{
    position: absolute;
    border-radius: 50%;
    background:
      radial-gradient(circle at 32% 28%, rgba(255,255,255,0.98), transparent 46%),
      radial-gradient(circle at 70% 70%, var(--puff-fill-soft), var(--puff-fill));
  }
  .puff-lobe-a{ width: 78px; height: 72px; left: 2%; top: 28%; }
  .puff-lobe-b{ width: 96px; height: 90px; left: 18%; top: -2%; }
  .puff-lobe-c{ width: 108px; height: 100px; left: 42%; top: -14%; }
  .puff-lobe-d{ width: 86px; height: 80px; right: 4%; top: 8%; }
  .puff-lobe-e{ width: 70px; height: 64px; right: -4%; top: 36%; }
  .puff-lobe-base{
    left: 6%;
    right: 6%;
    bottom: 10%;
    height: 62%;
    border-radius: 999px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.55), transparent 40%),
      var(--puff-fill);
  }
  .puff-mist{
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.75), transparent 70%);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
  }
  .puff-hint.is-entering .puff-mist{
    animation: mistDrift 1.35s ease-out forwards;
  }
  @keyframes mistDrift{
    0%   { opacity:0.55; transform: translate(0,0) scale(0.5); }
    100% { opacity:0; transform: translate(var(--dx), var(--dy)) scale(1.6); }
  }
  .puff-close{
    position: absolute;
    top: 2px;
    right: 10px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.85);
    color: #3a3428;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
  }
  .puff-close:hover{
    color: #14110c;
    background: #fff;
  }
  .puff-close .ti{ font-size: 15px; line-height: 1; }
  .puff-cloud{
    position: relative;
    z-index: 1;
    display: block;
    text-decoration: none;
    color: inherit;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 22px 22px 20px 18px;
    overflow: visible;
  }
  .puff-cloud:hover .puff-text .product{
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .puff-row{
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    padding-right: 16px;
  }
  .puff-thumb{
    width: 52px;
    height: 52px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    background: #efe9d8;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .puff-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .puff-thumb .ti{
    font-size: 20px;
    color: #2a4218;
    opacity: 0.9;
  }
  .puff-text{
    font-size: 13px;
    line-height: 1.4;
    color: var(--puff-ink-soft);
    font-weight: 600;
    min-width: 0;
    text-shadow: 0 1px 0 rgba(255,255,255,0.65);
  }
  .puff-text strong{
    color: var(--puff-ink);
    font-weight: 800;
  }
  .puff-text .product{
    color: var(--puff-product);
    font-weight: 800;
  }
  .puff-text.is-swapping{
    animation: puffContentSwap 0.45s ease;
  }
  @keyframes puffContentSwap{
    0% { opacity: 0.35; transform: translateY(3px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  /* Dark shop themes still keep readable dark text on white cloud */
  body.shop-theme-cocoa .puff-hint,
  body.shop-theme-mystic .puff-hint{
    --puff-ink: #12100c;
    --puff-ink-soft: #241f16;
    --puff-product: #1a3010;
  }
  body.checkout-view .puff-hint,
  body.not-found-page .puff-hint,
  body.cart-open .puff-hint,
  body.age-pending .puff-hint{ display: none !important; }
  @media (prefers-reduced-motion: reduce){
    .puff-hint{ display: none !important; }
  }
  @media (max-width: 480px){
    .puff-hint{
      left: 8px;
      width: min(248px, calc(100vw - 72px));
      bottom: 10px;
      transform: scale(0.9);
      transform-origin: left bottom;
    }
    .puff-hint.is-entering{
      animation-name: puffInMobile;
    }
    @keyframes puffInMobile{
      0%   { opacity:0; transform: translateY(18px) scale(0.72); filter: drop-shadow(0 6px 10px rgba(20,23,15,0.08)) blur(7px); }
      70%  { opacity:1; filter: drop-shadow(0 10px 18px rgba(20,23,15,0.12)) blur(0); }
      100% { opacity:1; transform: translateY(0) scale(0.9); filter: drop-shadow(0 10px 18px rgba(20,23,15,0.12)) blur(0); }
    }
    .puff-cloud{ padding: 16px 14px 14px 12px; }
    .puff-text{ font-size: 12px; }
    .puff-thumb{ width: 40px; height: 40px; }
    .puff-close{ width: 24px; height: 24px; top: 0; right: 6px; }
    .puff-close .ti{ font-size: 13px; }
    .puff-silhouette{ inset: -12px -6px -4px -8px; }
    .puff-lobe-a{ width: 58px; height: 54px; }
    .puff-lobe-b{ width: 72px; height: 68px; }
    .puff-lobe-c{ width: 80px; height: 74px; }
    .puff-lobe-d{ width: 64px; height: 60px; }
    .puff-lobe-e{ width: 52px; height: 48px; }
  }
