@charset "UTF-8";

/* =========================
   BASE
   ========================= */
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#111;
  background:#fff;
}
a{ color:inherit; }
button{ font-family:inherit; }

/* width as requested */
.siteWrap{
  max-width:1500px;
  margin:0 auto;
  padding:0 18px;
}

/* =========================
   STICKY TOP BAR (fixed)
   ========================= */
.hTop{
  position:fixed;
  top:0; left:0; right:0;
  z-index:10000;
  width:100%;
  background:#000;
  border-bottom:1px solid rgba(0,0,0,.35);
}

/* top row */
.hTop__row{
  height:56px;
  display:flex;
  align-items:center;
}

/* left */
.hTop__left{
  display:flex;
  align-items:center;
  gap:10px;
  padding-right:18px;
  flex:0 0 auto;
}
.hTop__back{
  width:34px;
  height:34px;
  border:0;
  padding:0;
  background:transparent;
  color:#fff;
  border-radius:6px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.hTop__back svg{ width:22px; height:22px; fill:currentColor; opacity:.95; }

/* badge (image) */
.hTop__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:22px;
  padding:0;
  background:transparent;
  border-radius:2px;
  text-decoration:none;
}
.hTop__badgeImg{
  display:block;
  height:20px; /* под ваш assets/img/brand.png */
  width:auto;
}

/* desktop nav */
.hTop__nav{
  display:flex;
  align-items:center;
  gap:18px;
  flex:1 1 auto;
  min-width:0;
}
.hTop__link{
  text-decoration:none;
  color:#fff;
  font-weight:900;
  font-size:12px;
  letter-spacing:.35px;
  text-transform:uppercase;
  white-space:nowrap;
}
.hTop__link.is-active{
  background:#fff;
  color:#000;
  padding:18px 16px;
  height:56px;
  display:inline-flex;
  align-items:center;
  border-radius:0;
}

/* caret */
.hTop__caret{
  width:38px;
  height:34px;
  border:0;
  padding:0;
  background:transparent;
  color:#fff;
  border-radius:8px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-left:4px;
}
.hTop__caret svg{ width:22px; height:22px; fill:currentColor; opacity:.95; }

/* right icons (desktop) */
.hTop__actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  padding-left:18px;
  flex:0 0 auto;
}
.hIco{
  width:40px;
  height:40px;
  border:0;
  padding:0;
  background:transparent;
  color:#fff;
  border-radius:8px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.hIco svg{
  width:30px;
  height:30px;
  /* ваши svg с fill уже внутри, но оставим совместимость */
  fill:currentColor;
  opacity:.95;
}
.hIco--leaf{ color:#9FE870; }

.hTop__back:hover,
.hTop__caret:hover,
.hIco:hover{
  background:rgba(255,255,255,.08);
}

/* mobile right in top bar */
.hTop__mobRight{
  display:none;
  margin-left:auto;
  align-items:center;
  gap:8px;
}

/* =========================
   WHITE BRAND AREA (desktop)
   ========================= */
.hBrand{
  background:#fff;
}
.hBrand__row{
  height:140px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-bottom:1px solid rgba(0,0,0,.12);
}
.hBrand__logoLink{
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}
.hBrand__logoImg{
  height:44px;
  width:auto;
  display:block;
}

/* categories desktop */
.hCats{
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,.12);
}
.hCats__row{
  height:58px;
  display:flex;
  align-items:center;
  gap:26px;
}
.hCats__a{
  text-decoration:none;
  color:#111;
  font-weight:900;
  letter-spacing:.35px;
  text-transform:uppercase;
  font-size:12px;
  white-space:nowrap;
}
.hCats__drop{
  margin-left:auto;
  width:44px;
  height:40px;
  border:0;
  padding:0;
  background:transparent;
  border-radius:10px;
  cursor:pointer;
  color:#111;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.hCats__drop svg{ width:22px; height:22px; fill:currentColor; opacity:.9; }
.hCats__drop:hover{ background:rgba(0,0,0,.06); }

/* =========================
   MOBILE WHITE BAR (burger + logo)
   ========================= */
.hMob{
  display:none;
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,.12);
}
.hMob__row{
  height:58px;
  display:flex;
  align-items:center;
}

/* burger (3 lines stable) */
.hBurger{
  width:48px;
  height:48px;
  border:0;
  padding:0;
  background:transparent;
  border-radius:10px;
  cursor:pointer;
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  -webkit-tap-highlight-color: transparent;
}
.hBurger:hover{ background:rgba(0,0,0,.06); }

.hBurger::before,
.hBurger::after,
.hBurger .hBurger__mid{
  content:"";
  display:block;
  width:22px;
  height:2px;
  background:#111;
  border-radius:2px;
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  opacity:.95;
}
.hBurger::before{ top:16px; }
.hBurger .hBurger__mid{ top:23px; }
.hBurger::after{ top:30px; }
.hBurger__mid{ font-style:normal; }

/* open animation */
body.isMenuOpen .hBurger::before{ top:23px; transform:translateX(-50%) rotate(45deg); }
body.isMenuOpen .hBurger__mid{ opacity:0; }
body.isMenuOpen .hBurger::after{ top:23px; transform:translateX(-50%) rotate(-45deg); }

/* mobile logo */
.hMob__logoLink{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}
.hMob__logoImg{
  height:26px;
  width:auto;
  display:block;
}
.hMob__spacer{
  width:48px;
  height:48px;
}

/* =========================
   DRAWER
   ========================= */
.hBackdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.40);
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
  z-index:9998;
}
.hDrawer{
  position:fixed;
  top:0; left:0;
  width:320px;
  height:100%;
  background:#fff;
  transform:translateX(-105%);
  transition:transform .20s ease;
  z-index:9999;
  box-shadow:0 18px 40px rgba(0,0,0,.22);
  display:flex;
  flex-direction:column;
}
.hDrawer__head{
  height:56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 14px;
  border-bottom:1px solid rgba(0,0,0,.12);
}
.hDrawer__h{ font-weight:900; letter-spacing:.3px; }
.hDrawer__x{
  width:42px;
  height:42px;
  border:0;
  padding:0;
  background:transparent;
  border-radius:12px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.hDrawer__x:hover{ background:rgba(0,0,0,.06); }
.hDrawer__x svg{ width:22px; height:22px; fill:#111; opacity:.9; }
.hDrawer__body{ padding:12px 14px 18px; overflow:auto; }
.hDrawer__label{
  font-size:12px;
  font-weight:900;
  letter-spacing:.35px;
  text-transform:uppercase;
  color:rgba(0,0,0,.55);
  margin:10px 0 8px;
}
.hDrawer__a{
  display:block;
  padding:10px 10px;
  border-radius:10px;
  text-decoration:none;
  color:#111;
  font-weight:800;
}
.hDrawer__a:hover{ background:rgba(0,0,0,.06); }

body.isMenuOpen .hBackdrop{ opacity:1; pointer-events:auto; }
body.isMenuOpen .hDrawer{ transform:translateX(0); }

/* =========================
   RESPONSIVE: mobile mode
   ========================= */
@media (max-width:760px){
  .siteWrap{ padding:0 16px; }

  .hTop__nav{ display:none; }
  .hTop__actions{ display:none; }
  .hTop__mobRight{ display:flex; }

  .hMob{ display:block; }
  .hBrand{ display:none; }
  .hCats{ display:none; }

  .hTop__row{ height:46px; }
}

/* =========================
   FOOTER
   ========================= */
.fzFooter{ background:#fff; border-top:1px solid rgba(0,0,0,.10); }
.fzWrap{ max-width:1600px; margin:0 auto; padding:0 18px; }

.fzGrid{
  display:grid;
  grid-template-columns:repeat(7, minmax(0, 1fr));
  column-gap:44px;
  row-gap:28px;
  padding:28px 0 22px;
}
.fzCol{ min-width:0; }
.fzH{
  margin:0 0 12px;
  font-size:14px;
  letter-spacing:.2px;
  text-transform:uppercase;
  font-weight:900;
  color:#111;
}
.fzA{
  display:block;
  padding:8px 0;
  font-size:14px;
  line-height:1.25;
  color:#111;
  text-decoration:none;
}
.fzA:hover{ text-decoration:underline; }

.fzMeta{
  border-top:1px solid rgba(0,0,0,.10);
  padding:18px 0 22px;
  color:rgba(0,0,0,.60);
  font-size:13px;
}
.fzMeta__row{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px 18px;
  text-align:center;
  padding:10px 0;
}
.fzMeta__row--top{ padding-top:14px; }
.fzMeta__row--mid{
  border-top:1px solid rgba(0,0,0,.10);
  border-bottom:1px solid rgba(0,0,0,.10);
  margin:6px 0;
  padding:12px 0;
}
.fzMeta__row--bot{ padding-bottom:14px; }

.fzMeta__a{
  color:rgba(0,0,0,.70);
  text-decoration:none;
  white-space:nowrap;
}
.fzMeta__a:hover{ text-decoration:underline; }
.fzMeta__br{ flex-basis:100%; height:0; }

.fzMeta__note{
  border-top:1px solid rgba(0,0,0,.10);
  padding-top:14px;
  margin-top:8px;
  font-size:12px;
  line-height:1.4;
  color:rgba(0,0,0,.55);
  max-width:1060px;
  margin-left:auto;
  margin-right:auto;
  text-align:left;
}
.fzMeta__note a{ color:rgba(0,0,0,.70); }

@media (max-width:1400px){
  .fzGrid{ column-gap:34px; }
}
@media (max-width:1100px){
  .fzGrid{ grid-template-columns:repeat(4, minmax(0, 1fr)); column-gap:28px; }
}
@media (max-width:720px){
  .fzWrap{ padding:0 16px; }
  .fzGrid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    column-gap:22px;
    row-gap:20px;
    padding:22px 0 18px;
  }
  .fzH{ font-size:13px; margin-bottom:10px; }
  .fzA{ font-size:14px; padding:7px 0; }
  .fzMeta__br{ display:none; }
  .fzMeta__row{ gap:10px 14px; font-size:12px; }
  .fzMeta__note{ font-size:12px; padding-top:12px; }
}
