/* ==========================================================
   TROCHOS — storefront chrome: marquee, header, mega-nav,
   home sections, product card, collection grid, footer
   ========================================================== */

/* ---------------- announcement marquee ---------------- */
.marquee {
  background: var(--ink); color: #fff; overflow: hidden;
  height: 32px; display: flex; align-items: center;
}
.marquee-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: marq 28s linear infinite; padding-left: 48px;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--display); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
}
.marquee-item::before { content: '✦'; color: var(--pop); font-size: 9px; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------- header ---------------- */
.header {
  position: sticky; top: 0; z-index: 500;
  background: #fff; border-bottom: 1px solid var(--line);
}
.header.is-stuck { box-shadow: var(--sh-1); }
.header-main {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 20px; height: var(--header-h);
}
.burger { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; }
.burger svg { width: 22px; height: 22px; }

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo img { height: 38px; width: auto; }
.logo-text {
  font-family: var(--display); font-weight: 900; font-size: 19px;
  letter-spacing: -.02em; line-height: 1; text-transform: uppercase;
}
.logo-text small {
  display: block; font-size: 8.5px; font-weight: 700; letter-spacing: .28em;
  color: var(--brand); margin-top: 2px;
}

/* search */
.search-box { position: relative; max-width: 520px; width: 100%; justify-self: center; }
.search-box .input { height: 40px; padding-left: 40px; background: var(--bg-3); border-color: transparent; }
.search-box .input:focus { background: #fff; border-color: var(--brand); }
.search-box .s-icon {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  width: 17px; height: 17px; color: var(--ink-3); pointer-events: none;
}
.search-drop {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--sh-3); max-height: 420px; overflow-y: auto; z-index: 60;
}
.search-drop:empty { display: none; }
.sd-item { display: flex; gap: 10px; padding: 9px 12px; align-items: center; }
.sd-item:hover { background: var(--bg-2); }
.sd-item img { width: 42px; height: 42px; object-fit: cover; border-radius: 3px; background: var(--bg-3); }
.sd-t { font-weight: 600; font-size: 13px; }
.sd-p { font-size: 12px; color: var(--ink-3); }

/* header actions — flex-end matters on mobile, where this sits in the 1fr
   column and would otherwise pack left and collide with the logo */
.h-actions { display: flex; align-items: center; gap: 4px; justify-content: flex-end; }
.h-btn {
  position: relative; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 2px; width: 54px; height: 46px; border-radius: var(--radius);
  transition: background .15s ease;
}
.h-btn:hover { background: var(--bg-3); }
.h-btn svg { width: 20px; height: 20px; }
.h-btn span { font-size: 9.5px; font-weight: 600; letter-spacing: .02em; color: var(--ink-2); }
.h-count {
  position: absolute; top: 2px; right: 9px;
  min-width: 16px; height: 16px; padding: 0 4px;
  background: var(--brand-grad); color: #fff; border-radius: 999px;
  font-size: 10px; font-weight: 800; display: flex; align-items: center; justify-content: center;
}

/* ---------------- nav + mega menu ---------------- */
.navbar { border-top: 1px solid var(--line-2); background: #fff; }
.nav-list { display: flex; justify-content: center; gap: 2px; }
.nav-item { position: static; }
.nav-link {
  display: flex; align-items: center; gap: 5px; height: 44px; padding: 0 16px;
  font-family: var(--display); font-size: 12.5px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; position: relative;
  transition: color .15s ease;
}
.nav-link::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 8px;
  height: 2px; background: var(--brand-grad); border-radius: 2px;
  transform: scaleX(0); transition: transform .22s ease; transform-origin: center;
}
.nav-item:hover .nav-link { color: var(--brand); }
.nav-item:hover .nav-link::after { transform: scaleX(1); }
.nav-link .chev { width: 9px; height: 9px; opacity: .5; transition: transform .2s ease; }
.nav-item:hover .chev { transform: rotate(180deg); }
.nav-link.is-hot { color: var(--pop); }

.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; border-top: 1px solid var(--line);
  box-shadow: var(--sh-2); padding: 26px 0 30px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 400;
}
.nav-item:hover .mega { opacity: 1; visibility: visible; transform: none; }
.mega-inner { display: grid; grid-template-columns: 1fr 1fr 1fr 300px; gap: 28px; }
.mega-col h4 {
  font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 12px; font-weight: 800;
}
.mega-col a {
  display: block; padding: 5px 0; font-size: 13.5px; color: var(--ink-2);
  transition: color .12s ease, padding-left .12s ease;
}
.mega-col a:hover { color: var(--brand); padding-left: 5px; }
.mega-promo {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  background: var(--brand-grad-soft); min-height: 210px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 18px;
}
.mega-promo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mega-promo-txt { position: relative; }
.mega-promo h5 { font-family: var(--display); font-size: 16px; font-weight: 900; text-transform: uppercase; }
.mega-promo p  { font-size: 12px; color: var(--ink-3); margin: 4px 0 10px; }

/* ---------------- mobile drawer nav ---------------- */
.drawer-bd {
  position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 900;
  opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s;
  /* see admin.css .modal-bd — a transitioned visibility keeps the overlay
     clickable while it fades, eating the next tap */
  pointer-events: none;
}
.drawer-bd.open { opacity: 1; visibility: visible; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; left: 0; bottom: 0; width: min(86vw, 340px);
  background: #fff; z-index: 901; transform: translateX(-100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1); overflow-y: auto;
}
.drawer.open { transform: none; }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 10px 10px 16px; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: #fff; z-index: 2;
}
.drawer-head button {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: var(--radius); flex-shrink: 0;
}
.drawer-head button:hover { background: var(--bg-3); }
.drawer-head button svg { width: 20px; height: 20px; }
.dnav-group { border-bottom: 1px solid var(--line-2); }
.dnav-top {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 14px 16px; font-family: var(--display); font-weight: 800;
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
}
.dnav-top .chev { width: 12px; height: 12px; transition: transform .2s ease; }
.dnav-group.open .dnav-top .chev { transform: rotate(180deg); }
.dnav-sub { display: none; padding: 0 16px 12px; }
.dnav-group.open .dnav-sub { display: block; }
.dnav-sub a { display: block; padding: 8px 0 8px 12px; font-size: 13.5px; color: var(--ink-2); border-left: 2px solid var(--line); }
.dnav-sub a:hover { color: var(--brand); border-left-color: var(--brand); }

/* ---------------- hero ---------------- */
/* overflow:hidden is load-bearing — the track is N x 100% wide */
.hero { position: relative; background: var(--bg-3); overflow: hidden; }
.hero-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.hero-slide { min-width: 100%; position: relative; }
.hero-slide img { width: 100%; aspect-ratio: 1440/520; object-fit: cover; }
.hero-slide.placeholder {
  aspect-ratio: 1440/520; background: var(--brand-grad);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; text-align: center; padding: 20px;
}
.hero-slide.placeholder h2 { font-size: clamp(24px, 5vw, 54px); font-weight: 900; text-transform: uppercase; letter-spacing: -.02em; }
.hero-slide.placeholder p  { font-size: clamp(12px, 1.6vw, 17px); opacity: .9; margin: 10px 0 18px; }
.hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.9);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--sh-1);
  transition: background .15s ease;
}
.hero-nav:hover { background: #fff; }
.hero-nav svg { width: 16px; height: 16px; }
.hero-nav.prev { left: 16px; } .hero-nav.next { right: 16px; }
/* display:flex above would otherwise defeat the hidden attribute */
.hero-nav[hidden] { display: none; }
.hero-dots { position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); display: flex; }
/* content-box + padding keeps the dot small but the tap area finger-sized */
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.55);
  box-sizing: content-box; padding: 11px 9px; background-clip: content-box;
  transition: width .2s ease, background-color .2s ease;
}
.hero-dot.on { background: #fff; background-clip: content-box; width: 22px; border-radius: 4px; }

/* ---------------- USP strip ---------------- */
.usp { background: var(--brand-grad-soft); border-block: 1px solid var(--line-2); }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 16px 0; }
.usp-item { display: flex; align-items: center; gap: 10px; justify-content: center; }
.usp-item svg { width: 26px; height: 26px; color: var(--brand); flex-shrink: 0; }
.usp-item b { font-family: var(--display); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; display: block; }
.usp-item span { font-size: 11px; color: var(--ink-3); }

/* ---------------- category circles ---------------- */
.cat-circles { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }
.cat-circle { width: 118px; text-align: center; }
.cat-circle-img {
  width: 108px; height: 108px; border-radius: 50%; margin: 0 auto 10px;
  background: var(--brand-grad-soft); overflow: hidden; position: relative;
  box-shadow: inset 0 0 0 2px transparent;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; align-items: center; justify-content: center;
}
.cat-circle:hover .cat-circle-img { transform: translateY(-4px); box-shadow: inset 0 0 0 2px var(--brand), var(--sh-2); }
.cat-circle-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-circle-img .initial { font-family: var(--display); font-size: 30px; font-weight: 900; background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cat-circle b { font-family: var(--display); font-size: 11.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }

/* ---------------- product card ---------------- */
.p-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
}
.p-card {
  position: relative; background: #fff; border: 1px solid var(--line-2);
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow .22s ease, border-color .22s ease, transform .22s ease;
  display: flex; flex-direction: column;
}
.p-card:hover { box-shadow: var(--sh-2); border-color: var(--line); transform: translateY(-2px); }
.p-media { position: relative; aspect-ratio: 1; background: var(--bg-3); overflow: hidden; }
.p-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, opacity .25s ease; }
.p-card:hover .p-media img.primary { transform: scale(1.05); }
.p-media img.hoverimg { position: absolute; inset: 0; opacity: 0; }
.p-card:hover .p-media img.hoverimg { opacity: 1; }
.p-badges { position: absolute; top: 8px; left: 8px; display: flex; flex-direction: column; gap: 4px; z-index: 2; }
.p-wish {
  position: absolute; top: 8px; right: 8px; z-index: 2;
  width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--sh-1);
  transition: background .15s ease, color .15s ease;
}
.p-wish svg { width: 15px; height: 15px; }
.p-wish:hover, .p-wish.on { background: var(--brand); color: #fff; }

.p-quick {
  position: absolute; left: 8px; right: 8px; bottom: 8px; z-index: 2;
  opacity: 0; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}
.p-card:hover .p-quick { opacity: 1; transform: none; }

.p-body { padding: 11px 12px 13px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.p-type { font-size: 10.5px; color: var(--ink-4); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.p-title {
  font-family: var(--display); font-size: 13.5px; font-weight: 700; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 35px;
}
.p-card:hover .p-title { color: var(--brand); }
.p-rating { display: flex; align-items: center; gap: 5px; font-size: 11.5px; color: var(--ink-3); }
.p-price { display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; margin-top: auto; }
.p-shades { display: flex; align-items: center; gap: 4px; padding-top: 2px; }
.p-shade {
  width: 15px; height: 15px; border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.14);
}
.p-shade-more { font-size: 10.5px; color: var(--ink-4); font-weight: 600; }

/* ---------------- carousel row ---------------- */
.carousel { position: relative; }
.carousel-track { display: flex; gap: 14px; overflow-x: auto; scroll-behavior: smooth; padding-bottom: 4px; }
.carousel-track > * { flex: 0 0 clamp(170px, 22vw, 230px); scroll-snap-align: start; }
.car-nav {
  position: absolute; top: 40%; z-index: 5;
  width: 36px; height: 36px; border-radius: 50%; background: #fff;
  box-shadow: var(--sh-2); display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.car-nav:hover { background: var(--ink); color: #fff; }
.car-nav svg { width: 15px; height: 15px; }
.car-nav.prev { left: -14px; } .car-nav.next { right: -14px; }
.car-nav[hidden] { display: none; }

/* ---------------- offer banner strip ---------------- */
.offer-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.offer-card {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  aspect-ratio: 16/7; background: var(--brand-grad-soft);
  display: flex; flex-direction: column; justify-content: center;
  padding: 22px; transition: transform .22s ease, box-shadow .22s ease;
}
.offer-card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.offer-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.offer-card .oc-txt { position: relative; }
.offer-card h4 { font-family: var(--display); font-size: 18px; font-weight: 900; text-transform: uppercase; }
.offer-card p { font-size: 12px; color: var(--ink-3); margin-top: 3px; }

/* ---------------- collection page ---------------- */
.coll-hero {
  background: var(--brand-grad); color: #fff; padding: 34px 0; text-align: center;
  position: relative; overflow: hidden;
}
.coll-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.coll-hero .ch-in { position: relative; }
.coll-hero h1 { font-size: clamp(24px, 4vw, 40px); text-transform: uppercase; font-weight: 900; }
.coll-hero p { opacity: .92; margin-top: 8px; font-size: 13.5px; max-width: 680px; margin-inline: auto; }

.crumb { font-size: 12px; color: var(--ink-3); padding: 8px 0; }
.crumb a { display: inline-block; padding: 6px 0; }   /* finger-sized without looking taller */
.crumb a:hover { color: var(--brand); }
.crumb span { margin: 0 6px; color: var(--ink-4); }

.coll-layout { display: grid; grid-template-columns: 230px 1fr; gap: 26px; align-items: start; padding-bottom: 50px; }
.filters { position: sticky; top: calc(var(--header-h) + 12px); }
.f-group { border-bottom: 1px solid var(--line-2); padding: 14px 0; }
.f-group:first-child { padding-top: 0; }
.f-head {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  font-family: var(--display); font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px;
  padding: 7px 0; min-height: 36px; text-align: left;
}
.f-head .chev { width: 11px; height: 11px; transition: transform .2s ease; }
.f-group.closed .chev { transform: rotate(-90deg); }
.f-group.closed .f-body { display: none; }
.f-body { max-height: 230px; overflow-y: auto; }
.f-opt { display: flex; align-items: center; gap: 9px; padding: 8px 0; font-size: 13px; cursor: pointer; min-height: 36px; }
.f-opt input { accent-color: var(--brand); width: 18px; height: 18px; flex-shrink: 0; }
.f-opt .cnt { margin-left: auto; font-size: 11px; color: var(--ink-4); }

.coll-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-bottom: 14px; flex-wrap: wrap;
}
.coll-count { font-size: 13px; color: var(--ink-3); }
.coll-count b { color: var(--ink); }
.chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 6px; height: 28px; padding: 0 10px;
  background: var(--bg-3); border-radius: 999px; font-size: 12px; font-weight: 600;
}
.chip button { color: var(--ink-3); font-size: 14px; line-height: 1; }
.chip button:hover { color: var(--err); }

.mob-filter-bar { display: none; }
.empty { text-align: center; padding: 60px 20px; color: var(--ink-3); }
.empty h3 { font-size: 18px; margin-bottom: 8px; color: var(--ink); }

/* ---------------- footer ---------------- */
.footer { background: var(--ink); color: #CFCFCF; margin-top: 50px; }
.foot-news {
  background: var(--brand-grad); padding: 30px 0; color: #fff;
}
.foot-news-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot-news h3 { font-size: 21px; text-transform: uppercase; font-weight: 900; }
.foot-news p { font-size: 13px; opacity: .92; margin-top: 4px; }
.news-form { display: flex; gap: 8px; flex: 1; max-width: 420px; }
.news-form .input { border-color: transparent; height: 46px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 28px; padding: 42px 0 30px; }
.foot-brand .logo-text { color: #fff; }
.foot-brand p { font-size: 12.5px; line-height: 1.7; margin: 12px 0 16px; color: #9A9A9A; }
.foot-col h5 {
  font-family: var(--display); font-size: 12px; font-weight: 800; color: #fff;
  text-transform: uppercase; letter-spacing: .09em; margin-bottom: 13px;
}
.foot-col a { display: block; padding: 4.5px 0; font-size: 13px; color: #B4B4B4; transition: color .12s ease, padding-left .12s ease; }
.foot-col a:hover { color: #fff; padding-left: 4px; }
.foot-contact li { display: flex; gap: 9px; padding: 6px 0; font-size: 12.5px; color: #B4B4B4; align-items: flex-start; }
.foot-contact svg { width: 15px; height: 15px; color: var(--pop); flex-shrink: 0; margin-top: 2px; }
.socials { display: flex; gap: 9px; margin-top: 14px; }
.social {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.09);
  display: flex; align-items: center; justify-content: center;
  transition: background .18s ease, transform .18s ease;
}
.social:hover { background: var(--brand-grad); transform: translateY(-2px); }
.social svg { width: 16px; height: 16px; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 16px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 12px; color: #8A8A8A;
}
.pay-icons { display: flex; gap: 7px; align-items: center; flex-wrap: wrap; }
.pay-icons span {
  height: 24px; padding: 0 8px; background: rgba(255,255,255,.92); color: #222;
  border-radius: 3px; font-size: 9.5px; font-weight: 800; letter-spacing: .04em;
  display: inline-flex; align-items: center;
}

/* ---------------- responsive ---------------- */
@media (max-width: 1100px) {
  .mega-inner { grid-template-columns: 1fr 1fr 260px; }
  .foot-grid  { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 900px) {
  :root { --header-h: 58px; }
  .burger { display: flex; }
  .navbar { display: none; }
  /* burger | logo (takes what's left) | actions (natural width).
     minmax(0,1fr) + overflow lets the logo shrink instead of overflowing
     under the icons. */
  .header-main { grid-template-columns: auto minmax(0, 1fr) auto; gap: 8px; }
  .logo { overflow: hidden; }
  .logo img { height: 32px; }
  .logo-text { font-size: 16px; }
  .logo-text small { font-size: 7.5px; letter-spacing: .2em; }
  .search-box { display: none; }
  .search-box.mobile-open {
    display: block; position: absolute; top: 100%; left: 0; right: 0;
    padding: 10px 16px; background: #fff; border-bottom: 1px solid var(--line); max-width: none;
  }
  .h-btn { width: 42px; }
  .h-btn span { display: none; }
  .h-count { right: 5px; }
  .coll-layout { grid-template-columns: 1fr; }
  .filters {
    position: fixed; inset: 0 0 0 auto; width: min(88vw, 330px); background: #fff;
    z-index: 910; transform: translateX(100%); transition: transform .28s ease;
    overflow-y: auto; padding: 16px; box-shadow: var(--sh-3);
  }
  .filters.open { transform: none; }
  .mob-filter-bar { display: flex; gap: 10px; padding-bottom: 12px; }
  .mob-filter-bar .btn { flex: 1; }
  .usp-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .offer-strip { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .car-nav { display: none; }
}
/* narrow phones: reclaim header width so the wordmark is never clipped.
   Track still lives in the drawer menu. */
@media (max-width: 400px) {
  .h-btn-track { display: none; }
}
@media (max-width: 345px) {
  .logo-text { display: none; }
}

@media (max-width: 560px) {
  .p-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .p-title { font-size: 12.5px; min-height: 32px; }
  .cat-circle { width: 88px; }
  .cat-circle-img { width: 80px; height: 80px; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-news-in { flex-direction: column; align-items: stretch; }
  .news-form { max-width: none; }
  .sec { padding: 30px 0; }
  .hero-nav { width: 32px; height: 32px; }
}
