
:root{
  --brand:#173F35;
  --brand-2:#245247;
  --brand-soft:#e8f1ee;
  --cream:#f6f1e6;
  --ink:#12221d;
  --muted:#5c6c66;
  --white:#fffdf9;
  --gold:#d2ac63;
  --card:#fffaf2;
  --line:rgba(23,63,53,.12);
  --shadow:0 20px 50px rgba(15,26,23,.12);
  --shadow-soft:0 8px 24px rgba(15,26,23,.10);
  --radius:24px;
  --radius-sm:18px;
  --max:1200px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at top left, rgba(210,172,99,.08), transparent 26%),
    radial-gradient(circle at bottom right, rgba(23,63,53,.08), transparent 24%),
    var(--cream);
}
body.is-age-locked{overflow:hidden}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button,input,textarea{font:inherit}
button:focus-visible,a:focus-visible,input:focus-visible,textarea:focus-visible{
  outline:3px solid rgba(210,172,99,.72);
  outline-offset:3px;
}
.container{width:min(calc(100% - 32px),var(--max));margin-inline:auto}
.eyebrow{
  font:700 .85rem/1.2 Oswald, sans-serif;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:var(--gold);
  margin:0 0 14px;
}
.eyebrow--light{color:#f5dfb0}
h1,h2,h3,h4,.brand__name{font-family:Oswald,Impact,sans-serif;letter-spacing:.02em}
h1,h2,h3,h4,p{margin-top:0}
.btn{
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  border:1px solid transparent;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:800;
  cursor:pointer;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn--primary{background:var(--brand);color:var(--white);box-shadow:var(--shadow-soft)}
.btn--ghost{background:rgba(255,255,255,.12);color:var(--white);border-color:rgba(255,255,255,.35);backdrop-filter:blur(8px)}
.btn--ghost-dark{background:transparent;border-color:var(--line);color:var(--brand)}
.btn--full{width:100%}
.section{padding:96px 0}
.section-head{max-width:760px;margin:0 auto 32px;text-align:center}
.section-head p:last-child{color:var(--muted);font-size:1.05rem}

.age-gate{
  position:fixed;inset:0;z-index:1000;
  display:grid;place-items:center;
  background:
    linear-gradient(180deg, rgba(10,16,14,.78), rgba(10,16,14,.86)),
    rgba(10,16,14,.72);
  backdrop-filter:blur(12px);
  padding:24px;
}
.age-gate.is-hidden{display:none}
.age-gate__card{
  width:min(100%,480px);
  background:linear-gradient(180deg, #fffdf9, #fff7ea);
  border-radius:28px;
  padding:34px;
  box-shadow:0 28px 80px rgba(0,0,0,.26);
  text-align:center;
  border:1px solid rgba(255,255,255,.58);
  position:relative;
  overflow:hidden;
}
.age-gate__card::before{
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:5px;
  background:linear-gradient(90deg, var(--brand), var(--gold), var(--brand));
}
.age-gate__badge{
  width:74px;
  height:74px;
  margin:0 auto 18px;
  display:grid;
  place-items:center;
  border-radius:22px;
  background:var(--brand);
  color:var(--white);
  box-shadow:0 16px 36px rgba(23,63,53,.24);
  font:800 1.35rem/1 Oswald,Impact,sans-serif;
  letter-spacing:.04em;
}
.age-gate__card h2{
  color:var(--brand);
  font-size:clamp(2rem,4vw,2.75rem);
  line-height:1;
  margin-bottom:14px;
}
.age-gate__card p:not(.eyebrow){
  max-width:380px;
  margin:0 auto;
  color:var(--muted);
  line-height:1.65;
}
.age-gate__actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin:24px 0 0}
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(246,241,230,.76);
  backdrop-filter:blur(16px);
  border-bottom:1px solid transparent;
  transition:background .2s ease,border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled{border-color:var(--line);box-shadow:var(--shadow-soft)}
.header-inner{
  min-height:84px;display:flex;align-items:center;justify-content:space-between;gap:18px;
}
.brand{display:flex;align-items:center;gap:12px;min-width:0}
.brand__logo{
  width:62px;height:62px;object-fit:cover;border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,.15)
}
.brand__name{display:block;font-size:1.35rem;line-height:1;color:var(--brand)}
.brand__tag{display:block;color:var(--muted);font-size:.92rem;white-space:nowrap}
.nav{display:flex;align-items:center;gap:24px}
.nav a{font-weight:700;position:relative}
.nav a::after{
  content:"";position:absolute;left:0;bottom:-6px;width:100%;height:2px;background:var(--gold);
  transform:scaleX(0);transform-origin:center;transition:transform .18s ease;
}
.nav a:hover::after,.nav a.is-active::after{transform:scaleX(1)}
.header-actions{display:flex;align-items:center;gap:12px}
.lang-switch{
  display:inline-flex;padding:4px;border-radius:999px;background:rgba(255,255,255,.8);
  border:1px solid var(--line);box-shadow:var(--shadow-soft)
}
.lang-switch__btn{
  min-width:44px;min-height:36px;border:0;border-radius:999px;background:transparent;cursor:pointer;
  color:var(--brand);font-weight:800
}
.lang-switch__btn.is-active{background:var(--brand);color:var(--white)}
.cart-button,.floating-cart{
  min-height:46px;padding:0 12px 0 18px;border-radius:999px;border:1px solid var(--line);
  background:rgba(255,255,255,.82);color:var(--brand);display:inline-flex;align-items:center;gap:10px;
  font-weight:800;cursor:pointer;box-shadow:var(--shadow-soft)
}
.cart-button strong,.floating-cart strong{
  min-width:28px;height:28px;display:grid;place-items:center;border-radius:999px;
  background:var(--brand);color:var(--white);font-size:.85rem
}
.menu-toggle{
  display:none;width:46px;height:46px;border-radius:14px;border:1px solid var(--line);background:rgba(255,255,255,.82);
  align-items:center;justify-content:center;flex-direction:column;gap:5px;cursor:pointer;box-shadow:var(--shadow-soft)
}
.menu-toggle span{width:20px;height:2px;background:var(--brand);border-radius:999px}
.mobile-menu{display:none;padding:0 16px 18px;background:rgba(246,241,230,.96);border-bottom:1px solid var(--line)}
.mobile-menu.is-open{display:block}
.mobile-menu a{display:block;padding:14px 8px;border-bottom:1px solid var(--line);font-weight:700}
.mobile-menu__bottom{display:flex;gap:10px;padding-top:14px}
.hero{position:relative;min-height:min(92vh,900px);display:flex;align-items:end;overflow:clip}
.hero__image,.hero__shade{position:absolute;inset:0}
.hero__image{background:url('assets/hero-bg.jpg') center/cover no-repeat;transform:scale(1.03)}
.hero__shade{
  background:
    linear-gradient(180deg, rgba(12,17,15,.18), rgba(12,17,15,.52)),
    linear-gradient(115deg, rgba(23,63,53,.82), rgba(23,63,53,.26) 60%, rgba(0,0,0,.18));
}
.hero__content{
  position:relative;z-index:1;display:grid;grid-template-columns:1.3fr .7fr;gap:32px;
  align-items:end;padding:120px 0 64px
}
.hero__textblock{color:var(--white);max-width:720px}
.hero__textblock h1{font-size:clamp(3rem,7vw,5.8rem);line-height:.95;margin-bottom:18px}
.hero__lead{font-size:1.08rem;max-width:640px;color:rgba(255,255,255,.92)}
.hero__actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}
.hero-card{
  background:rgba(255,250,242,.12); color:var(--white); padding:24px; border-radius:28px;
  border:1px solid rgba(255,255,255,.18); backdrop-filter:blur(18px); box-shadow:var(--shadow)
}
.hero-card__title{font-weight:800;letter-spacing:.03em;text-transform:uppercase;margin-bottom:14px}
.hero-card__items{display:grid;gap:14px}
.hero-card__items div{display:grid;gap:4px}
.hero-card__items strong{font-size:1.15rem}
.quick-points{margin-top:-34px;position:relative;z-index:2}
.quick-points__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.point-card{
  background:var(--card);padding:24px;border-radius:26px;border:1px solid rgba(255,255,255,.5);
  box-shadow:var(--shadow); min-height:100%;
}
.point-card__icon{font-size:1.5rem}
.products{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.product-card{
  background:rgba(255,253,249,.85);border:1px solid rgba(23,63,53,.08);border-radius:28px;
  overflow:hidden;box-shadow:var(--shadow-soft);display:flex;flex-direction:column;transition:transform .18s ease, box-shadow .18s ease;
}
.product-card:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.product-card__image-wrap{aspect-ratio:1/1;overflow:hidden;background:linear-gradient(180deg,#fff, #f4ede1)}
.product-card__image{width:100%;height:100%;object-fit:cover}
.product-card__body{padding:22px;display:flex;flex:1;flex-direction:column}
.product-card h3{font-size:1.65rem;margin-bottom:10px;color:var(--brand)}
.product-card__description{color:var(--muted);line-height:1.6;flex:1}
.product-card__meta{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:14px}
.badge{
  padding:7px 10px;border-radius:999px;background:var(--brand-soft);color:var(--brand);
  font-size:.8rem;font-weight:700
}
.variant-group{display:grid;gap:10px;margin-top:18px}
.variant-group__label{
  color:var(--brand);
  font:700 .8rem/1.2 Oswald,sans-serif;
  text-transform:uppercase;
  letter-spacing:.14em;
}
.variant-picker{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
.variant-pill{
  min-height:42px;
  padding:0 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.85);
  color:var(--brand);
  font-weight:700;
  cursor:pointer;
  transition:transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}
.variant-pill:hover{transform:translateY(-1px);border-color:rgba(23,63,53,.28)}
.variant-pill.is-active{
  background:var(--brand);
  border-color:var(--brand);
  color:var(--white);
  box-shadow:var(--shadow-soft);
}
.product-card__footer{display:flex;align-items:end;justify-content:space-between;gap:14px;margin-top:18px}
.price{font-size:1.8rem;font-weight:800;color:var(--brand)}
.product-card__spec{color:var(--muted)}
.about-grid,.checkout-grid,.contacts-grid,.reviews-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.about-card,.content-card,.contacts-card,.review-card{
  background:var(--card);border:1px solid rgba(255,255,255,.46);border-radius:28px;padding:28px;box-shadow:var(--shadow-soft)
}
.about-card--features{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.about-feature{padding:18px;border-radius:20px;background:rgba(23,63,53,.05)}
.about-feature strong{display:block;color:var(--brand);margin-bottom:8px}
.delivery{background:linear-gradient(180deg, var(--brand), #102d26);color:var(--white)}
.section-head--light p:last-child{color:rgba(255,255,255,.75)}
.delivery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.delivery-card{
  background:rgba(255,255,255,.08);padding:24px;border-radius:26px;border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(12px)
}
.delivery-card a{
  color:var(--white);
  font-weight:700;
  text-decoration:underline;
  text-decoration-color:rgba(255,255,255,.35);
  text-underline-offset:3px;
  overflow-wrap:anywhere;
}
.delivery-card__icon{font-size:1.8rem;margin-bottom:14px}
.premium-brand{
  position:relative;
  overflow:hidden;
  color:var(--white);
  background:
    linear-gradient(135deg, rgba(255,255,255,.055) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, #173f35 0%, #102d26 100%);
}
.premium-brand::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(210,172,99,.22), transparent 22%, transparent 78%, rgba(210,172,99,.14)),
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 32%, rgba(0,0,0,.16));
}
.premium-brand .container{position:relative;z-index:1}
.premium-brand__head{
  max-width:820px;
  margin:0 auto 28px;
  text-align:center;
}
.premium-brand__head h2{
  font-size:clamp(2.3rem,4.8vw,4.6rem);
  line-height:.98;
  margin-bottom:18px;
}
.premium-brand__head p:last-child{
  max-width:760px;
  margin:0 auto;
  color:rgba(255,253,249,.82);
  font-size:1.08rem;
  line-height:1.75;
}
.premium-brand__mark{
  width:fit-content;
  margin:0 auto 34px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 16px;
  border:1px solid rgba(210,172,99,.42);
  border-radius:999px;
  background:rgba(255,250,242,.08);
  box-shadow:0 14px 36px rgba(0,0,0,.16);
  color:#f5dfb0;
  text-transform:uppercase;
  font-size:.78rem;
  font-weight:800;
}
.premium-brand__mark strong{
  color:var(--white);
  font-family:Oswald,Impact,sans-serif;
  font-size:1.05rem;
  letter-spacing:.04em;
}
.premium-grid{
  display:grid;
  grid-template-columns:repeat(10,1fr);
  gap:18px;
}
.premium-card{
  position:relative;
  grid-column:span 3;
  min-height:270px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:26px;
  overflow:hidden;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(180deg, rgba(255,250,242,.14), rgba(255,250,242,.07)),
    rgba(10,31,26,.72);
  box-shadow:0 22px 60px rgba(0,0,0,.22);
  transition:transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.premium-card--wide{grid-column:span 4}
.premium-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg, var(--gold), rgba(255,255,255,.1));
  opacity:.78;
}
.premium-card::after{
  content:"";
  position:absolute;
  right:22px;
  bottom:26px;
  width:118px;
  height:1px;
  background:rgba(210,172,99,.22);
  transform:rotate(-28deg);
}
.premium-card:hover{
  transform:translateY(-6px);
  border-color:rgba(210,172,99,.44);
  background:
    linear-gradient(180deg, rgba(255,250,242,.18), rgba(255,250,242,.09)),
    rgba(10,31,26,.82);
  box-shadow:0 30px 76px rgba(0,0,0,.28);
}
.premium-card__icon{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  margin-bottom:auto;
  border-radius:18px;
  background:rgba(210,172,99,.14);
  border:1px solid rgba(210,172,99,.36);
  color:#f5dfb0;
  font:800 .92rem/1 Inter, sans-serif;
}
.premium-card h3{
  position:relative;
  margin:30px 0 12px;
  color:var(--white);
  font-size:1.72rem;
  line-height:1.08;
}
.premium-card p{
  position:relative;
  margin:0;
  color:rgba(255,253,249,.76);
  line-height:1.68;
}
.reviews-grid{grid-template-columns:repeat(3,1fr)}
.review-card{position:relative}
.review-card::before{content:'“';position:absolute;right:18px;top:12px;font-size:4.5rem;line-height:1;color:rgba(23,63,53,.08);font-family:Georgia,serif}
.review-card strong{display:block;color:var(--brand);margin-top:14px}
.order-form{display:grid;gap:14px}
.order-form label{display:grid;gap:8px;font-weight:600}
.order-form input,.order-form textarea{
  border:1px solid var(--line);background:#fff;border-radius:16px;padding:14px 16px;color:var(--ink)
}
.branch-suggestions{
  display:none;
  margin-top:-4px;
  padding:8px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fffdf9;
  box-shadow:var(--shadow-soft);
}
.branch-suggestions.is-visible{
  display:grid;
  gap:6px;
}
.branch-suggestions__item{
  width:100%;
  padding:12px 14px;
  border:0;
  border-radius:12px;
  background:transparent;
  color:var(--ink);
  text-align:left;
  cursor:pointer;
  transition:background .18s ease, color .18s ease;
}
.branch-suggestions__item:hover,
.branch-suggestions__item:focus-visible{
  background:rgba(23,63,53,.08);
  color:var(--brand);
}
.order-form button[disabled]{opacity:.72;cursor:wait}
.form-note{font-size:.92rem;color:var(--muted);margin:0}
.form-status{
  margin-top:18px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(23,63,53,.14);
  background:rgba(23,63,53,.06);
  color:var(--brand);
}
.form-status--error{
  border-color:rgba(158,65,54,.2);
  background:rgba(158,65,54,.08);
  color:#8a3128;
}
.order-modal{
  position:fixed;
  inset:0;
  z-index:1400;
  display:grid;
  place-items:center;
  padding:24px;
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
}
.order-modal.is-visible{
  opacity:1;
  pointer-events:auto;
}
.order-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(10,16,14,.68);
  backdrop-filter:blur(10px);
}
.order-modal__card{
  position:relative;
  z-index:1;
  width:min(100%,460px);
  padding:32px 28px 28px;
  border-radius:28px;
  text-align:center;
  background:linear-gradient(180deg, #fffdf9, #fff7ea);
  border:1px solid rgba(255,255,255,.62);
  box-shadow:0 28px 80px rgba(0,0,0,.28);
  transform:translateY(10px) scale(.97);
  transition:transform .2s ease;
}
.order-modal.is-visible .order-modal__card{
  transform:translateY(0) scale(1);
}
.order-modal__card::before{
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:5px;
  border-radius:28px 28px 0 0;
  background:linear-gradient(90deg, var(--brand), var(--gold), var(--brand));
}
.order-modal__badge{
  width:72px;
  height:72px;
  margin:0 auto 18px;
  display:grid;
  place-items:center;
  border-radius:22px;
  background:var(--brand);
  color:var(--white);
  box-shadow:0 16px 36px rgba(23,63,53,.24);
  font:800 1.25rem/1 Oswald,Impact,sans-serif;
  letter-spacing:.05em;
}
.order-modal__card h2{
  margin-bottom:12px;
  color:var(--brand);
  font-size:clamp(2rem,4vw,2.6rem);
  line-height:1;
}
.order-modal__card p{
  margin:0 auto 22px;
  max-width:340px;
  color:var(--muted);
  line-height:1.65;
}
.order-modal__button{
  min-width:150px;
}
.order-modal--error .order-modal__badge{
  background:#8a3128;
  box-shadow:0 16px 36px rgba(138,49,40,.22);
}
.checkout-summary{display:grid;gap:12px}
.summary-list{display:grid;gap:10px}
.summary-item,.cart-item{
  display:grid;grid-template-columns:84px 1fr;gap:14px;padding:14px;border:1px solid var(--line);
  border-radius:18px;background:rgba(255,255,255,.6)
}
.summary-item img,.cart-item img{width:84px;height:84px;border-radius:14px;object-fit:cover}
.summary-item__row,.cart-item__row{display:flex;justify-content:space-between;gap:12px;align-items:center}
.summary-item__variant,.cart-item__variant{margin:6px 0 10px;color:var(--muted);font-size:.92rem}
.qty-controls{display:inline-flex;align-items:center;gap:10px}
.qty-controls button{
  width:30px;height:30px;border-radius:999px;border:1px solid var(--line);background:#fff;cursor:pointer
}
.remove-link{font-size:.92rem;color:#9e4136;cursor:pointer;border:0;background:transparent;padding:0}
.btn.is-disabled{opacity:.62;cursor:not-allowed;transform:none;box-shadow:none}
.contact-list{display:flex;flex-wrap:wrap;gap:10px;margin:18px 0}
.contact-list span{padding:8px 12px;border-radius:999px;background:var(--brand-soft);color:var(--brand);font-weight:700}
.contacts-card a,.site-footer a{
  color:var(--brand);
  font-weight:700;
  overflow-wrap:anywhere;
  word-break:break-word;
}
.seo-copy{
  padding-top:0;
}
.seo-copy__card{
  max-width:980px;
  margin:0 auto;
  padding:28px;
  border-radius:28px;
  background:rgba(255,253,249,.82);
  border:1px solid rgba(23,63,53,.08);
  box-shadow:var(--shadow-soft);
}
.seo-copy__card h2{
  margin-bottom:16px;
  color:var(--brand);
  font-size:clamp(2rem,4vw,3rem);
}
.seo-copy__card p{
  margin-bottom:14px;
  color:var(--muted);
  line-height:1.72;
}
.seo-copy__card p:last-child{
  margin-bottom:0;
}
.social-block{margin-top:22px}
.social-block__title{
  margin:0 0 12px;
  color:var(--brand);
  font:700 .88rem/1.2 Oswald,sans-serif;
  text-transform:uppercase;
  letter-spacing:.14em;
}
.social-links{display:flex;flex-wrap:wrap;gap:12px}
.social-link{
  min-height:46px;
  padding:0 16px 0 14px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.82);
  color:var(--brand);
  box-shadow:var(--shadow-soft);
  font-weight:800;
  transition:transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.social-link svg{width:18px;height:18px;fill:currentColor;flex:0 0 auto}
.social-link:hover{
  transform:translateY(-2px) scale(1.02);
  background:var(--brand);
  border-color:var(--brand);
  color:var(--white);
}
.map-card iframe{width:100%;height:100%;min-height:320px;border:0;border-radius:24px}
.site-footer{
  padding:28px 0 42px;border-top:1px solid var(--line)
}
.site-footer__inner{display:flex;justify-content:space-between;gap:18px;align-items:center;flex-wrap:wrap;color:var(--muted)}
.site-footer__meta{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:14px;
  text-align:right;
}
.social-block--footer{margin-top:0}
.social-links--footer{justify-content:flex-end}
.floating-cart{
  position:fixed;right:18px;bottom:18px;z-index:40;display:none
}
.cart-drawer{
  position:fixed;top:0;right:0;width:min(440px,100%);height:100dvh;background:var(--card);z-index:120;
  transform:translateX(102%);transition:transform .22s ease;box-shadow:-20px 0 60px rgba(10,16,14,.2);
  display:flex;flex-direction:column
}
.cart-drawer.is-open{transform:translateX(0)}
.cart-drawer__header,.cart-drawer__footer{padding:20px;border-bottom:1px solid var(--line)}
.cart-drawer__footer{border-top:1px solid var(--line);margin-top:auto;border-bottom:0}
.cart-drawer__body{padding:20px;overflow:auto;display:grid;gap:12px}
.close-btn{
  width:42px;height:42px;border-radius:12px;border:1px solid var(--line);background:#fff;cursor:pointer
}
.drawer-backdrop{
  position:fixed;inset:0;background:rgba(12,16,14,.45);backdrop-filter:blur(4px);z-index:110;display:none
}
.drawer-backdrop.is-open{display:block}
.cart-top,.cart-bottom{display:flex;justify-content:space-between;align-items:center;gap:14px}
.warning{font-size:.94rem;color:var(--brand);font-weight:700}
.toast{
  position:fixed;left:50%;bottom:24px;transform:translate(-50%,120px);padding:14px 18px;border-radius:999px;
  background:var(--brand);color:var(--white);box-shadow:var(--shadow);z-index:130;transition:transform .2s ease
}
.toast.is-visible{transform:translate(-50%,0)}
.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
}
@media (max-width:768px){
  .container{width:min(calc(100% - 24px),var(--max))}
  .section{padding:78px 0}
  .header-inner{
    min-height:72px;
    gap:10px;
  }
  .brand{gap:10px;flex:1;min-width:0}
  .brand__logo{
    width:50px;
    height:50px;
    border-radius:14px;
    flex:0 0 50px;
  }
  .brand__name{
    font-size:1.1rem;
  }
  .header-actions{
    gap:8px;
    flex:0 0 auto;
  }
  .menu-toggle{
    width:44px;
    height:44px;
    border-radius:12px;
  }
  .mobile-menu{
    padding:0 12px 16px;
  }
  .mobile-menu a{
    padding:15px 8px;
  }
  .mobile-menu__bottom{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .mobile-menu__bottom .lang-switch__btn{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    border:1px solid var(--line);
    background:rgba(255,255,255,.82);
  }
  .hero{
    min-height:auto;
  }
  .hero__image{
    background-position:62% center;
    transform:scale(1.02);
  }
  .hero__shade{
    background:
      linear-gradient(180deg, rgba(12,17,15,.24), rgba(12,17,15,.68)),
      linear-gradient(140deg, rgba(23,63,53,.88), rgba(23,63,53,.28) 58%, rgba(0,0,0,.18));
  }
  .hero__content{
    gap:18px;
    padding:94px 0 34px;
  }
  .hero__textblock{
    max-width:none;
  }
  .hero__textblock h1{
    margin-bottom:14px;
    line-height:.96;
  }
  .hero__lead{
    font-size:1rem;
    line-height:1.58;
    max-width:34rem;
  }
  .hero__actions{
    gap:10px;
    margin-top:22px;
  }
  .hero__actions .btn{
    min-height:48px;
    padding:0 18px;
  }
  .hero-card{
    padding:20px;
    border-radius:24px;
  }
  .hero-card__items{
    gap:12px;
  }
  .quick-points{
    margin-top:-20px;
  }
  .quick-points__grid{
    gap:14px;
  }
  .point-card,
  .about-card,
  .content-card,
  .contacts-card,
  .review-card{
    padding:22px;
    border-radius:24px;
  }
  .product-card{
    border-radius:24px;
  }
  .product-card__image-wrap{
    aspect-ratio:1 / 1.06;
  }
  .product-card__image{
    object-position:center 38%;
  }
  .product-card__body{
    padding:20px;
  }
  .product-card h3{
    font-size:1.48rem;
  }
  .price{
    font-size:1.65rem;
  }
  .variant-group{
    gap:12px;
  }
  .variant-pill{
    min-height:48px;
    padding:0 14px;
  }
  .product-card__footer .btn{
    min-height:52px;
  }
  .delivery-card{
    padding:22px;
    border-radius:24px;
  }
  .premium-brand__mark{
    margin-bottom:24px;
  }
  .premium-grid{
    gap:14px;
  }
  .premium-card{
    padding:22px;
    border-radius:24px;
  }
  .premium-card h3{
    font-size:1.42rem;
    margin:22px 0 10px;
  }
  .premium-card p{
    line-height:1.6;
  }
  .reviews-grid{
    gap:16px;
  }
  .order-form input,
  .order-form textarea{
    min-height:50px;
    padding:13px 15px;
  }
  .summary-item,
  .cart-item{
    gap:12px;
    padding:12px;
  }
  .qty-controls{
    gap:8px;
  }
  .qty-controls button{
    width:34px;
    height:34px;
  }
  .map-card iframe{
    min-height:340px;
    border-radius:22px;
  }
  .site-footer{
    padding:24px 0 34px;
  }
  .seo-copy__card{
    padding:22px;
    border-radius:24px;
  }
  .site-footer__inner{
    gap:16px;
  }
  .site-footer__meta{
    width:100%;
    gap:12px;
  }
  .social-link{
    min-height:48px;
  }
  .cart-drawer{
    width:100%;
    max-width:100%;
  }
  .cart-drawer__header,
  .cart-drawer__footer,
  .cart-drawer__body{
    padding-inline:16px;
  }
  .floating-cart{
    right:12px;
    bottom:12px;
  }
}
@media (max-width:1120px){
  .products{grid-template-columns:repeat(3,1fr)}
  .hero__content{grid-template-columns:1fr}
  .hero-card{max-width:520px}
}
@media (max-width:900px){
  .desktop-nav{display:none}
  .menu-toggle{display:flex}
  .products{grid-template-columns:repeat(2,1fr)}
  .about-grid,.checkout-grid,.contacts-grid{grid-template-columns:1fr}
  .premium-grid,.reviews-grid,.delivery-grid,.quick-points__grid{grid-template-columns:1fr}
  .premium-card,.premium-card--wide{grid-column:1/-1;min-height:230px}
  .about-card--features{grid-template-columns:1fr 1fr}
}
@media (max-width:760px){
  .brand__tag{display:none}
}
@media (max-width:640px){
  .header-inner{min-height:74px}
  .lang-switch{display:none}
  .cart-button{display:none}
  .floating-cart{display:inline-flex}
  .age-gate{padding:18px}
  .age-gate__card{padding:28px 22px;border-radius:24px}
  .age-gate__badge{width:64px;height:64px;border-radius:20px}
  .age-gate__actions{display:grid}
  .age-gate__actions .btn{width:100%}
  .order-modal{
    padding:18px;
  }
  .order-modal__card{
    padding:28px 20px 22px;
    border-radius:24px;
  }
  .order-modal__badge{
    width:64px;
    height:64px;
    border-radius:20px;
  }
  .order-modal__button{
    width:100%;
  }
  .products{grid-template-columns:1fr}
  .social-links,.social-links--footer{justify-content:center}
  .social-link{width:100%;justify-content:center}
  .site-footer__meta{align-items:flex-start;text-align:left}
  .section{padding:72px 0}
  .hero__content{padding:100px 0 44px}
  .hero__textblock h1{font-size:2.75rem}
  .premium-brand__head{text-align:left;margin-bottom:22px}
  .premium-brand__head p:last-child{font-size:1rem;line-height:1.65}
  .premium-brand__mark{width:100%;justify-content:center;gap:9px;font-size:.72rem}
  .premium-card{min-height:0;padding:22px;border-radius:24px}
  .premium-card h3{font-size:1.48rem}
  .variant-picker{grid-template-columns:1fr}
  .product-card__footer{align-items:stretch;flex-direction:column}
  .product-card__footer .btn{width:100%}
  .about-card--features{grid-template-columns:1fr}
  .summary-item,.cart-item{grid-template-columns:72px 1fr}
  .summary-item img,.cart-item img{width:72px;height:72px}
}
@media (max-width:430px){
  .container{width:min(calc(100% - 20px),var(--max))}
  .section{padding:66px 0}
  .header-inner{
    min-height:68px;
  }
  .brand__logo{
    width:46px;
    height:46px;
    border-radius:12px;
  }
  .brand__name{
    font-size:1rem;
  }
  .menu-toggle{
    width:42px;
    height:42px;
  }
  .hero__content{
    padding:88px 0 28px;
    gap:16px;
  }
  .hero__textblock h1{
    font-size:2.45rem;
  }
  .hero__lead{
    font-size:.96rem;
  }
  .hero__actions{
    display:grid;
    grid-template-columns:1fr;
  }
  .hero__actions .btn{
    width:100%;
  }
  .hero-card{
    padding:18px;
  }
  .hero-card__title{
    margin-bottom:10px;
  }
  .point-card,
  .about-card,
  .content-card,
  .contacts-card,
  .review-card,
  .delivery-card,
  .seo-copy__card{
    padding:18px;
    border-radius:22px;
  }
  .product-card__body{
    padding:18px;
  }
  .product-card h3{
    font-size:1.38rem;
  }
  .price{
    font-size:1.54rem;
  }
  .variant-pill{
    min-height:50px;
  }
  .premium-brand__head h2{
    font-size:2.15rem;
  }
  .premium-card{
    padding:18px;
  }
  .premium-card__icon{
    width:48px;
    height:48px;
  }
  .premium-card h3{
    font-size:1.32rem;
  }
  .summary-item,
  .cart-item{
    grid-template-columns:64px 1fr;
  }
  .summary-item img,
  .cart-item img{
    width:64px;
    height:64px;
  }
  .summary-item__row,
  .cart-item__row{
    align-items:flex-start;
    flex-wrap:wrap;
  }
  .map-card iframe{
    min-height:320px;
  }
  .site-footer__inner{
    justify-content:flex-start;
  }
}
@media (max-width:390px){
  .hero__image{
    background-position:66% center;
  }
  .hero__textblock h1{
    font-size:2.28rem;
  }
  .age-gate{
    padding:14px;
  }
  .age-gate__card{
    padding:24px 18px;
  }
  .age-gate__card h2{
    font-size:1.8rem;
  }
  .age-gate__card p:not(.eyebrow){
    font-size:.95rem;
    line-height:1.55;
  }
  .order-modal{
    padding:14px;
  }
  .order-modal__card{
    padding:24px 18px 20px;
  }
  .order-modal__card h2{
    font-size:1.8rem;
  }
  .order-modal__card p{
    font-size:.95rem;
    line-height:1.55;
  }
  .cart-drawer__header,
  .cart-drawer__footer,
  .cart-drawer__body{
    padding-inline:14px;
  }
  .floating-cart{
    left:12px;
    right:12px;
    justify-content:space-between;
    min-height:50px;
  }
}
@media (max-width:375px){
  .header-actions{
    gap:6px;
  }
  .hero__textblock h1{
    font-size:2.14rem;
  }
  .hero__lead{
    font-size:.93rem;
  }
  .product-card__image-wrap{
    aspect-ratio:1 / 1.08;
  }
  .map-card iframe{
    min-height:300px;
  }
}
@media (max-width:360px){
  .container{width:min(calc(100% - 16px),var(--max))}
  .brand__logo{
    width:42px;
    height:42px;
  }
  .brand__name{
    font-size:.95rem;
  }
  .hero__textblock h1{
    font-size:2rem;
  }
  .point-card,
  .about-card,
  .content-card,
  .contacts-card,
  .review-card,
  .delivery-card,
  .premium-card{
    padding:16px;
  }
  .product-card__body{
    padding:16px;
  }
  .variant-pill{
    font-size:.94rem;
  }
}
