 :root{
    --bg:#FFFFFF;
    --bg2:#F7F7F5;
    --ink:#141414;
    --ink-soft:#6E6B65;
    --line:#EAE8E3;
    --gold:#B9812E;
    --wine:#7A2331;
    --sparkle:#B99A3C;
    --whisky:#B9812E;
    --gin:#4F6B52;
    --rum:#8B4B2B;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{-webkit-tap-highlight-color:transparent; scroll-behavior:smooth;}
  body{ background:var(--bg); color:var(--ink); font-family:'Montserrat',sans-serif; -webkit-font-smoothing:antialiased; padding-bottom:64px; }
  ::selection{ background:var(--gold); color:#fff; }
  a{ color:inherit; text-decoration:none; }
  img{ display:block; max-width:100%; }
  button{ font-family:'Montserrat',sans-serif; }

  /* PHOTO / PLACEHOLDER */
  .photo-box{ position:relative; width:100%; height:100%; overflow:hidden; background:#EFEDE6; }
  .photo-box img{ width:100%; height:100%; object-fit:cover; }
  .photo-placeholder{ position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; background:repeating-linear-gradient(45deg, #F0EEE8 0 2px, #F9F8F5 2px 14px); }
  .photo-placeholder svg{ width:24px; height:24px; opacity:.3; }
  .photo-placeholder span{ font-size:10px; font-weight:600; letter-spacing:.05em; color:var(--ink-soft); opacity:.75; }
  .photo-placeholder.round{ border-radius:50%; }

  /* ANNOUNCEMENT MARQUEE */
  .marquee-bar{ background:var(--ink); color:#fff; overflow:hidden; white-space:nowrap; height:34px; display:flex; align-items:center; }
  .marquee-track{ display:flex; gap:48px; animation:scrollMarquee 22s linear infinite; padding-left:48px; }
  .marquee-track span{ font-size:10.5px; font-weight:600; letter-spacing:.14em; text-transform:uppercase; }
  @keyframes scrollMarquee{ 0%{ transform:translateX(0); } 100%{ transform:translateX(-50%); } }

  /* HEADER */
  header.site-header{
    position:sticky; top:0; z-index:30; background:var(--bg);
    border-bottom:1px solid var(--line);
    display:flex; align-items:center; justify-content:space-between;
    padding:16px 18px;
  }
  .icon-btn{ background:none; border:none; cursor:pointer; padding:6px; display:flex; align-items:center; color:var(--ink); }
  .icon-btn svg{ width:20px; height:20px; }
  .site-header .brand{ font-weight:800; font-size:18px; letter-spacing:.26em; }
  .header-right{ display:flex; align-items:center; gap:4px; }
  .age-badge{ font-size:10px; font-weight:700; letter-spacing:.08em; border:1px solid var(--ink); color:var(--ink); padding:4px 8px; margin-right:2px; }

  /* DRAWER MENU */
  .drawer-backdrop{ position:fixed; inset:0; background:rgba(20,20,20,0.4); opacity:0; pointer-events:none; transition:opacity .2s ease; z-index:60; }
  .drawer-backdrop.show{ opacity:1; pointer-events:auto; }
  .drawer{
    position:fixed; top:0; left:0; bottom:0; width:78%; max-width:320px; background:#fff; z-index:61;
    transform:translateX(-100%); transition:transform .25s ease; padding:20px 22px; overflow-y:auto;
  }
  .drawer.show{ transform:translateX(0); }
  .drawer-top{ display:flex; justify-content:space-between; align-items:center; margin-bottom:28px; }
  .drawer-top .brand{ font-weight:800; font-size:16px; letter-spacing:.22em; }
  .drawer nav{ display:flex; flex-direction:column; }
  .drawer nav a{ padding:13px 0; border-bottom:1px solid var(--line); font-size:14px; font-weight:600; display:flex; align-items:center; justify-content:space-between; }
  .drawer nav a .dot{ width:7px; height:7px; border-radius:50%; }
  .drawer-foot{ margin-top:24px; font-size:10.5px; color:var(--ink-soft); line-height:1.6; }

  /* HERO */
  .hero{ position:relative; width:100%; height:72vh; min-height:440px; max-height:640px; }
  .hero .photo-box{ position:absolute; inset:0; }
  .hero-overlay{ position:absolute; inset:0; background:linear-gradient(0deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0.05) 70%); }
  .hero-inner{ position:absolute; left:0; right:0; bottom:0; padding:0 20px 34px; color:#fff; }
  .hero-eyebrow{ font-size:11px; font-weight:700; letter-spacing:.24em; text-transform:uppercase; color:var(--gold); margin-bottom:14px; }
  .hero-inner h1{ font-weight:800; font-size:clamp(34px,9vw,54px); line-height:1; text-transform:uppercase; letter-spacing:-0.01em; max-width:560px; }
  .hero-inner p{ font-size:13.5px; color:#E6E3DC; max-width:340px; margin-top:16px; line-height:1.6; }
  .hero-cta{
    margin-top:22px; display:inline-block; background:#fff; color:var(--ink); padding:14px 26px;
    font-weight:700; font-size:12px; letter-spacing:.1em; text-transform:uppercase;
  }
  .hero-cta:hover{ background:var(--gold); color:#fff; }

  /* TRUST BADGES */
  .trust-bar{ display:grid; grid-template-columns:1fr 1fr; border-bottom:1px solid var(--line); }
  @media(min-width:640px){ .trust-bar{ grid-template-columns:repeat(4,1fr); } }
  .trust-item{ display:flex; flex-direction:column; align-items:center; gap:8px; text-align:center; padding:22px 12px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); }
  .trust-item:nth-child(2n){ border-right:none; }
  @media(min-width:640px){ .trust-item{ border-bottom:none; } .trust-item:nth-child(2n){ border-right:1px solid var(--line); } .trust-item:last-child{ border-right:none; } }
  .trust-item svg{ width:22px; height:22px; color:var(--gold); }
  .trust-item span{ font-size:10.5px; font-weight:700; letter-spacing:.04em; text-transform:uppercase; color:var(--ink); max-width:120px; line-height:1.4; }

  /* PROMO COUNTDOWN */
  .promo-countdown{ background:var(--ink); color:#fff; padding:40px 20px 44px; text-align:center; scroll-margin-top:20px; }
  .promo-countdown .eyebrow{ font-size:10.5px; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); display:block; margin-bottom:10px; }
  .promo-countdown h2{ font-weight:800; font-size:24px; text-transform:uppercase; letter-spacing:-0.005em; max-width:420px; margin:0 auto; line-height:1.25; }
  .countdown{ display:flex; align-items:center; justify-content:center; gap:10px; margin:26px auto 4px; }
  .cd-box{ display:flex; flex-direction:column; align-items:center; gap:4px; min-width:52px; }
  .cd-num{ font-weight:800; font-size:28px; font-variant-numeric:tabular-nums; border:1px solid rgba(255,255,255,0.25); padding:8px 4px; width:100%; text-align:center; }
  .cd-label{ font-size:9px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:#B8B4AC; }
  .cd-sep{ font-weight:800; font-size:22px; color:rgba(255,255,255,0.3); margin-top:-14px; }
  .promo-cta{ display:inline-block; margin-top:24px; background:var(--gold); color:#fff; padding:13px 28px; font-weight:700; font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; }
  .promo-cta:hover{ background:#fff; color:var(--ink); }

  .sale-badge{ background:#B03A2E !important; }
  .price-old{ font-size:12px; color:var(--ink-soft); text-decoration:line-through; font-weight:500; margin-right:6px; }
  .price.sale{ color:#B03A2E; }
  .price-cell .old{ display:block; font-size:10px; color:var(--ink-soft); text-decoration:line-through; font-weight:500; }
  .price-cell.sale{ color:#B03A2E; }

  main{ max-width:1080px; margin:0 auto; }

  /* GENERIC SECTION HEAD */
  .section-head{ padding:0 20px; margin-bottom:24px; text-align:left; }
  .section-head .eyebrow{ font-size:10.5px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--gold); display:block; margin-bottom:8px; }
  .section-head h2{ font-weight:800; font-size:28px; text-transform:uppercase; letter-spacing:-0.01em; }
  .section-head p{ font-size:13px; color:var(--ink-soft); margin-top:10px; max-width:520px; line-height:1.55; }
  section.block{ padding:52px 0 8px; scroll-margin-top:44px; border-top:1px solid var(--line); }

  /* QUICK ORDER FORM */
  .quick-order{ margin:32px 20px; background:var(--bg2); border:1px solid var(--line); padding:24px; }
  .quick-order .qo-label{ font-size:10.5px; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:var(--gold); margin-bottom:6px; }
  .quick-order h2{ font-weight:800; font-size:20px; margin-bottom:18px; text-transform:uppercase; }
  .qo-fields{ display:flex; flex-direction:column; gap:14px; }
  .qo-fields label{ font-size:10px; font-weight:700; color:var(--ink-soft); text-transform:uppercase; letter-spacing:.08em; display:block; margin-bottom:6px; }
  .qo-fields input, .qo-fields select{ width:100%; border:none; border-bottom:1px solid var(--ink); padding:10px 2px; font-family:'Montserrat',sans-serif; font-size:15px; background:transparent; color:var(--ink); }
  .qo-fields select{ -webkit-appearance:none; appearance:none;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236E6B65' stroke-width='1.4' fill='none'/%3E%3C/svg%3E");
    background-repeat:no-repeat; background-position:right 4px center; padding-right:18px;
  }
  .qo-fields input::placeholder{ color:#ABA79D; }
  .qo-fields input:focus, .qo-fields select:focus{ outline:none; border-bottom-color:var(--gold); }
  .qo-submit{ margin-top:6px; width:100%; padding:15px 0; background:var(--ink); color:#fff; border:none; font-weight:700; font-size:12.5px; letter-spacing:.1em; text-transform:uppercase; cursor:pointer; }
  .qo-submit:hover{ background:var(--gold); }
  .qo-submit:active{ transform:scale(.98); }
  .qo-success{ display:none; text-align:center; padding:6px 0; }
  .qo-success.show{ display:block; }
  .qo-success .barcode{ height:36px; margin:6px auto 12px; width:60%; background-image:repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 5px, var(--ink) 5px 6px, transparent 6px 10px); opacity:.85; }
  .qo-success .order-no{ font-size:13px; font-weight:700; letter-spacing:.06em; color:var(--gold); margin-bottom:8px; }
  .qo-success p{ font-size:12.5px; color:var(--ink-soft); line-height:1.55; margin-bottom:14px; }
  .qo-reset{ padding:10px 22px; border:1px solid var(--ink); background:none; color:var(--ink); font-weight:700; font-size:11.5px; letter-spacing:.06em; text-transform:uppercase; cursor:pointer; }
  .qo-image{ width:100%; aspect-ratio:16/7; margin:0 20px; width:calc(100% - 40px); border:1px solid var(--line); }

  /* STEPS */
  .steps{ padding:0 20px; display:flex; flex-direction:column; gap:0; }
  .step{ display:flex; gap:18px; padding:20px 0; border-bottom:1px solid var(--line); }
  .step:last-child{ border-bottom:none; }
  .step-num{ flex:0 0 auto; width:36px; height:36px; background:var(--ink); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:13px; }
  .step-body h3{ font-weight:700; font-size:15px; margin-bottom:4px; text-transform:uppercase; letter-spacing:.01em; }
  .step-body p{ font-size:12.5px; color:var(--ink-soft); line-height:1.5; max-width:460px; }

  /* CATEGORY NAV */
  nav.cat-nav{ position:sticky; top:53px; z-index:20; background:var(--bg); border-bottom:1px solid var(--line); display:flex; gap:8px; overflow-x:auto; padding:14px 20px; scrollbar-width:none; }
  nav.cat-nav::-webkit-scrollbar{ display:none; }
  .chip{ flex:0 0 auto; font-weight:700; font-size:11px; letter-spacing:.05em; text-transform:uppercase; padding:9px 15px; border:1px solid var(--ink); color:var(--ink); white-space:nowrap; background:#fff; transition:all .15s ease; display:flex; align-items:center; gap:7px; }

  .chip.active{ background:var(--ink); color:#fff; }

  section.cat{ padding:44px 0 8px; scroll-margin-top:96px; }
  .cat-head{ padding:0 20px; border-bottom:2px solid var(--ink); padding-bottom:16px; margin-bottom:20px; }
  .cat-head .eyebrow{ font-size:11px; font-weight:700; letter-spacing:.15em; text-transform:uppercase; display:block; margin-bottom:6px; }
  .cat-head-row{ display:flex; align-items:flex-end; justify-content:space-between; }
  .cat-head h2{ font-weight:800; font-size:26px; text-transform:uppercase; }
  .cat-head .count{ font-size:11px; color:var(--ink-soft); letter-spacing:.05em; }
  .cat-desc{ font-size:13px; color:var(--ink-soft); line-height:1.55; margin-top:10px; max-width:520px; }

  /* CAROUSEL (shared: products / reviews) */
  .carousel{ display:flex; gap:14px; overflow-x:auto; padding:2px 20px 14px; scroll-snap-type:x mandatory; scrollbar-width:none; }
  .carousel::-webkit-scrollbar{ display:none; }
  .card{ background:#fff; border:1px solid var(--line); display:flex; flex-direction:column; overflow:hidden; flex:0 0 72%; scroll-snap-align:start; }
  @media(min-width:560px){ .card{ flex-basis:270px; } }

  .card-visual{ aspect-ratio:4/5; position:relative; }
  .card-visual .sku, .card-visual .abv{ position:absolute; top:10px; font-size:9.5px; font-weight:700; letter-spacing:.04em; background:rgba(255,255,255,0.92); color:var(--ink); padding:3px 7px; z-index:2; }
  .card-visual .sku{ left:10px; }
  .card-visual .abv{ right:10px; }
  .card-visual .badge{
    position:absolute; top:10px; left:50%; transform:translateX(-50%);
    background:var(--gold); color:#fff; font-size:9.5px; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
    padding:4px 9px; z-index:2;
  }
  .card-body{ padding:16px 16px 18px; display:flex; flex-direction:column; gap:6px; flex:1; }
  .card-body h3{ font-weight:700; font-size:15px; line-height:1.3; text-transform:uppercase; letter-spacing:.01em; }
  .card-body p{ font-size:12px; color:var(--ink-soft); line-height:1.45; flex:1; }
  .price-row{ display:flex; align-items:center; justify-content:space-between; margin-top:4px; }
  .price{ font-weight:800; font-size:16px; }
  .price::after{ content:" ₴"; font-size:11px; color:var(--ink-soft); font-weight:500; }

  .order-btn{ margin-top:10px; width:100%; padding:12px 0; background:var(--ink); color:#fff; border:1px solid var(--ink); font-weight:700; font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; cursor:pointer; transition:background .15s ease, color .15s ease; }
  .order-btn:hover{ background:var(--gold); border-color:var(--gold); }
  .order-btn:active{ transform:scale(.98); }

  /* REVIEWS */
  .review-card{ flex:0 0 78%; scroll-snap-align:start; background:#fff; border:1px solid var(--line); padding:22px; display:flex; flex-direction:column; gap:12px; position:relative; }
  @media(min-width:560px){ .review-card{ flex-basis:320px; } }
  .review-quote{ font-size:34px; font-weight:800; color:var(--line); line-height:1; }
  .review-top{ display:flex; align-items:center; gap:12px; margin-top:-14px; }
  .review-avatar{ width:42px; height:42px; border-radius:50%; overflow:hidden; flex:0 0 auto; }
  .review-avatar .photo-placeholder{ position:static; width:100%; height:100%; }
  .review-avatar .photo-placeholder svg{ width:16px; height:16px; }
  .review-avatar .photo-placeholder span{ display:none; }
  .review-name{ font-weight:700; font-size:13.5px; text-transform:uppercase; letter-spacing:.02em; }
  .review-stars{ color:var(--gold); font-size:12px; letter-spacing:1px; margin-top:2px; }
  .review-text{ font-size:12.5px; color:var(--ink-soft); line-height:1.55; }

  /* PRICE TABLE */
  .price-table-wrap{ padding:0 20px 8px; overflow-x:auto; }
  table.price-table{ width:100%; min-width:560px; border-collapse:collapse; }
  table.price-table th{ text-align:left; font-size:10.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-soft); padding:0 10px 10px; border-bottom:2px solid var(--ink); }
  table.price-table td{ padding:11px 10px; font-size:13px; border-bottom:1px solid var(--line); vertical-align:middle; }
  table.price-table .tdot{ width:8px; height:8px; border-radius:50%; flex:0 0 auto; }
  table.price-table td.price-cell{ font-weight:800; white-space:nowrap; }
  table.price-table td.price-cell::after{ content:" ₴"; font-size:10.5px; color:var(--ink-soft); font-weight:500; }
  table.price-table tr:hover td{ background:var(--bg2); }

  /* CERTIFICATE */
  .certificate{ padding:0 20px; display:flex; flex-direction:column; gap:20px; }
  @media(min-width:640px){ .certificate{ flex-direction:row; align-items:flex-start; } }
  .cert-image{ width:100%; aspect-ratio:4/3; border:1px solid var(--line); flex:0 0 auto; }
  @media(min-width:640px){ .cert-image{ width:280px; } }
  .cert-text p{ font-size:13px; color:var(--ink-soft); line-height:1.65; margin-bottom:16px; max-width:520px; }
  .cert-badges{ display:flex; flex-wrap:wrap; gap:8px; }
  .cert-badge{ font-size:10.5px; font-weight:700; letter-spacing:.02em; text-transform:uppercase; border:1px solid var(--ink); padding:8px 12px; color:var(--ink); display:flex; align-items:center; gap:6px; }
  .cert-badge svg{ width:13px; height:13px; color:var(--gold); }

  /* FOOTER */
  footer{ margin-top:20px; padding:32px 20px 12px; border-top:1px solid var(--line); max-width:1080px; margin-left:auto; margin-right:auto; }
  .footer-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; flex-wrap:wrap; gap:14px; }
  footer .f-brand{ font-weight:800; font-size:17px; letter-spacing:.22em; }
  .social-row{ display:flex; gap:10px; }
  .social-row a{ width:34px; height:34px; border:1px solid var(--ink); display:flex; align-items:center; justify-content:center; }
  .social-row a svg{ width:15px; height:15px; }
  .social-row a:hover{ background:var(--ink); color:#fff; }
  footer p{ font-size:11.5px; color:var(--ink-soft); line-height:1.7; }
  footer .disclaimer{ margin-top:14px; padding-top:14px; border-top:1px solid var(--line); font-size:10.5px; color:#9C9890; letter-spacing:.02em; }

  /* STICKY BOTTOM ORDER BAR */
  .sticky-order-bar{
    position:fixed; left:0; right:0; bottom:0; z-index:40; background:#fff; border-top:1px solid var(--line);
    display:flex; align-items:center; justify-content:space-between; padding:12px 18px;
    transform:translateY(100%); transition:transform .25s ease;
    box-shadow:0 -4px 14px rgba(0,0,0,0.05);
  }
  .sticky-order-bar.show{ transform:translateY(0); }
  .sticky-order-bar .sob-text{ font-size:11px; font-weight:700; letter-spacing:.03em; }
  .sticky-order-bar .sob-text small{ display:block; font-size:9.5px; font-weight:600; color:var(--ink-soft); letter-spacing:.05em; text-transform:uppercase; margin-top:2px; }
  .sob-btn{ background:var(--gold); color:#fff; border:none; padding:12px 22px; font-weight:700; font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; cursor:pointer; }
  .sob-btn:active{ transform:scale(.97); }

  /* ORDER SHEET (per-product) */
  .backdrop{ position:fixed; inset:0; background:rgba(20,20,20,0.5); opacity:0; pointer-events:none; transition:opacity .2s ease; z-index:50; }
  .backdrop.show{ opacity:1; pointer-events:auto; }
  .sheet{ position:fixed; left:0; right:0; bottom:0; max-width:480px; margin:0 auto; background:#fff; border-top:1px solid var(--line); transform:translateY(110%); transition:transform .28s cubic-bezier(.22,.9,.32,1); z-index:51; padding:0 0 24px; max-height:88vh; overflow-y:auto; }
  .sheet.show{ transform:translateY(0); }
  .sheet-tear{ height:14px; background-image:repeating-linear-gradient(90deg, transparent 0 8px, var(--line) 8px 9px); }
  .sheet-inner{ padding:22px 22px 4px; }
  .sheet-head{ display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:18px; }
  .sheet-head .label{ font-size:10px; font-weight:700; letter-spacing:.12em; color:var(--gold); text-transform:uppercase; }
  .sheet-head h3{ font-weight:700; font-size:18px; margin-top:5px; text-transform:uppercase; }
  .close-x{ font-size:22px; color:var(--ink-soft); background:none; border:none; cursor:pointer; line-height:1; padding:4px; }
  .ticket-line{ display:flex; justify-content:space-between; font-size:12.5px; padding:8px 0; border-bottom:1px dashed var(--line); }
  .ticket-line span:first-child{ color:var(--ink-soft); }
  form.order-form{ margin-top:18px; display:flex; flex-direction:column; gap:13px; }
  form.order-form label{ font-size:10px; font-weight:700; color:var(--ink-soft); text-transform:uppercase; letter-spacing:.08em; display:block; margin-bottom:6px; }
  form.order-form input{ width:100%; border:none; border-bottom:1px solid var(--ink); padding:9px 2px; font-family:'Montserrat',sans-serif; font-size:15px; background:transparent; color:var(--ink); }
  form.order-form input::placeholder{ color:#ABA79D; }
  form.order-form input:focus{ outline:none; border-bottom-color:var(--gold); }
  .submit-btn{ margin-top:8px; width:100%; padding:15px 0; background:var(--gold); color:#fff; border:none; font-weight:700; font-size:12.5px; letter-spacing:.08em; text-transform:uppercase; cursor:pointer; }
  .submit-btn:active{ transform:scale(.98); }
  .confirm-view{ display:none; text-align:center; padding:14px 0 6px; }
  .confirm-view.show{ display:block; }
  .order-form-wrap.hide{ display:none; }
  .barcode{ height:42px; margin:18px auto 12px; width:70%; background-image:repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 5px, var(--ink) 5px 6px, transparent 6px 10px); opacity:.85; }
  .order-no{ font-size:13px; font-weight:700; letter-spacing:.06em; color:var(--gold); }
  .confirm-view h3{ font-weight:700; font-size:18px; margin:12px 0 6px; text-transform:uppercase; }
  .confirm-view p{ font-size:12.5px; color:var(--ink-soft); max-width:280px; margin:0 auto 16px; line-height:1.55; }
  .close-btn{ padding:12px 26px; border:1px solid var(--ink); background:none; color:var(--ink); font-weight:700; font-size:12px; letter-spacing:.06em; text-transform:uppercase; cursor:pointer; }