@charset "UTF-8";
:root{
  --gh-max:1400px;
  --gh-pad:24px;
  --gh-black:#000;
  --gh-white:#fff;
  --gh-text:#111;
  --gh-muted:#6b6b6b;
  --gh-line:#e6e6e6;
  --gh-leaf:#7bdc3a;
  --gh-radius:10px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color:var(--gh-text);
  background:var(--gh-white);
}

.ghWrap{
  width:min(var(--gh-max), calc(100% - (var(--gh-pad) * 2)));
  margin:0 auto;
}

/* ===== TOP BLACK STRIP ===== */
.ghTop{
  background:var(--gh-black);
  color:#fff;
  border-bottom:1px solid #111;
}
.ghTop .ghWrap{
  height:54px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.ghTop__left{
  display:flex;
  align-items:center;
  gap:16px;
  min-width:0;
}

.ghTop__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:24px;               /* как у оригинала */
  padding:0 6px;
  background:#000;
  /* border:1px solid rgba(255,255,255,.25);
  border-radius:2px; */
  text-decoration:none;
}

.ghTop__badge img{
  display:block;
  height:24px;               /* ключевой момент */
  width:auto;
}

.ghTop__menu{
  display:flex;
  align-items:center;
  gap:18px;
  white-space:nowrap;
  min-width:0;
}
.ghTop__item{
  color:#fff;
  text-decoration:none;
  font-weight:800;
  font-size:12px;
  letter-spacing:.55px;
  text-transform:uppercase;
  opacity:.92;
}
.ghTop__item:hover{opacity:.78}
.ghTop__item.is-active{opacity:1}

.ghTop__drop{
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border:0;
  background:transparent;
  color:#fff;
  cursor:pointer;
  opacity:.9;
}
.ghTop__drop svg{width:18px;height:18px;fill:currentColor}

.ghTop__right{
  display:flex;
  align-items:center;
  gap:10px;
}
.ghIco{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border:0;
  border-radius:8px;
  background:rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
}
.ghIco:hover{background:rgba(255,255,255,.10)}
.ghIco svg{width:18px;height:18px;fill:currentColor}
.ghIco--leaf{color:var(--gh-leaf)}
.ghIco--close{background:rgba(255,255,255,.10)}

/* ===== WHITE BRAND ROW ===== */
.ghHeader{
  background:#fff;
  border-bottom:1px solid var(--gh-line);
}
.ghHeader__row{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}
.ghBrand{
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.ghBrand img{
  display:block;
  max-height:38px;
  width:auto;
}
.ghHeader__spacer{
  position:absolute;
  right:0;
  width:42px;
  height:42px;
}

/* Burger (mobile) */
.ghBurger{
  position:absolute;
  left:0;
  width:42px;
  height:42px;
  border-radius:10px;
  border:1px solid var(--gh-line);
  background:#fff;
  display:none;
  padding:10px;
  cursor:pointer;
}
.ghBurger span{
  display:block;
  height:2px;
  background:#111;
  margin:5px 0;
}

/* ===== SECOND ROW CATEGORIES ===== */
.ghCats{
  background:#fff;
  border-top:1px solid var(--gh-line);
}
.ghCats__row{
  height:52px;
  display:flex;
  align-items:center;
  gap:28px;
}
.ghCats__link{
  text-decoration:none;
  color:#111;
  font-weight:900;
  font-size:13px;
  letter-spacing:.45px;
  text-transform:uppercase;
  padding:12px 0;
}
.ghCats__link:hover{opacity:.85}
.ghCats__link.is-active{
  border-bottom:2px solid #111;
}

/* ===== MAIN PLACEHOLDER ===== */
/* .ghMain{
  padding:26px 0 40px;
}
.ghEmpty{
  border:1px dashed #d9d9d9;
  border-radius:14px;
  padding:28px;
}
.ghEmpty__t{
  font-weight:900;
  letter-spacing:.35px;
  margin:0 0 6px;
}
.ghEmpty__p{
  margin:0;
  color:var(--gh-muted);
} */

/* ===== FOOTER ===== */
.ghFooter{
  background:#fff;
  border-top:1px solid var(--gh-line);
}
.ghFooter__grid{
  display:grid;
  grid-template-columns:repeat(7, minmax(0, 1fr));
  gap:26px;
  padding:28px 0;
}
.ghFooter__h{
  font-size:12px;
  font-weight:900;
  letter-spacing:.45px;
  text-transform:uppercase;
  margin-bottom:10px;
}
.ghFooter__a{
  display:block;
  text-decoration:none;
  color:#111;
  font-size:13px;
  padding:5px 0;
}
.ghFooter__a:hover{opacity:.82}

.ghFooter__bottom{
  border-top:1px solid var(--gh-line);
  padding:14px 0;
}
.ghFooter__bottomRow{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  color:var(--gh-muted);
  font-size:12px;
}
.ghFooter__b{
  color:var(--gh-muted);
  text-decoration:none;
}
.ghFooter__b:hover{color:#111}
.ghDot{opacity:.7}

/* ===== DRAWER ===== */
.ghDrawer{
  position:fixed;
  top:0;
  left:0;
  height:100%;
  width:min(360px, 92vw);
  background:#fff;
  border-right:1px solid var(--gh-line);
  transform:translateX(-105%);
  transition:transform .22s ease;
  z-index:1000;
  display:flex;
  flex-direction:column;
}
.ghDrawer.is-open{transform:translateX(0)}
.ghDrawer__head{
  height:60px;
  padding:0 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid var(--gh-line);
}
.ghDrawer__title{font-weight:900; letter-spacing:.3px}
.ghDrawer__x{
  width:40px;height:40px;
  border-radius:10px;
  border:1px solid var(--gh-line);
  background:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
}
.ghDrawer__x svg{width:18px;height:18px;fill:#111}
.ghDrawer__body{
  padding:14px;
  overflow:auto;
}
.ghDrawer__section + .ghDrawer__section{margin-top:18px}
.ghDrawer__label{
  font-size:12px;
  font-weight:900;
  letter-spacing:.45px;
  text-transform:uppercase;
  margin-bottom:10px;
  color:#111;
}
.ghDrawer__link{
  display:block;
  padding:10px 10px;
  border:1px solid var(--gh-line);
  border-radius:12px;
  text-decoration:none;
  color:#111;
  font-weight:800;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.35px;
  margin-bottom:10px;
}
.ghDrawer__link.is-active{border-color:#111}

/* Backdrop */
.ghBackdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease;
  z-index:900;
}
.ghBackdrop.is-open{
  opacity:1;
  pointer-events:auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px){
  .ghFooter__grid{grid-template-columns:repeat(3, minmax(0, 1fr))}
}

/* Tablet/Phone */
@media (max-width: 820px){
  :root{ --gh-pad:16px; }

  /* hide long black menu, show burger */
  .ghTop__menu{display:none;}
  .ghBurger{display:inline-block;}

  /* hide second row categories (drawer replaces) */
  .ghCats{display:none;}

  .ghTop .ghWrap{height:50px}
  .ghHeader__row{height:72px}
  .ghBrand img{max-height:34px}

  .ghFooter__grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:18px;
  }
}

@media (max-width: 420px){
  .ghFooter__grid{grid-template-columns:1fr}
  .ghIco{width:32px;height:32px}
  .ghIco svg{width:17px;height:17px}
}
/* ===== ACTIVE TOP ITEM (DESKTOP ONLY) ===== */
@media (min-width: 821px){
  .ghTop__item.is-active{
    background:#fff;
    color:#000;
    padding:0 14px;
    height:54px;                 /* ВЫСОТА ЧЁРНОЙ ПОЛОСЫ */
    display:flex;
    align-items:center;
    position:relative;
    top:0;                       /* важно */
    opacity:1;
  }

  .ghTop__item.is-active:hover{
    opacity:1;
  }
}

