/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 14px; color: #111; background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; padding: 0; }
input { font-family: inherit; }

/* ── Buttons ── */
.btn-black {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 24px;
  background: #111; color: #fff;
  font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  border: 1.5px solid #111; transition: background .18s, color .18s;
}
.btn-black:hover { background: #333; border-color: #333; }
.btn-black.w100 { width: 100%; }

.btn-white {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 28px;
  background: #fff; color: #111;
  font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  border: 1.5px solid #fff; transition: background .18s, color .18s;
}
.btn-white:hover { background: transparent; color: #fff; }

.btn-black-sm {
  display: inline-flex; align-items: center; justify-content: center;
  height: 38px; padding: 0 20px;
  background: #111; color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  border: 1.5px solid #111; transition: background .18s;
}
.btn-black-sm:hover { background: #333; border-color: #333; }

/* ── Announce ── */
.announce {
  background: #111; color: #fff;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 9px 20px; flex-wrap: wrap;
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
.announce-sep { opacity: .35; }

/* ── Header ── */
.header {
  position: sticky; top: 0; z-index: 500;
  background: #fff; border-bottom: 1px solid #e8e8e8;
}

.header-top {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: 0 28px; height: 64px;
}

/* Logo — perfectly centered by CSS grid */
.logo {
  font-size: 22px; font-weight: 900; letter-spacing: .08em;
  text-transform: uppercase; color: #111; white-space: nowrap;
}
.site-logo { display: flex; align-items: center; justify-content: center; }
.site-logo img {
  display: block;
  width: 120px;
  height: 48px;
  object-fit: contain;
}
.logo-footer-text { color: #fff; }

/* Left side */
.h-left {
  display: flex; align-items: center; gap: 8px;
}
.burger {
  display: none;
  width: 36px; height: 36px; align-items: center; justify-content: center;
  color: #111; border-radius: 4px; transition: background .15s;
}
.burger:hover { background: #f4f4f4; }

.search-desktop {
  display: flex; align-items: center; gap: 8px;
  padding: 0 18px; height: 40px; min-width: 220px;
  border: 1.5px solid #e8e8e8; border-radius: 100px;
  font-size: 13px; color: #888;
  background: #f5f5f5; transition: border-color .2s, background .2s, box-shadow .2s;
}
.search-desktop:hover {
  border-color: #c0c0c0; background: #efefef;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  color: #555;
}
.search-desktop svg { flex-shrink: 0; opacity: .6; }
.search-desktop span { font-weight: 500; letter-spacing: .01em; }

/* Right side */
.h-right {
  display: flex; align-items: center; gap: 4px; justify-content: flex-end;
}

.hicon {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  color: #111; position: relative; border-radius: 4px; transition: background .15s;
}
.hicon:hover { background: #f4f4f4; }

.cart-badge {
  position: absolute; top: 3px; right: 3px;
  background: #e63946; color: #fff;
  font-size: 9px; font-weight: 800; min-width: 15px; height: 15px;
  border-radius: 10px; display: none;
  align-items: center; justify-content: center; padding: 0 3px;
}
.cart-badge.show { display: flex; }

/* ── Nav ── */
.nav {
  border-top: 1px solid #e8e8e8;
  display: flex; justify-content: center;
}
.nav > ul {
  display: flex; align-items: center;
}
.nav > ul > li { position: relative; }
.nav > ul > li > a {
  display: block; padding: 13px 18px;
  font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: #111; transition: color .15s;
}
.nav > ul > li > a:hover { color: #555; }
.nav-sale { color: #e63946 !important; }
.nav-sale:hover { color: #b91c1c !important; }

.nav-close { display: none; }

/* ── Dropdown ── */
.dropdown {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid #e8e8e8; border-top: 2px solid #111;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  padding: 28px 32px; gap: 40px; min-width: 520px;
}
.has-drop:hover .dropdown { display: flex; }
.brands-dropdown {
  min-width: 640px; max-width: min(820px, 92vw);
  flex-wrap: wrap; column-gap: 48px; row-gap: 20px;
}
.brands-dropdown .drop-col { min-width: 150px; }
.clothing-dropdown {
  min-width: 860px;
  gap: 38px;
}
.clothing-dropdown .drop-col { min-width: 130px; }

.drop-col { display: flex; flex-direction: column; gap: 8px; }
.drop-title {
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #999; margin-bottom: 6px;
}
.drop-col a { font-size: 13px; color: #333; transition: color .12s; }
.drop-col a:hover { color: #111; }

/* ── Brands bar ── */
.brands-bar {
  border-top: 1px solid #e8e8e8;
  display: flex; align-items: center; justify-content: center;
  gap: 0; overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.brands-bar::-webkit-scrollbar { display: none; }
.brands-bar a {
  padding: 11px 18px; white-space: nowrap;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #444; border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.brands-bar a:hover, .brands-bar a.active { color: #111; border-bottom-color: #111; }

/* ── Filter button ── */
.filter-btn {
  display: inline-flex; align-items: center; gap: 6px;
  height: 36px; padding: 0 14px; border: 1.5px solid #e0e0e0;
  background: #fff; font-family: inherit; font-size: 12px; font-weight: 600;
  color: #111; cursor: pointer; transition: border-color .15s;
}
.filter-btn:hover { border-color: #111; }
.filter-btn.active { border-color: #111; background: #111; color: #fff; }
.filter-btn.active svg { stroke: #fff; }
.catalog-controls { display: flex; gap: 10px; align-items: center; }
.catalog-controls .filter-btn,
.catalog-controls .sort-select {
  width: 185px;
  height: 36px;
  box-sizing: border-box;
}
.catalog-controls .filter-btn { justify-content: center; }

/* ── Filter overlay ── */
.filter-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.35);
  z-index: 900; backdrop-filter: blur(2px);
}
.filter-overlay.open { display: block; }

/* ── Filter panel ── */
.filter-panel {
  position: fixed; top: 0; right: -360px; width: 320px; height: 100dvh;
  background: #fff; z-index: 901; overflow-y: auto;
  transition: right .28s cubic-bezier(.4,0,.2,1);
  border-left: 1px solid #e8e8e8;
  display: flex; flex-direction: column;
}
.filter-panel.open { right: 0; }
.filter-panel-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 20px 16px; border-bottom: 1px solid #e8e8e8;
  font-size: 14px; font-weight: 700; letter-spacing: .04em; flex-shrink: 0;
}
.filter-panel-head button {
  background: none; border: none; cursor: pointer; color: #555; padding: 4px;
}

/* Accordion section */
.fp-section { border-bottom: 1px solid #e8e8e8; }
.fp-section-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; cursor: pointer; font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; user-select: none;
}
.fp-section-head svg { transition: transform .2s; flex-shrink: 0; }
.fp-section.open .fp-section-head svg { transform: rotate(180deg); }
.fp-section-body { display: none; padding: 4px 20px 20px; }
.fp-section.open .fp-section-body { display: block; }

/* Size grid */
.fp-size-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px;
}
.fp-size-label {
  margin: 18px 0 8px;
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #999;
}
.fp-size-grid-clothing { grid-template-columns: repeat(3, 1fr); }
.fsz {
  height: 40px; border: 1px solid #e0e0e0;
  background: #fff; font-family: inherit; font-size: 12px; font-weight: 600;
  color: #111; cursor: pointer; transition: all .12s;
}
.fsz:hover { border-color: #111; }
.fsz.active { border-color: #111; background: #111; color: #fff; }

/* Price inputs */
.fp-price { display: flex; flex-direction: column; gap: 12px; }
.fp-price-field { display: flex; flex-direction: column; gap: 4px; }
.fp-price-field label {
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #999;
}
.fp-price-field input {
  height: 44px; padding: 0 12px; border: 1px solid #e0e0e0;
  font-family: inherit; font-size: 14px; color: #111; outline: none;
  width: 100%; background: #fff; box-sizing: border-box;
}
.fp-price-field input:focus { border-color: #111; }

/* Reset button */
.fp-reset {
  margin: auto 20px 20px; padding: 0 16px; height: 44px;
  border: 1.5px solid #e0e0e0; background: #fff; font-family: inherit;
  font-size: 12px; font-weight: 700; color: #555; cursor: pointer;
  letter-spacing: .04em; transition: all .15s; flex-shrink: 0;
}
.fp-reset:hover { border-color: #111; color: #111; }

/* ── Search overlay ── */
.search-overlay {
  display: none; position: fixed; inset: 0; z-index: 800;
  background: rgba(255,255,255,.97); backdrop-filter: blur(8px);
  padding: 40px 32px;
}
.search-overlay.open { display: block; }

.search-box {
  max-width: 680px; margin: 60px auto 0;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 2px solid #111; padding-bottom: 12px;
}
.search-box input {
  flex: 1; font-size: 22px; font-weight: 400; border: none; outline: none;
  background: none; color: #111;
}
.search-box input::placeholder { color: #bbb; }
#searchClose { color: #999; transition: color .15s; }
#searchClose:hover { color: #111; }

.search-hints { max-width: 680px; margin: 28px auto 0; }
.search-hints > p {
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #bbb; margin-bottom: 14px;
}
.search-hints > div { display: flex; flex-wrap: wrap; gap: 8px; }
.search-hints a {
  padding: 7px 16px; background: #f4f4f4; font-size: 13px; font-weight: 500;
  border-radius: 2px; color: #333; transition: background .15s;
}
.search-hints a:hover { background: #111; color: #fff; }
.search-results {
  max-width: 680px; max-height: calc(100vh - 310px); margin: 24px auto 0;
  overflow-y: auto; border-top: 1px solid transparent;
}
.search-results.has-results { border-top-color: #e8e8e8; }
.search-result {
  display: grid; grid-template-columns: 76px 1fr auto; gap: 14px; align-items: center;
  padding: 12px 0; border-bottom: 1px solid #e8e8e8;
}
.search-result:hover .search-result-name { text-decoration: underline; }
.search-result img { width: 76px; height: 76px; object-fit: contain; background: #fff; }
.search-result-brand { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #999; }
.search-result-name { margin-top: 4px; font-size: 14px; font-weight: 600; }
.search-result-meta { margin-top: 4px; font-size: 11px; color: #aaa; }
.search-result-price { padding-left: 12px; font-size: 13px; font-weight: 700; white-space: nowrap; }
.search-message { padding: 28px 0; text-align: center; color: #999; font-size: 13px; }

@media (max-width: 600px) {
  .search-overlay { padding: 20px 16px; }
  .search-box { margin-top: 24px; }
  .search-box input { font-size: 17px; }
  .search-result { grid-template-columns: 60px 1fr; }
  .search-result img { width: 60px; height: 60px; }
  .search-result-price { grid-column: 2; padding-left: 0; }
}

/* ── Cart drawer ── */
.cart-mask {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 900;
}
.cart-mask.open { display: block; }

.cart-drawer {
  position: fixed; top: 0; right: -460px; width: 420px; height: 100vh;
  background: #fff; z-index: 1000; display: flex; flex-direction: column;
  border-left: 1px solid #e8e8e8;
  box-shadow: -4px 0 32px rgba(0,0,0,.1);
  transition: right .3s cubic-bezier(.4,0,.2,1);
}
.cart-drawer.open { right: 0; }

.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid #e8e8e8;
}
.drawer-head h3 { font-size: 16px; font-weight: 700; letter-spacing: -.01em; }
.drawer-head button { color: #555; transition: color .15s; }
.drawer-head button:hover { color: #111; }

.drawer-body { flex: 1; overflow-y: auto; padding: 24px; }

.empty-cart {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 16px; height: 100%; text-align: center;
  color: #bbb;
}
.empty-cart p { font-size: 15px; color: #999; }

.cart-item {
  display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid #f0f0f0;
}
.cart-item img { width: 88px; height: 88px; object-fit: contain; flex-shrink: 0; border-radius: 4px; }
.ci-name { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.ci-meta { font-size: 12px; color: #999; margin-bottom: 10px; }
.ci-row { display: flex; align-items: center; justify-content: space-between; }
.ci-price { font-size: 14px; font-weight: 700; }
.ci-rm { font-size: 20px; line-height: 1; color: #bbb; transition: color .15s; }
.ci-rm:hover { color: #e63946; }

.drawer-foot { padding: 20px 24px; border-top: 1px solid #e8e8e8; }
.cart-sum { display: flex; justify-content: space-between; font-size: 16px; font-weight: 700; margin-bottom: 16px; }

/* ── Hero ── */
.hero { position: relative; height: 86vh; min-height: 500px; max-height: 820px; overflow: hidden; }

.hero-slides { width: 100%; height: 100%; }
.hero-slide {
  display: none; width: 100%; height: 100%; position: relative;
}
.hero-slide.active { display: block; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
}

.hero-text {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 60px 64px;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
  color: #fff;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  opacity: .8; margin-bottom: 12px;
}
.hero-text h1 {
  font-size: clamp(38px, 6vw, 78px); font-weight: 900; line-height: 1;
  letter-spacing: -.04em; margin-bottom: 28px;
}

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; backdrop-filter: blur(4px); transition: background .15s;
  z-index: 2;
}
.hero-arrow:hover { background: rgba(255,255,255,.3); }
.hero-prev { left: 24px; }
.hero-next { right: 24px; }

.hero-dots {
  position: absolute; bottom: 24px; right: 64px;
  display: flex; gap: 6px; z-index: 2;
}
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.4); cursor: pointer; transition: background .2s, transform .2s;
}
.dot.active { background: #fff; transform: scale(1.4); }

/* ── Quick Brands ── */
.quick-brands {
  border-bottom: 1px solid #e8e8e8;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.quick-brands::-webkit-scrollbar { display: none; }
.qb-inner {
  display: flex; align-items: center; padding: 0 32px; width: max-content; min-width: 100%;
}
.qb-item {
  padding: 14px 20px;
  font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: #777; border-bottom: 2px solid transparent; white-space: nowrap;
  transition: color .15s, border-color .15s;
}
.qb-item:hover, .qb-item.active { color: #111; border-bottom-color: #111; }

/* ── Section ── */
.section { padding: 56px 32px; }

.section-head {
  display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px;
}
.section-head h2 { font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.view-all {
  font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: #777; transition: color .15s;
}
.view-all:hover { color: #111; }
.brand-story {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  max-width: 1440px; margin: 48px auto 0; padding: 0 32px;
  align-items: stretch;
}
.brand-story[hidden] { display: none; }
.brand-story-image { min-height: 430px; background: #f3f3f3; overflow: hidden; }
.brand-story-image img { width: 100%; height: 100%; object-fit: cover; }
.brand-story-content {
  padding: 48px; background: #f7f7f7;
  display: flex; flex-direction: column; justify-content: center;
}
.brand-story-content h2 { margin-bottom: 24px; font-size: 32px; font-weight: 900; letter-spacing: .08em; }
.brand-story-content p { margin-bottom: 18px; font-size: 14px; line-height: 1.75; color: #444; }
.brand-story-content p:last-child { margin-bottom: 0; }
@media (max-width: 860px) {
  .brand-story { grid-template-columns: 1fr; padding: 0 16px; margin-top: 28px; }
  .brand-story-image { min-height: 260px; }
  .brand-story-content { padding: 28px 22px; }
}
.sort-select {
  font-family: inherit; font-size: 12px; font-weight: 600; letter-spacing: .04em;
  color: #111; background: #fff; border: 1.5px solid #ddd;
  padding: 6px 28px 6px 10px; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 8px center;
  cursor: pointer;
}
.sort-select:focus { outline: none; border-color: #111; }

/* ── Products Grid ── */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0; background: #fff;
}

.pcard {
  background: #fff; display: flex; flex-direction: column;
  position: relative;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.pcard-wish {
  position:absolute; z-index:3; top:34px; right:12px;
  width:36px; height:36px; padding:8px; border:1px solid #eee; border-radius:50%;
  background:#fff; color:#555; cursor:pointer; box-shadow:0 2px 9px rgba(0,0,0,.06);
}
.pcard-wish svg { width:100%; height:100%; fill:none; stroke:currentColor; stroke-width:1.8; }
.pcard-wish:hover, .pcard-wish.active { color:#e63946; }
.pcard-wish.active svg { fill:#e63946; stroke:#e63946; }

/* Badge above image */
.pcard-badge {
  display: block; padding: 6px 12px;
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #111; background: #fff;
}
.pcard-badge-spacer {
  display: block; padding: 6px 12px;
  font-size: 10px; visibility: hidden;
  content: '.';
}

/* Image as background-image, landscape ratio like SG */
.pcard-img {
  display: block;
  aspect-ratio: 1;
  background-color: #fff;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center var(--product-image-y, 50%);
  opacity: 0;
  transition: opacity .2s;
}
.pcard-img.is-loaded { opacity: 1; }
.pcard-img.is-loaded:hover { opacity: .88; }

/* Text info */
.pcard-info {
  display: block; padding: 12px 12px 4px;
}
.pcard-info:hover .pcard-name { text-decoration: underline; }

.pcard-vendor {
  display: block;
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  color: #131313; margin-bottom: 2px;
}
.pcard-name {
  display: block;
  font-size: 12px; font-weight: 400; color: #131313;
  line-height: 1.4; margin-bottom: 2px;
}
.pcard-color {
  font-size: 12px; color: #767676;
}

/* Price */
.pcard-price-row {
  padding: 6px 12px 16px;
  display: flex; align-items: baseline; gap: 6px;
}
.pcard-price { font-size: 13px; font-weight: 700; color: #131313; }
.pcard-old   { font-size: 12px; color: #767676; text-decoration: line-through; font-weight: 400; }

/* ── Strip ── */
.strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: #e8e8e8; border-top: 1px solid #e8e8e8; border-bottom: 1px solid #e8e8e8;
}
.strip-item { position: relative; overflow: hidden; aspect-ratio: 3/4; background: #111; }
.strip-item img {
  width: 100%; height: 100%; object-fit: cover; opacity: .7;
  transition: transform .5s ease, opacity .3s;
}
.strip-item:hover img { transform: scale(1.04); opacity: .55; }
.strip-text {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px; color: #fff;
}
.strip-text > span {
  display: block; font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; opacity: .75; margin-bottom: 6px;
}
.strip-text h3 { font-size: 26px; font-weight: 900; letter-spacing: -.02em; margin-bottom: 16px; }

/* ── Feature ── */
.feature {
  position: relative; height: 70vh; min-height: 440px; overflow: hidden;
}
.feature-bg { width: 100%; height: 100%; object-fit: cover; }
.feature-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.7) 0%, rgba(0,0,0,.1) 70%);
}
.feature-content {
  position: absolute; top: 50%; left: 64px; transform: translateY(-50%);
  color: #fff; max-width: 480px;
}
.feature-content h2 {
  font-size: clamp(32px, 5vw, 58px); font-weight: 900; line-height: 1;
  letter-spacing: -.04em; margin: 12px 0 16px;
}
.feature-sub { font-size: 15px; opacity: .75; margin-bottom: 28px; }

/* ── Tops ── */
.tops {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: #e8e8e8;
  border: 1px solid #e8e8e8;
}
.top-item {
  display: flex; align-items: center; gap: 0; background: #fff;
  cursor: pointer; transition: background .15s;
}
.top-item:hover { background: #fafafa; }
.top-num {
  width: 56px; flex-shrink: 0; text-align: center;
  font-size: 20px; font-weight: 900; color: #e8e8e8; letter-spacing: -.04em;
}
.top-img { width: 88px; height: 88px; object-fit: contain; flex-shrink: 0; background: #fff; padding: 4px; }
.top-info { padding: 16px 20px; }
.top-brand {
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #999; margin-bottom: 3px;
}
.top-name { font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.top-price { font-size: 14px; font-weight: 800; }

/* ── Trust ── */
.trust {
  display: flex; align-items: center; justify-content: center;
  padding: 40px 32px; border-top: 1px solid #e8e8e8; border-bottom: 1px solid #e8e8e8;
  gap: 0; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 40px; flex: 1; min-width: 220px;
}
.trust-item svg { flex-shrink: 0; color: #111; }
.trust-item strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.trust-item p { font-size: 12px; color: #888; }
.trust-sep { width: 1px; height: 48px; background: #e8e8e8; flex-shrink: 0; }

/* ── Newsletter ── */
.newsletter {
  padding: 72px 32px; text-align: center; background: #f7f7f7;
  border-bottom: 1px solid #e8e8e8;
}
.newsletter h2 { font-size: 26px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; }
.newsletter > p { font-size: 14px; color: #777; margin-bottom: 28px; }
#nlForm {
  display: flex; align-items: center; justify-content: center; gap: 0; max-width: 440px; margin: 0 auto;
}
#nlForm input {
  flex: 1; height: 44px; padding: 0 16px;
  border: 1.5px solid #ddd; border-right: none; outline: none;
  font-size: 14px; background: #fff; transition: border-color .15s;
}
#nlForm input:focus { border-color: #111; }
#nlForm .btn-black { flex-shrink: 0; border-radius: 0; }

/* ── Footer ── */
.footer { background: #111; color: rgba(255,255,255,.8); }

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px; padding: 56px 40px;
}
.footer-brand .logo { color: #fff; }
.footer-brand > p { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.7; margin: 14px 0 22px; }

.socials { display: flex; gap: 10px; }
.socials a {
  width: 34px; height: 34px; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); transition: background .15s;
  border-radius: 3px;
}
.socials a:hover { background: rgba(255,255,255,.18); color: #fff; }
.social-text { font-size: 12px; font-weight: 800; }
.trust-action { text-align: left; color: inherit; }
.trust-action:hover strong { text-decoration: underline; }

/* ── Footer information modal ── */
.info-modal { display:none; position:fixed; inset:0; z-index:1200; }
.info-modal.open { display:block; }
.info-modal-mask { position:absolute; inset:0; width:100%; height:100%; background:rgba(0,0,0,.55); }
.info-modal-panel {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:min(920px,calc(100% - 32px)); max-height:calc(100vh - 48px); overflow:auto;
  background:#fff; padding:42px; box-shadow:0 18px 70px rgba(0,0,0,.25);
}
.info-modal-close { position:absolute; top:14px; right:18px; font-size:32px; line-height:1; color:#777; }
.info-modal-panel h2 { font-size:28px; margin-bottom:24px; }
.info-copy { font-size:15px; line-height:1.75; color:#444; }
.info-copy p + p, .info-copy ul + p { margin-top:14px; }
.info-copy ul { margin:10px 0 0 20px; list-style:disc; }
.info-copy li { margin-bottom:7px; }
.info-contact-link { color:#111; font-weight:700; text-decoration:underline; text-underline-offset:3px; }
.size-tabs { display:flex; gap:8px; margin-bottom:18px; flex-wrap:wrap; }
.size-tab { border:1px solid #ccc; padding:10px 16px; font-size:13px; font-weight:700; }
.size-tab.active { color:#fff; background:#111; border-color:#111; }
.size-table-wrap { overflow-x:auto; }
.size-table { width:100%; border-collapse:collapse; min-width:620px; font-size:13px; }
.size-table th,.size-table td { padding:11px 12px; border:1px solid #ddd; text-align:center; white-space:nowrap; }
.size-table th { background:#f5f5f5; font-weight:700; }
.size-note { margin-top:14px; color:#777; font-size:12px; line-height:1.55; }
@media(max-width:600px){.info-modal-panel{padding:34px 18px 24px}.info-modal-panel h2{font-size:22px}}

.footer-col h5 {
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 18px;
}
.footer-col a {
  display: block; font-size: 13px; color: rgba(255,255,255,.55);
  margin-bottom: 10px; transition: color .15s;
}
.footer-col a:hover { color: #fff; }

.footer-bot {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bot p { font-size: 12px; color: rgba(255,255,255,.3); }
.pay-methods { display: flex; gap: 6px; }
.pay-methods span {
  font-size: 10px; font-weight: 800; letter-spacing: .06em;
  padding: 4px 8px; background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.5); border-radius: 2px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.3); transition: color .15s; }
.footer-legal a:hover { color: rgba(255,255,255,.8); }

/* ── Mobile nav overlay ── */
.nav-mask { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 700; }
.nav-mask.open { display: block; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .products { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
}

@media (max-width: 860px) {
  .header-top { padding: 0 16px; }
  .burger { display: flex; }
  .search-desktop { display: none; }

  .nav {
    position: fixed; top: 0; left: -100%; width: 300px; height: 100vh;
    background: #fff; flex-direction: column; justify-content: flex-start;
    z-index: 800; border-right: 1px solid #e8e8e8;
    overflow-y: auto; transition: left .3s cubic-bezier(.4,0,.2,1);
    padding-top: 60px;
  }
  .nav.open { left: 0; }
  .nav > ul { flex-direction: column; align-items: stretch; width: 100%; }
  .nav > ul > li > a {
    border-bottom: 1px solid #f0f0f0; padding: 16px 24px; font-size: 13px;
  }
  .dropdown { display: none !important; }
  .nav-close {
    display: flex; position: absolute; top: 16px; right: 16px;
    width: 36px; height: 36px; align-items: center; justify-content: center;
    color: #555;
  }

  .products { grid-template-columns: repeat(2, 1fr); }
  .tops { grid-template-columns: 1fr; }
  .trust { flex-direction: column; align-items: flex-start; }
  .trust-sep { display: none; }
  .trust-item { padding: 12px 24px; }

  .section { padding: 40px 20px; }
  .feature-content { left: 32px; }

  .footer-top { grid-template-columns: 1fr 1fr; padding: 40px 24px; }
  .footer-brand { grid-column: span 2; }
  .footer-bot { padding: 16px 24px; flex-direction: column; align-items: flex-start; }

  .strip { grid-template-columns: 1fr; }
  .strip-item { aspect-ratio: 16/9; }
}

@media (max-width: 540px) {
  .site-logo img { width: 100px; height: 42px; }
  #new .section-head { align-items: flex-start; flex-wrap: wrap; gap: 18px; }
  .catalog-controls { width: 100%; }
  .catalog-controls .filter-btn,
  .catalog-controls .sort-select { flex: 1; width: 0; min-width: 0; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .hero-text { padding: 32px 24px; }
  .hero-text h1 { font-size: 36px; }
  .hero-prev { left: 12px; }
  .hero-next { right: 12px; }
  .hero-dots { right: 24px; }
  .cart-drawer { width: 100%; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  #nlForm { flex-direction: column; }
  #nlForm input { width: 100%; border-right: 1.5px solid #ddd; border-bottom: none; }
  #nlForm .btn-black { width: 100%; }
}
