/* =========================================================================
   DISTINCT KULTURE — style.css
   1. Fonts        6. Product cards      11. Account pages
   2. Variables    7. Home               12. Forms
   3. Base         8. Listing            13. Footer
   4. Header       9. Product detail     14. Responsive
   5. Buttons     10. Cart / checkout    15. Motion
   ========================================================================= */

/* ========================================
   1. FONTS
======================================== */
@font-face { font-family: 'Poppins'; src: url('../fonts/poppins-latin-400-normal.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('../fonts/poppins-latin-500-normal.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('../fonts/poppins-latin-600-normal.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('../fonts/poppins-latin-700-normal.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('../fonts/poppins-latin-800-normal.woff2') format('woff2'); font-weight: 800; font-display: swap; }

/* ========================================
   2. VARIABLES
======================================== */
:root {
  --color-primary: #0a0a0a;
  --color-secondary: #ffffff;
  --color-accent: #ec1c24;
  --color-accent-dark: #c8151c;
  --color-text: #1a1a1a;
  --color-muted: #6f6f6f;
  --color-muted-2: #8b8b8b;
  --color-background: #ffffff;
  --color-soft: #f5f5f5;
  --color-soft-2: #fafafa;
  --color-line: #e6e6e6;
  --color-line-dark: #2a2a2a;
  --color-dark: #0a0a0a;
  --color-dark-2: #141414;
  --color-green: #17a34a;
  --color-amber: #f5a623;
  --color-blue: #1a73e8;

  --font-primary: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --wrap: 1166px;
  --gutter: 24px;
  --topbar-h: 28px;
  --header-h: 50px;
  --radius: 6px;
  --radius-sm: 4px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .07);
  --shadow: 0 6px 20px rgba(0, 0, 0, .08);
  --shadow-lg: 0 14px 40px rgba(0, 0, 0, .12);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ========================================
   3. BASE
======================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html { overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure, fieldset { margin: 0; }
ul, ol { padding: 0; list-style: none; }
fieldset { border: 0; padding: 0; min-width: 0; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; letter-spacing: -0.01em; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }

/* per-page content widths, matched to the reference screenshots */
.page-home { --wrap: 1166px; }
.page-listing, .page-account { --wrap: 1212px; }
.page-product, .page-confirm { --wrap: 1144px; }
.page-cart { --wrap: 1096px; }
.page-checkout { --wrap: 1034px; }
.page-auth { --wrap: 1212px; }

.wrap { width: 100%; max-width: calc(var(--wrap) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 200;
  padding: 10px 16px; border-radius: var(--radius-sm);
  background: #fff; color: #0a0a0a; font-size: 12px; font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 8px; }
.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; }
.ico { width: 1em; height: 1em; flex-shrink: 0; }
.sec-title { font-size: 21px; font-weight: 800; letter-spacing: .01em; text-transform: uppercase; }
.rule { flex: 1; height: 1px; background: var(--color-line); }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; color: #3d3d3d; }
.link-arrow .ico { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.link-arrow:hover .ico { transform: translateX(3px); }

/* ========================================
   4. HEADER
======================================== */
.topbar { background: #101010; color: #efefef; font-size: 9px; font-weight: 500; letter-spacing: .06em; }
.topbar__inner {
  width: 100%; max-width: calc(var(--wrap) + var(--gutter) * 2);
  margin-inline: auto; padding: 0 var(--gutter);
  min-height: var(--topbar-h);
  display: flex; align-items: center; gap: 10px;
}
.topbar__item { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar__item .ico { width: 14px; height: 14px; }
.topbar__sep { opacity: .35; }
.topbar__tagline { margin-inline: auto; letter-spacing: .22em; font-weight: 600; }
.topbar__links { display: flex; align-items: center; gap: 9px; margin-left: auto; white-space: nowrap; }
.topbar__links a:hover { color: var(--color-accent); }
.topbar__country { display: inline-flex; align-items: center; gap: 5px; color: inherit; font: inherit; letter-spacing: .06em; }
.topbar__country img { width: 18px; height: 12px; border-radius: 2px; }
.topbar__country .ico { width: 12px; height: 12px; opacity: .8; }
.topbar--promo { --topbar-h: 20px; font-size: 9px; }
.topbar--promo .topbar__inner { max-width: calc(1029px + var(--gutter) * 2); }
.topbar--promo .topbar__inner { position: relative; justify-content: flex-end; }
.topbar--promo .topbar__promo { position: absolute; left: 0; right: 0; text-align: center; }
.topbar--promo .topbar__arrow { position: absolute; top: 50%; transform: translateY(-50%); }
.topbar--promo .topbar__arrow:nth-of-type(1) { left: calc(50% - 194px); }
.topbar--promo .topbar__arrow:nth-of-type(2) { left: calc(50% + 178px); }
.topbar__promo { letter-spacing: .1em; font-weight: 600; }
.topbar__arrow { color: #b9b9b9; display: grid; place-items: center; }
.topbar__arrow .ico { width: 13px; height: 13px; }


.site-header { background: #000; color: #fff; position: relative; z-index: 60; }
.site-header__inner {
  width: 100%; max-width: calc(var(--wrap) + var(--gutter) * 2);
  margin-inline: auto; padding: 0 var(--gutter);
  height: var(--header-h);
  display: flex; align-items: center; gap: 32px;
}
.brand { flex-shrink: 0; }
.brand img { width: 178px; height: auto; }
.site-header--compact { --header-h: 48px; }
.site-header--compact .brand img { width: 174px; }
.site-header--compact .site-header__inner { max-width: calc(1029px + var(--gutter) * 2); gap: 53px; }
.site-header--compact .main-nav ul { gap: 21px; }
.site-header--compact .main-nav a { font-size: 10px; }
.site-header--compact .header-tools { gap: 13px; }
.site-header--compact .search input { width: 188px; }

.main-nav ul { display: flex; align-items: center; gap: 24px; }
.main-nav a {
  position: relative;
  display: block; padding: 4px 0;
  font-size: 10px; font-weight: 500; letter-spacing: .07em; color: #fff;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 2px; background: var(--color-accent);
  transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }
.main-nav a.is-active { color: #fff; }

.header-tools { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.search { position: relative; }
.search input {
  width: 222px; height: 30px;
  padding: 0 34px 0 12px;
  border: 1px solid #2c2c2c; border-radius: var(--radius-sm);
  background: #1b1b1b; color: #fff; font-size: 11.5px;
}
.search input::placeholder { color: #8d8d8d; }
.search input:focus { outline: none; border-color: #4a4a4a; }
.search button { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); color: #cfcfcf; display: grid; }
.search .ico { width: 15px; height: 15px; }
.icon-btn { position: relative; display: grid; place-items: center; width: 26px; height: 26px; color: #fff; }
.icon-btn .ico { width: 19px; height: 19px; stroke-width: 1.6; }
.icon-btn:hover { color: var(--color-accent); }
.badge {
  position: absolute; top: -4px; right: -6px;
  min-width: 15px; height: 15px; padding: 0 4px;
  border-radius: 999px; background: var(--color-accent); color: #fff;
  font-size: 9px; font-weight: 700; line-height: 15px; text-align: center;
}
.badge--wish { background: var(--color-accent); }
.nav-toggle { display: none; width: 30px; height: 26px; position: relative; }
.nav-toggle span { position: absolute; left: 3px; right: 3px; height: 2px; background: #fff; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle span:nth-child(1) { top: 5px; }
.nav-toggle span:nth-child(2) { top: 12px; }
.nav-toggle span:nth-child(3) { top: 19px; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================================
   5. BUTTONS
======================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 40px; padding: 0 20px;
  border: 1px solid transparent; border-radius: var(--radius-sm);
  font-size: 12.5px; font-weight: 600; letter-spacing: .04em;
  white-space: nowrap;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn .ico { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.btn:hover { transform: translateY(-1px); }
.btn:hover .ico:last-child { transform: translateX(3px); }
.btn--red { background: var(--color-accent); color: #fff; }
.btn--red:hover { background: var(--color-accent-dark); }
.btn--black { background: #0a0a0a; color: #fff; }
.btn--black:hover { background: #262626; }
.btn--white { background: #fff; color: #0a0a0a; }
.btn--white:hover { background: #ededed; }
.btn--outline { border-color: #d7d7d7; color: #0a0a0a; background: #fff; }
.btn--outline:hover { border-color: #0a0a0a; }
.btn--outline-light { border-color: rgba(255,255,255,.6); color: #fff; }
.btn--outline-light:hover { background: #fff; color: #0a0a0a; }
.btn--lg { height: 46px; padding: 0 26px; font-size: 13px; }
.btn--sm { height: 32px; padding: 0 12px; font-size: 11.5px; }
.btn--danger { border-color: #f4bcbf; color: var(--color-accent); }
.btn--danger:hover { border-color: var(--color-accent); background: #fdf3f3; }
.btn--red-outline { border-color: #f4bcbf; color: var(--color-accent); background: #fff; }
.btn--red-outline:hover { border-color: var(--color-accent); background: #fdf3f3; }
.btn--block { width: 100%; }
.btn--uppercase { text-transform: uppercase; letter-spacing: .08em; }

/* ========================================
   6. PRODUCT CARDS
======================================== */
.product-card { position: relative; display: block; width: 100%; min-width: 0; }
.product-card__media {
  position: relative; display: block;
  background: var(--color-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 128 / 110;
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.05); }
.product-card__wish {
  position: absolute; top: 8px; right: 8px; z-index: 2;
  display: grid; place-items: center; width: 24px; height: 24px;
  border-radius: 50%; background: rgba(255,255,255,.92); color: #1a1a1a;
  box-shadow: var(--shadow-sm);
  transition: background-color .2s, color .2s, transform .25s var(--ease);
}
.product-card__wish .ico { width: 14px; height: 14px; }
.product-card__wish:hover, .product-card__wish.is-on { background: var(--color-accent); color: #fff; }
.product-card__wish.is-on .ico { fill: currentColor; }
.tag {
  position: absolute; top: 0; left: 0; z-index: 2;
  padding: 3px 8px;
  background: var(--color-accent); color: #fff;
  font-size: 8.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.tag--new { background: #0a0a0a; }
.product-card__name { margin-top: 7px; line-height: 1.3; font-size: 10.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: #141414; }
.product-card__price { margin-top: 1px; line-height: 1.3; font-size: 11.5px; font-weight: 500; color: #3a3a3a; }
.swatches { display: flex; gap: 6px; margin-top: 6px; }
.swatch { width: 10px; height: 10px; border-radius: 50%; border: 1px solid rgba(0,0,0,.18); display: block; }
.swatch--black { background: #111; }
.swatch--white { background: #fff; }
.swatch--red { background: #ec1c24; }
.swatch--grey { background: #8a8a8a; }
.swatch--sand { background: #d9c2a6; }
.swatch--green { background: #1f7a3f; }
.swatch--navy { background: #1b2a56; }
.swatch--pink { background: #f0a0a0; }
.sizes { display: flex; gap: 5px; margin-top: 9px; }
.sizes span {
  min-width: 25px; height: 19px; padding: 0 4px;
  display: grid; place-items: center;
  background: var(--color-soft); border-radius: 2px;
  font-size: 9px; font-weight: 500; color: #4a4a4a;
}

/* ========================================
   7. HOME
======================================== */
.hero { position: relative; height: 284px; overflow: hidden; background: #1b1b1b; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero__inner { position: relative; height: 100%; }
.hero__content { position: absolute; inset: 0; color: #fff; }
.hero__eyebrow { position: absolute; left: 94px; top: 32px; font-size: 12px; font-weight: 500; letter-spacing: .3em; }
.hero__logo { position: absolute; left: 86px; top: 27px; width: 306px; }
.hero__tagline { position: absolute; left: 221px; top: 182px; font-size: 12.5px; font-weight: 500; letter-spacing: .21em; line-height: 24px; }
.hero__cta { position: absolute; left: 81px; top: 235px; width: 137px; height: 27px; padding: 0; font-size: 11px; letter-spacing: .09em; border-radius: 2px; }
.hero__cta .ico { width: 13px; height: 13px; }
.hero__dots { position: absolute; right: 63px; bottom: 14px; display: flex; align-items: center; gap: 5px; white-space: nowrap; font-size: 9.5px; letter-spacing: .08em; }
.hero__dots i { width: 24px; height: 1.5px; background: var(--color-accent); display: block; margin-right: 4px; }
.hero__dots span { opacity: .75; }
.hero__dots span.is-on { opacity: 1; font-weight: 600; }

.usp { border-bottom: 1px solid var(--color-line); background: #fff; }
.usp__inner { display: flex; align-items: center; justify-content: space-between; gap: 10px; height: 51px; }
.usp__item { display: flex; align-items: center; gap: 10px; }
.usp__item .ico { width: 21px; height: 21px; stroke-width: 1.5; color: #111; }
.usp__item img { width: 22px; }
.usp__item strong { display: block; font-size: 9.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.usp__item span { display: block; font-size: 8.5px; letter-spacing: .04em; color: var(--color-muted); text-transform: uppercase; }

.section { padding-top: 36px; }
.section__head { display: flex; align-items: center; gap: 22px; min-height: 24px; margin: 0 0 18px; }

.categories { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.category {
  position: relative; display: block; height: 110px;
  border-radius: 3px; overflow: hidden; color: #fff;
}
.category img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.category::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.15)); }
.category:hover img { transform: scale(1.06); }
.category__body { position: absolute; left: 14px; bottom: 12px; z-index: 2; }
.category__body h3 { font-size: 17px; font-weight: 800; letter-spacing: .01em; }
.category__body span { display: inline-flex; align-items: center; gap: 6px; margin-top: 3px; font-size: 9px; font-weight: 600; letter-spacing: .08em; }
.category__body .ico { width: 11px; height: 11px; }

.trending { display: grid; grid-template-columns: minmax(0, 1fr) 324px; gap: 16px; align-items: start; }
.trending .join { margin-top: -8px; height: 212px; }
.trending__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.filters { display: flex; gap: 14px; }
.filters button { font-size: 9px; font-weight: 600; letter-spacing: .07em; color: var(--color-muted); text-transform: uppercase; }
.filters button.is-active { color: #111; }
.join {
  position: relative; display: block; height: 220px; border-radius: 3px; overflow: hidden; color: #fff;
}
.join img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.join::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.55)); }
.join__body { position: absolute; left: 20px; bottom: 24px; z-index: 2; }
.join__body h3 { font-size: 22px; font-weight: 800; line-height: 1.1; font-style: italic; }
.join__body .btn { margin-top: 14px; height: 30px; font-size: 10px; }

.home-banners { display: grid; grid-template-columns: 383fr 385fr 383fr; gap: 8px; margin-top: 28px; padding-bottom: 36px; }
.home-banner { position: relative; display: flex; align-items: center; height: 56px; border-radius: 3px; overflow: hidden; color: #fff; }
.home-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.home-banner::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.home-banner__body { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; padding: 0 14px; }
.home-banner__body p { font-size: 11px; font-weight: 700; font-style: italic; line-height: 1.25; letter-spacing: .02em; }
.home-banner__body small { display: block; font-size: 8px; font-weight: 500; font-style: normal; letter-spacing: .04em; opacity: .85; }
.home-banner .btn { height: 26px; font-size: 9px; padding: 0 12px; }

/* ========================================
   8. LISTING PAGE
======================================== */
.page-hero { position: relative; min-height: 178px; display: flex; align-items: center; color: #fff; overflow: hidden; background: #131313; }
.page-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.8) 35%, rgba(0,0,0,.25)); }
.page-hero__inner { position: relative; z-index: 2; width: 100%; padding-block: 28px; }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 11px; color: #d6d6d6; }
.breadcrumb--light { color: #6a6a6a; padding: 16px 0 8px; }
.breadcrumb .ico { width: 11px; height: 11px; opacity: .7; }
.breadcrumb a:hover { color: #fff; }
.page-hero h1 { margin-top: 10px; font-size: 44px; letter-spacing: -.02em; }
.page-hero__sub { margin-top: 6px; font-size: 14px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.page-hero__text { margin-top: 10px; max-width: 420px; font-size: 11.5px; line-height: 1.7; color: #dcdcdc; }

.shop-layout { display: grid; grid-template-columns: 183px minmax(0, 1fr); gap: 29px; padding-block: 24px 34px; }
.filter-title { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.cat-list { margin-top: 10px; display: grid; gap: 1px; }
.cat-list a { display: flex; align-items: center; gap: 9px; height: 25px; padding: 0 9px; border-radius: var(--radius-sm); font-size: 10.5px; color: #2b2b2b; }
.cat-list a .ico { width: 14px; height: 14px; color: #555; }
.cat-list a:hover { background: var(--color-soft); }
.cat-list a.is-active { background: var(--color-soft); font-weight: 600; }
.filter-block { margin-top: 20px; }
.filter-head { display: flex; align-items: baseline; justify-content: space-between; }
.filter-head button { font-size: 10px; font-weight: 600; color: var(--color-accent); text-decoration: underline; }
.filter-group { margin-top: 12px; }
.filter-group h4 { font-size: 10.5px; font-weight: 600; margin-bottom: 6px; }
.check { display: flex; align-items: center; gap: 8px; min-height: 20px; font-size: 10px; color: #4b4b4b; cursor: pointer; }
.check input { width: 13px; height: 13px; accent-color: #0a0a0a; }
.colour-row { display: flex; flex-wrap: wrap; gap: 8px; }
.colour-dot { width: 19px; height: 19px; border-radius: 50%; border: 1px solid rgba(0,0,0,.2); cursor: pointer; transition: transform .2s var(--ease); }
.colour-dot:hover, .colour-dot.is-on { transform: scale(1.12); box-shadow: 0 0 0 2px #fff, 0 0 0 3px #111; }
.price-range { margin-top: 10px; }
.price-range output { display: block; font-size: 10px; color: #4b4b4b; margin-bottom: 8px; }
.price-range input { width: 100%; accent-color: #111; }

.shop-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.shop-head h2 { font-size: 13px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
.shop-head__tools { display: flex; align-items: center; gap: 12px; font-size: 11px; color: var(--color-muted); }
.select { position: relative; }
.select select { height: 30px; padding: 0 28px 0 10px; border: 1px solid var(--color-line); border-radius: var(--radius-sm); background: #fff; font-size: 11px; appearance: none; }
.select .ico { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 13px; height: 13px; pointer-events: none; color: #444; }
.view-toggle { display: flex; gap: 4px; }
.view-toggle button { display: grid; place-items: center; width: 28px; height: 28px; border-radius: var(--radius-sm); color: #666; }
.view-toggle button .ico { width: 15px; height: 15px; }
.view-toggle button.is-active { background: var(--color-soft); color: #111; }

.product-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px 10px; }
.product-grid .product-card__media { aspect-ratio: 154 / 143; }

/* ========================================
   9. PRODUCT DETAIL
======================================== */
.pdp { display: grid; grid-template-columns: 70px minmax(0, 438px) minmax(0, 1fr) 214px; gap: 14px; padding-block: 14px 20px; align-items: start; }
.pdp-thumbs { display: grid; gap: 18px; }
.pdp-thumb { border: 1px solid transparent; border-radius: 3px; overflow: hidden; background: var(--color-soft); }
.pdp-thumb img { width: 100%; aspect-ratio: 69 / 68; object-fit: cover; }
.pdp-thumb.is-active { border-color: #111; }
.pdp-stage { position: relative; background: var(--color-soft-2); border-radius: 3px; overflow: hidden; }
.pdp-stage img { width: 100%; aspect-ratio: 438 / 450; object-fit: contain; background: #fafafa; }
.pdp-stage__zoom, .pdp-stage__nav {
  position: absolute; display: grid; place-items: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.9); color: #111; box-shadow: var(--shadow-sm);
}
.pdp-stage__zoom { top: 12px; right: 12px; }
.pdp-stage__nav { top: 50%; transform: translateY(-50%); }
.pdp-stage__nav--prev { left: 10px; }
.pdp-stage__nav--next { right: 10px; }
.pdp-stage .ico { width: 15px; height: 15px; }

.pdp-info { min-width: 0; }
.pdp-info .tag { position: static; display: inline-block; margin-bottom: 2px; }
.pdp-info h1 { font-size: 27px; letter-spacing: -.01em; }
.pdp-info__sub { margin-top: 2px; font-size: 11.5px; color: var(--color-muted); }
.rating { display: flex; align-items: center; gap: 8px; margin-top: 7px; font-size: 11px; color: #555; }
.stars { display: flex; gap: 1px; color: var(--color-amber); }
.stars .ico { width: 13px; height: 13px; fill: currentColor; }
.rating a { text-decoration: underline; }
.price { margin-top: 9px; font-size: 25px; font-weight: 700; }
.price small { display: block; font-size: 10.5px; font-weight: 400; color: var(--color-muted); margin-top: 2px; }
.pdp-info__desc { margin-top: 10px; font-size: 11.5px; line-height: 1.5; color: #3d3d3d; }
.pdp-usp { display: grid; grid-template-columns: repeat(4, max-content); justify-content: space-between; gap: 2px; margin: 11px 0; padding: 6px 0; border-top: 1px solid var(--color-line); border-bottom: 1px solid var(--color-line); }
.pdp-usp div { display: grid; gap: 2px; }
.pdp-usp .ico { width: 16px; height: 16px; color: #111; }
.pdp-usp strong { font-size: 9px; font-weight: 600; white-space: nowrap; }
.pdp-usp span { font-size: 8.5px; color: var(--color-muted); white-space: nowrap; }
.opt-label { font-size: 11.5px; font-weight: 600; }
.opt-label span { font-weight: 400; color: var(--color-muted); }
.colour-row--lg { margin: 8px 0 12px; gap: 10px; }
.colour-row--lg .colour-dot { width: 22px; height: 22px; }
.size-row { display: flex; flex-wrap: wrap; gap: 7px; margin: 8px 0 14px; }
.size-row button {
  min-width: 38px; height: 25px; padding: 0 9px;
  border: 1px solid var(--color-line); border-radius: var(--radius-sm);
  background: #fff; font-size: 11px; font-weight: 500;
  transition: border-color .2s, background-color .2s, color .2s;
}
.size-row button:hover { border-color: #999; }
.size-row button.is-active { background: #fff; border-color: #111; font-weight: 600; }
.size-guide { display: inline-flex; align-items: center; gap: 6px; font-size: 10.5px; color: #333; }
.size-guide .ico { width: 13px; height: 13px; }
.buy-row { display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 12px; align-items: start; }
.qty { display: flex; align-items: center; justify-content: space-between; height: 32px; border: 1px solid var(--color-line); border-radius: var(--radius-sm); padding: 0 6px; }
.qty button { width: 24px; height: 100%; display: grid; place-items: center; color: #333; }
.qty .ico { width: 13px; height: 13px; }
.qty input { width: 28px; text-align: center; border: 0; font-size: 13px; font-weight: 500; background: none; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.buy-actions { display: grid; gap: 8px; }
.buy-actions .btn { height: 32px; font-size: 12px; }
.pdp-links { display: flex; gap: 26px; margin-top: 12px; font-size: 11px; }
.pdp-links button { display: inline-flex; align-items: center; gap: 7px; }
.pdp-links .ico { width: 14px; height: 14px; }
.pdp-links button.is-on .icon-heart, .pdp-links button.is-on .ico { color: var(--color-accent); fill: currentColor; }

.pdp-side { display: grid; gap: 14px; }
.side-list { border: 1px solid var(--color-line); border-radius: var(--radius-sm); padding: 6px 12px; }
.side-list li { display: flex; gap: 10px; align-items: flex-start; padding: 9px 0; }
.side-list li + li { border-top: 1px solid var(--color-line); }
.side-list .ico { width: 19px; height: 19px; color: #111; margin-top: 1px; }
.side-list strong { display: block; font-size: 10.5px; font-weight: 600; }
.side-list span { font-size: 9.5px; color: var(--color-muted); }
.side-promo { position: relative; border-radius: 3px; overflow: hidden; color: #fff; }
.side-promo img { width: 100%; height: 218px; object-fit: cover; }
.side-promo__body { position: absolute; inset: auto 0 0 0; padding: 12px 14px; background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.75)); }
.side-promo__body img { width: 120px; height: auto; margin-bottom: 8px; }
.side-promo__body p { font-size: 9.5px; font-weight: 600; letter-spacing: .04em; line-height: 1.5; }

.pdp-tabs { border-top: 1px solid var(--color-line); }
.tab-nav { display: flex; gap: 26px; }
.tab-nav button {
  position: relative; padding: 12px 0; font-size: 11px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; color: var(--color-muted);
}
.tab-nav button::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--color-accent); transform: scaleX(0); transition: transform .25s var(--ease); }
.tab-nav button.is-active { color: #111; }
.tab-nav button.is-active::after { transform: scaleX(1); }
.tab-body { display: grid; grid-template-columns: minmax(0, 1fr) 260px 300px; gap: 30px; padding: 14px 0 20px; align-items: start; }
.tab-body p { font-size: 11.5px; line-height: 1.75; color: #3d3d3d; }
.tab-body p + p { margin-top: 8px; }
.spec-list { list-style: disc; padding-left: 16px; display: grid; gap: 4px; font-size: 11px; color: #3d3d3d; }
.promo-wide { position: relative; border-radius: 3px; overflow: hidden; color: #fff; }
.promo-wide img { width: 100%; height: 86px; object-fit: cover; }
.promo-wide__body { position: absolute; inset: 0; display: flex; align-items: center; justify-content: flex-end; padding: 0 12px; }
.promo-wide .btn { height: 26px; font-size: 9px; }

.related { padding-bottom: 28px; }
.related__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 14px; }

/* ========================================
   10. CART / CHECKOUT / CONFIRMATION
======================================== */
.page-banner { position: relative; min-height: 121px; display: flex; align-items: center; color: #fff; overflow: hidden; background: #141414; }
.page-banner__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.85) 40%, rgba(0,0,0,.2)); }
.page-banner__inner { position: relative; z-index: 2; width: 100%; }
.page-banner h1 { margin-top: 8px; font-size: 34px; }
.page-banner p { margin-top: 2px; font-size: 12px; color: #d8d8d8; }
.page-banner__art { position: absolute; right: 4%; top: 50%; transform: translateY(-50%); z-index: 2; width: 190px; }

.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 352px; gap: 34px; padding-block: 20px 26px; align-items: start; }
.cart-table { border: 1px solid var(--color-line); border-radius: var(--radius-sm); }
.cart-table__head, .cart-row { display: grid; grid-template-columns: minmax(0, 1fr) 110px 120px 90px; align-items: center; }
.cart-table__head { padding: 12px 18px; border-bottom: 1px solid var(--color-line); font-size: 11.5px; font-weight: 600; color: #333; }
.cart-table__head span:not(:first-child), .cart-row > *:not(.cart-item) { text-align: center; }
.cart-table__head span:last-child, .cart-row .cart-row__total { text-align: right; }
.cart-row { padding: 14px 18px; }
.cart-row + .cart-row { border-top: 1px solid var(--color-line); }
.cart-item { display: flex; gap: 14px; align-items: flex-start; }
.cart-item img { width: 97px; height: 70px; object-fit: cover; border-radius: 3px; background: var(--color-soft); }
.cart-item h3 { font-size: 13px; font-weight: 600; }
.cart-item h3 a, .wish-card__body h3 a { color: inherit; text-decoration: none; }
.cart-item dl { display: flex; gap: 16px; margin-top: 4px; font-size: 11px; color: var(--color-muted); }
.cart-item dl dd, .cart-item dl dt { margin: 0; }
.cart-item dl div { display: flex; gap: 5px; }
.cart-item .remove { margin-top: 6px; font-size: 11px; color: var(--color-accent); text-decoration: underline; }
.cart-row__price, .cart-row__total { font-size: 13px; font-weight: 500; }
.cart-row__total { font-weight: 600; }
.qty--sm { width: 92px; height: 30px; margin-inline: auto; }
.qty--sm input { width: 24px; font-size: 12px; }
.cart-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.cart-actions button, .cart-actions a { display: inline-flex; align-items: center; gap: 8px; font-size: 11.5px; font-weight: 600; }
.cart-actions .ico { width: 14px; height: 14px; }

.summary { border: 1px solid var(--color-line); border-radius: var(--radius-sm); padding: 18px; }
.summary h2 { font-size: 14px; letter-spacing: .04em; text-transform: uppercase; }
.summary__row { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; font-size: 12px; color: #444; }
.summary__total { display: flex; align-items: baseline; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--color-line); }
.summary__total strong { display: block; font-size: 20px; font-weight: 700; }
.summary__total small { display: block; font-size: 10.5px; font-weight: 400; color: var(--color-muted); margin-top: 2px; }
.summary__total b { font-size: 21px; font-weight: 700; }
.summary small { display: block; font-size: 10px; color: var(--color-muted); }
.summary .btn { margin-top: 14px; }
.or-sep { display: flex; align-items: center; gap: 10px; margin: 14px 0; font-size: 10px; color: var(--color-muted); }
.or-sep::before, .or-sep::after { content: ''; flex: 1; height: 1px; background: var(--color-line); }
.pay-btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 6px; height: 32px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; }
.pay-btn--apple { background: #000; color: #fff; }
.pay-btn--paypal { background: #ffc439; }
.pay-btn--paypal img { height: 18px; width: auto; }
.pay-btn .ico { width: 13px; height: 13px; }
.pay-marks { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 14px; }
.pay-marks img { height: 17px; width: auto; opacity: .95; }
.secure-note { display: flex; gap: 10px; align-items: flex-start; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--color-line); }
.secure-note .ico { width: 20px; height: 20px; color: #111; }
.secure-note strong { display: block; font-size: 11px; font-weight: 600; }
.secure-note span { font-size: 10px; color: var(--color-muted); }

.suggest { padding-bottom: 26px; }
.suggest__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.suggest__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.suggest__layout { display: grid; grid-template-columns: minmax(0, 1fr) 356px; gap: 34px; align-items: start; }
.cart-promo { position: relative; border-radius: 3px; overflow: hidden; color: #fff; min-height: 162px; display: flex; }
.cart-promo img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cart-promo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.85) 35%, rgba(0,0,0,.15)); }
.cart-promo__body { position: relative; z-index: 2; padding: 18px; display: flex; flex-direction: column; justify-content: space-between; }
.cart-promo__body img { width: 120px; }
.cart-promo__body p { font-size: 10.5px; font-weight: 600; line-height: 1.5; }
.cart-promo .btn { align-self: flex-start; height: 28px; font-size: 9.5px; }

/* checkout */
.checkout-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 22px 0 18px; }
.checkout-head h1 { font-size: 34px; }
.checkout-head p { margin-top: 4px; font-size: 12px; color: var(--color-muted); }
.secure-badge { display: flex; align-items: center; gap: 10px; }
.secure-badge .ico { width: 26px; height: 26px; }
.secure-badge strong { display: block; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.secure-badge span { font-size: 10px; color: var(--color-muted); }

.steps { display: flex; align-items: flex-start; justify-content: space-between; max-width: 620px; margin-bottom: 22px; }
.step { position: relative; display: grid; justify-items: center; gap: 6px; text-align: center; flex: 1; }
.step::before { content: ''; position: absolute; top: 13px; left: calc(-50% + 16px); right: calc(50% + 16px); height: 2px; background: var(--color-line); }
.step:first-child::before { display: none; }
.step i { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; background: #dcdcdc; color: #fff; font-size: 12px; font-weight: 600; font-style: normal; }
.step.is-active i { background: var(--color-accent); }
.step.is-done i { background: var(--color-accent); }
.step span { font-size: 10px; font-weight: 500; color: #555; line-height: 1.3; max-width: 74px; }
.step.is-active span { color: #111; font-weight: 600; }

.checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: 30px; padding-block: 0 26px; align-items: start; }
.panel { border: 1px solid var(--color-line); border-radius: var(--radius); padding: 18px; }
.panel + .panel { margin-top: 16px; }
.panel__head { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 16px; }
.panel__head .ico { width: 20px; height: 20px; color: #111; margin-top: 2px; }
.panel__head h2 { font-size: 15px; font-weight: 700; }
.panel__head p { font-size: 11px; color: var(--color-muted); }
.ship-option {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border: 1px solid var(--color-line); border-radius: var(--radius-sm);
  cursor: pointer; transition: border-color .2s, box-shadow .2s;
}
.ship-option + .ship-option { margin-top: 10px; }
.ship-option:hover { border-color: #bdbdbd; }
.ship-option:has(input:checked) { border-color: var(--color-accent); box-shadow: 0 0 0 1px var(--color-accent); }
.ship-option input { width: 15px; height: 15px; accent-color: var(--color-accent); }
.ship-option strong { display: block; font-size: 12.5px; font-weight: 600; }
.ship-option span { font-size: 10.5px; color: var(--color-muted); }
.ship-option__price { margin-left: auto; font-size: 12.5px; font-weight: 600; }
.ship-option img { height: 24px; width: auto; }

.order-summary { border: 1px solid var(--color-line); border-radius: var(--radius); overflow: hidden; }
.order-summary__head { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: var(--color-soft); border-bottom: 1px solid var(--color-line); }
.order-summary__head h2 { font-size: 14px; font-weight: 700; }
.order-summary__head .ico { width: 18px; height: 18px; }
.order-summary__head span { margin-left: auto; font-size: 11px; color: var(--color-muted); }
.order-line { display: flex; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--color-line); }
.order-line img { width: 54px; height: 54px; object-fit: cover; border-radius: 3px; background: var(--color-soft); }
.order-line h3 { font-size: 12px; font-weight: 600; }
.order-line p { font-size: 10.5px; color: var(--color-muted); }
.order-line b { margin-left: auto; font-size: 12px; font-weight: 600; }
.order-totals { padding: 14px 16px; }
.promo-row { display: flex; gap: 8px; align-items: center; padding: 12px 16px; border-top: 1px solid var(--color-line); border-bottom: 1px solid var(--color-line); font-size: 11.5px; }
.promo-row .ico { width: 15px; height: 15px; flex: none; }
.promo-row > span { white-space: nowrap; }
.promo-row input { flex: 1; height: 32px; padding: 0 10px; border: 1px solid var(--color-line); border-radius: var(--radius-sm); font-size: 11px; }
.promo-row button { height: 32px; padding: 0 14px; border-radius: var(--radius-sm); background: var(--color-soft); font-size: 11px; font-weight: 600; }
.pay-option { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--color-line); border-radius: var(--radius-sm); cursor: pointer; }
.pay-option + .pay-option { margin-top: 8px; }
.pay-option:has(input:checked) { border-color: var(--color-accent); box-shadow: 0 0 0 1px var(--color-accent); }
.pay-option input { width: 15px; height: 15px; accent-color: var(--color-accent); }
.pay-option strong { display: block; font-size: 12px; font-weight: 600; }
.pay-option span { font-size: 10px; color: var(--color-muted); }
.pay-option img { margin-left: auto; height: 18px; width: auto; }
.checkout-foot { font-size: 10px; color: var(--color-muted); text-align: center; margin-top: 10px; }
.checkout-foot a { text-decoration: underline; }

/* confirmation */
.confirm { text-align: center; position: relative; padding: 28px 0 22px; }
.confirm__art { position: absolute; right: 0; top: 0; width: 608px; z-index: 0; }
.confirm__tick, .confirm h1, .confirm > p, .confirm__brush { position: relative; z-index: 1; margin-right: 50%; }
.confirm__tick { width: 84px; height: 84px; margin: 0 50% 14px auto; display: grid; place-items: center; border-radius: 50%; background: #e7f8ec; color: #18a957; }
.confirm__tick .ico { width: 44px; height: 44px; stroke-width: 2.5; }
.confirm h1 { font-size: 34px; }
.confirm > p { margin-top: 8px; font-size: 13px; color: #3f3f3f; }
.confirm__brush { width: 200px; margin: 16px 50% 0 auto; }
.confirm-cards { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--color-line); border-radius: var(--radius); margin-top: 24px; }
.confirm-card { display: flex; gap: 12px; padding: 16px; }
.confirm-card + .confirm-card { border-left: 1px solid var(--color-line); }
.confirm-card .ico { width: 22px; height: 22px; color: #111; flex-shrink: 0; }
.confirm-card h2 { font-size: 12px; font-weight: 600; }
.confirm-card strong { display: block; font-size: 17px; font-weight: 700; margin-top: 2px; }
.confirm-card p { font-size: 10.5px; color: var(--color-muted); margin-top: 4px; }
.confirm-card .ok { color: var(--color-green); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.track-line { display: flex; align-items: flex-start; margin-top: 10px; }
.track-step { flex: 1; display: grid; justify-items: center; gap: 5px; position: relative; }
.track-step::before { content: ''; position: absolute; top: 6px; left: -50%; right: 50%; height: 2px; background: var(--color-line); }
.track-step:first-child::before { display: none; }
.track-step i { width: 13px; height: 13px; border-radius: 50%; background: var(--color-line); position: relative; z-index: 1; }
.track-step.is-on i { background: var(--color-green); box-shadow: 0 0 0 3px rgba(23,163,74,.18); }
.track-step span { font-size: 8.5px; color: var(--color-muted); text-align: center; }
.confirm-grid { display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 26px; padding-block: 26px; text-align: left; }
.order-items { border: 1px solid var(--color-line); border-radius: var(--radius); }
.order-items h2 { font-size: 17px; padding: 14px 18px 0; }
.help-card { border: 1px solid var(--color-line); border-radius: var(--radius); padding: 18px; }
.help-card h2 { font-size: 17px; }
.help-card p { font-size: 11.5px; color: #4a4a4a; margin-top: 6px; }
.help-card ul { margin-top: 14px; display: grid; gap: 10px; }
.help-card li { display: flex; align-items: center; gap: 10px; font-size: 12px; }
.help-card .ico { width: 17px; height: 17px; color: #111; }
.help-card .btn { margin-top: 14px; }

/* ========================================
   11. ACCOUNT
======================================== */
.account { display: grid; grid-template-columns: 208px minmax(0, 1fr); gap: 26px; padding-block: 22px 30px; align-items: start; }
.account > * { min-width: 0; }
.account-nav { border-right: 1px solid var(--color-line); padding-right: 14px; }
.account-user { display: flex; gap: 12px; align-items: center; padding-bottom: 16px; }
.account-user img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.account-user h2 { font-size: 14px; font-weight: 700; }
.account-user p { font-size: 11px; color: var(--color-muted); }
.account-user a { display: inline-flex; align-items: center; gap: 5px; margin-top: 3px; font-size: 11px; color: var(--color-accent); text-decoration: underline; }
.account-user .ico { width: 12px; height: 12px; }
.account-nav ul { display: grid; gap: 2px; }
.account-nav li a { display: flex; align-items: center; gap: 12px; height: 42px; padding: 0 12px; border-radius: var(--radius-sm); font-size: 13px; color: #2b2b2b; transition: background-color .2s, color .2s; }
.account-nav li a .ico { width: 18px; height: 18px; color: #4a4a4a; }
.account-nav li a:hover { background: var(--color-soft); }
.account-nav li a.is-active { background: #fdecec; color: var(--color-accent); font-weight: 600; }
.account-nav li a.is-active .ico { color: var(--color-accent); }
.account-brush { width: 120px; margin: 26px 0 0 12px; }
.account-head { margin-bottom: 18px; }
.account-head h1 { font-size: 30px; }
.account-head p { margin-top: 4px; font-size: 12.5px; color: var(--color-muted); }
.account-head--row { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }

.dash-hero { position: relative; color: #fff; overflow: hidden; }
.dash-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dash-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.8) 32%, rgba(0,0,0,0) 78%); }
.dash-hero__inner { position: relative; z-index: 2; display: flex; align-items: center; gap: 24px; min-height: 96px; padding: 14px 0 14px 47px; }
.dash-hero img.avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.8); }
.dash-hero h1 { font-size: 24px; }
.dash-hero p { font-size: 11.5px; color: #dcdcdc; }
.dash-hero__art { position: absolute; right: 3%; top: 50%; transform: translateY(-50%); z-index: 2; width: 180px; }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat { display: flex; gap: 12px; align-items: flex-start; padding: 16px; border: 1px solid var(--color-line); border-radius: var(--radius); }
.stat .ico { width: 22px; height: 22px; color: #111; }
.stat span { font-size: 11px; color: var(--color-muted); }
.stat strong { display: block; font-size: 22px; font-weight: 700; line-height: 1.2; }
.stat a { font-size: 11px; color: var(--color-accent); text-decoration: underline; }
.dash-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 18px; margin-top: 18px; align-items: start; }
.card { border: 1px solid var(--color-line); border-radius: var(--radius); padding: 16px; }
.card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.card__head h2 { font-size: 15px; font-weight: 700; }
.card__head a { font-size: 11px; color: var(--color-accent); text-decoration: underline; }
table.orders-table { width: 100%; border-collapse: collapse; font-size: 11.5px; }
table.orders-table th { text-align: left; font-weight: 600; color: #555; padding: 8px 6px; border-bottom: 1px solid var(--color-line); font-size: 11px; }
table.orders-table td { padding: 9px 6px; border-bottom: 1px solid var(--color-line); }
table.orders-table tr:last-child td { border-bottom: 0; }
.pill { display: inline-block; padding: 2px 9px; border-radius: 999px; font-size: 10px; font-weight: 600; }
.pill--processing { background: #fff3d6; color: #a06a00; }
.pill--delivered { background: #e4f7e8; color: #16803c; }
.pill--cancelled { background: #fdeaea; color: #c81e1e; }
.btn--mini { height: 26px; padding: 0 12px; font-size: 10.5px; border: 1px solid var(--color-line); border-radius: var(--radius-sm); background: #fff; }
.btn--mini:hover { border-color: #111; }
.progress { height: 6px; border-radius: 999px; background: var(--color-soft); overflow: hidden; margin: 10px 0 8px; }
.progress span { display: block; height: 100%; background: var(--color-accent); }
.address-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 12px; }
.address-card { border: 1px solid var(--color-line); border-radius: var(--radius); padding: 14px; position: relative; }
.address-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.address-card__actions { display: flex; flex-wrap: wrap; gap: 8px; flex-shrink: 0; }
.order-search { min-width: 230px; flex: 1; }
.order-search__input {
  width: 100%; height: 32px; padding: 0 12px;
  border: 1px solid var(--color-line); border-radius: var(--radius-sm);
  background: #fff; font-size: 11.5px;
}
.order-search__input:focus { outline: none; border-color: #111; }
.card:has(.orders-table) { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.orders-table { min-width: 560px; }
.address-card h3 { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; }
.address-card .ico { width: 16px; height: 16px; }
.address-card p { font-size: 11px; color: #4a4a4a; margin-top: 6px; line-height: 1.6; }
.address-card .default { position: absolute; top: 14px; right: 14px; padding: 2px 8px; border-radius: 3px; background: var(--color-soft); font-size: 9.5px; font-weight: 600; }
.address-card__add { display: grid; place-items: center; gap: 6px; text-align: center; border-style: dashed; color: #555; }
.address-card__add i { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--color-soft); font-style: normal; }
.promo-tile { position: relative; display: block; border-radius: var(--radius); overflow: hidden; color: #fff; }
.promo-tile > img { width: 100%; height: auto; }
.promo-tile img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo-tile:has(.promo-tile__body)::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.75)); }
.promo-tile__body { position: relative; z-index: 2; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; }
.promo-tile__body h2 { font-size: 22px; font-style: italic; line-height: 1.15; }
.promo-tile__body p { font-size: 11px; margin-top: 10px; color: #e2e2e2; }

.order-card { border: 1px solid var(--color-line); border-radius: var(--radius); padding: 16px; }
.order-card + .order-card { margin-top: 12px; }
.order-card__grid { display: grid; grid-template-columns: 210px 170px 120px minmax(0, 1fr) 130px; gap: 16px; align-items: center; }
.order-card h3 { font-size: 13px; font-weight: 700; }
.order-card__meta { font-size: 10.5px; color: var(--color-muted); margin-top: 2px; }
.order-thumbs { display: flex; }
.order-thumbs img { width: 52px; height: 52px; object-fit: cover; border-radius: 3px; background: var(--color-soft); border: 2px solid #fff; }
.order-thumbs img + img { margin-left: -12px; }
.order-thumbs span { display: grid; place-items: center; width: 52px; height: 52px; margin-left: -12px; border-radius: 3px; background: var(--color-soft); font-size: 10px; font-weight: 600; }
.order-card__total strong { display: block; font-size: 13px; }
.order-card__total span { font-size: 10.5px; color: var(--color-muted); }
.order-track { display: flex; }
.order-track__step { flex: 1; display: grid; justify-items: center; gap: 4px; position: relative; }
.order-track__step::before { content: ''; position: absolute; top: 8px; left: -50%; right: 50%; height: 2px; background: var(--color-line); }
.order-track__step.is-done::before { background: var(--color-green); }
.order-track__step:first-child::before { display: none; }
.order-track__step i { width: 17px; height: 17px; border-radius: 50%; background: #fff; border: 2px solid var(--color-line); display: grid; place-items: center; position: relative; z-index: 1; }
.order-track__step.is-done i { background: var(--color-green); border-color: var(--color-green); color: #fff; }
.order-track__step.is-current i { border-color: var(--color-green); }
.order-track__step.is-current i::after { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--color-green); }
.order-track__step .ico { width: 10px; height: 10px; stroke-width: 3; }
.order-track__step small { font-size: 8.5px; text-align: center; color: #4a4a4a; line-height: 1.3; }
.order-track__step em { font-size: 8px; font-style: normal; color: var(--color-muted); }
.order-card__actions { display: grid; gap: 8px; }
.order-alert { display: flex; gap: 10px; align-items: flex-start; padding: 10px 14px; border-radius: var(--radius-sm); background: #fdf0f0; font-size: 11px; color: #7a2020; }
.order-alert .ico { width: 15px; height: 15px; color: #c81e1e; margin-top: 1px; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 18px; }
.pagination a, .pagination button { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid var(--color-line); border-radius: var(--radius-sm); font-size: 11.5px; }
.pagination .is-active { background: var(--color-accent); border-color: var(--color-accent); color: #fff; font-weight: 600; }
.pagination .ico { width: 13px; height: 13px; }

.wishlist-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.wish-card { border: 1px solid var(--color-line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.wish-card__media { position: relative; background: var(--color-soft); }
.wish-card__media img { width: 100%; aspect-ratio: 233 / 180; object-fit: cover; }
.wish-card__media button { position: absolute; top: 10px; right: 10px; width: 28px; height: 28px; border-radius: 50%; background: #fff; display: grid; place-items: center; color: var(--color-accent); box-shadow: var(--shadow-sm); }
.wish-card__media .ico { width: 15px; height: 15px; fill: currentColor; }
.wish-card__body { padding: 12px; display: grid; gap: 7px; }
.wish-card h3 { font-size: 13px; font-weight: 600; }
.wish-card .price-sm { font-size: 15px; font-weight: 700; }
.stock { display: inline-block; padding: 2px 8px; border-radius: 3px; font-size: 9.5px; font-weight: 600; width: fit-content; }
.stock--in { background: #e4f7e8; color: #16803c; }
.stock--low { background: #fdf0e3; color: #a35b00; }
.wish-card .remove { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding-top: 10px; margin-top: 2px; border-top: 1px solid var(--color-line); font-size: 11px; color: #555; }
.wish-card .remove .ico { width: 13px; height: 13px; }
.wish-note { display: flex; align-items: center; gap: 14px; margin-top: 16px; padding: 16px; border-radius: var(--radius); background: var(--color-soft); }
.wish-note i { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: #fff; color: var(--color-accent); }
.wish-note .ico { width: 18px; height: 18px; fill: currentColor; }
.wish-note h3 { font-size: 13px; font-weight: 700; }
.wish-note p { font-size: 11px; color: var(--color-muted); }
.wish-note .btn { margin-left: auto; }

.tabs-line { display: flex; border-bottom: 1px solid var(--color-line); margin-bottom: 12px; }
.tabs-line button { position: relative; height: 42px; padding: 0 22px; background: var(--color-soft); font-size: 12.5px; font-weight: 500; color: #555; transition: color .2s, background-color .2s; }
.tabs-line button:first-child { border-radius: 4px 0 0 0; }
.tabs-line button:hover { color: #111; }
.tabs-line button.is-active { background: #fff; color: #111; font-weight: 600; }
.tabs-line button.is-active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; background: var(--color-accent); }

.qr-layout { display: grid; grid-template-columns: minmax(0, 1fr) 225px; gap: 20px; align-items: start; }
.qr-card { border: 1px solid var(--color-line); border-radius: var(--radius); padding: 10px 16px; display: grid; grid-template-columns: 132px minmax(0, 1fr) 107px 143px; gap: 24px; align-items: center; }
.qr-card + .qr-card { margin-top: 11px; }
.qr-card > img { width: 132px; height: 120px; object-fit: contain; border-radius: 4px; background: var(--color-soft); }
.qr-card h3 { font-size: 15px; font-weight: 700; line-height: 1.15; }
.qr-card__meta { font-size: 11.5px; line-height: 18px; color: #4a4a4a; }
.qr-card__meta:first-of-type { margin-top: 5px; }
.qr-card__meta i { font-style: normal; color: #b8b8b8; padding: 0 5px; }
.qr-status { display: inline-flex; align-items: center; gap: 6px; margin-top: 9px; padding: 2px 11px; border-radius: 999px; font-size: 10.5px; font-weight: 600; width: fit-content; }
.qr-status--active { background: #e4f7e8; color: #16803c; }
.qr-status--pending { background: #fdf3e0; color: #a35b00; }
.qr-status .ico { width: 13px; height: 13px; }
.qr-card__code { display: grid; justify-items: center; align-content: center; gap: 8px; padding: 10px 6px; border: 1px solid var(--color-line); border-radius: 5px; }
.qr-card__code img { width: 80px; height: 80px; }
.qr-card__code span { font-size: 10.5px; font-weight: 500; color: #3d3d3d; }
.qr-card__actions { display: grid; gap: 4px; }
.qr-card__actions .btn { height: 27px; font-size: 11.5px; }
.qr-side { display: grid; gap: 12px; }
.qr-head-btn { height: 38px; padding: 0 18px; font-size: 12.5px; }
.info-card { border-radius: var(--radius); padding: 16px; background: #fdf1f1; }
.info-card img { width: 27px; margin-bottom: 12px; }
.info-card h2 { font-size: 13.5px; font-weight: 700; }
.info-card p { font-size: 11px; color: #4a4a4a; margin-top: 8px; line-height: 16px; }
.info-card a { display: inline-flex; align-items: center; gap: 5px; margin-top: 8px; font-size: 11px; color: var(--color-accent); text-decoration: underline; }

.qr-card__note { margin-top: 7px; font-size: 11.5px; color: #4a4a4a; line-height: 16px; }
.help-side { border: 1px solid var(--color-line); border-radius: var(--radius); padding: 16px; }
.help-side h2 { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 700; }
.help-side h2 .ico { width: 19px; height: 19px; }
.help-side p { margin: 9px 0 14px; font-size: 11px; color: #4a4a4a; line-height: 16px; }
.help-side .btn { height: 28px; font-size: 11.5px; font-weight: 600; }
.help-side__link { display: inline-flex; align-items: center; gap: 5px; margin-top: 12px; font-size: 11px; color: var(--color-accent); text-decoration: underline; }
.help-side__link .ico { width: 12px; height: 12px; }

.qr-promo { display: block; border-radius: var(--radius); overflow: hidden; }
.qr-promo img { display: block; width: 100%; height: auto; }

.page-account--narrow { --wrap: 1194px; }
.addr-layout > .card { margin-top: 22px; }
.addr-layout { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; align-items: start; }
.page-account .field, .page-checkout .field { margin-bottom: 8px; }
.page-account .field input, .page-account .field select,
.page-checkout .field input, .page-checkout .field select { height: 32px; }
.page-account .field label, .page-checkout .field label { font-size: 11.5px; }
.details-layout { display: grid; grid-template-columns: minmax(0, 1fr) 358px; gap: 16px; align-items: start; }

.sizes--pick { flex-wrap: wrap; }
.sizes--pick button {
  min-width: 36px; height: 26px; padding: 0 9px;
  display: grid; place-items: center;
  border: 1px solid var(--color-line); border-radius: var(--radius-sm);
  background: #fff; font-size: 10.5px; font-weight: 500; color: #4a4a4a;
  transition: border-color .2s, color .2s;
}
.sizes--pick button:hover:not(:disabled) { border-color: #111; color: #111; }
.sizes--pick button.is-active { border-color: #111; border-width: 1.5px; color: #111; font-weight: 600; }
.sizes--pick button:disabled { background: var(--color-soft); color: #b5b5b5; cursor: not-allowed; }

/* ========================================
   12. FORMS / AUTH
======================================== */
.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 11.5px; font-weight: 500; }
.field .req { color: var(--color-accent); }
.field input, .field select, .field textarea {
  width: 100%; height: 38px; padding: 0 12px;
  border: 1px solid var(--color-line); border-radius: var(--radius-sm);
  background: #fff; font-size: 12.5px;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { height: auto; padding: 10px 12px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #9d9d9d; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: #111; box-shadow: 0 0 0 3px rgba(0,0,0,.06); }
.field.has-error input, .field.has-error select { border-color: var(--color-accent); }
.field__error { font-size: 10.5px; color: var(--color-accent); }
.field--icon { position: relative; }
.field--icon input { padding-left: 38px; }
.field--icon > .ico { position: absolute; left: 13px; top: 33px; width: 15px; height: 15px; color: #8a8a8a; }
.field--icon .toggle-pass { position: absolute; right: 12px; top: 33px; color: #8a8a8a; }
.field--icon .toggle-pass .ico { width: 15px; height: 15px; }
.page-account .field--icon > .ico, .page-account .field--icon .toggle-pass,
.page-checkout .field--icon > .ico, .page-checkout .field--icon .toggle-pass { top: 29px; }
.dial {
  position: absolute; left: 37px; top: 26px; height: 22px;
  display: flex; align-items: center; gap: 4px; padding-left: 9px;
  border-left: 1px solid var(--color-line); color: #8a8a8a;
}
.dial img { width: 18px; height: 12px; border-radius: 1px; }
.dial .ico { width: 12px; height: 12px; }
.field input.has-dial { padding-left: 99px; }
.field--flag { position: relative; }
.field--flag > img { position: absolute; left: 12px; top: 31px; width: 18px; height: 12px; border-radius: 1px; }
.field--flag select { padding-left: 38px; }
.field--icon select { padding-left: 38px; }
.avatar-edit { position: relative; display: inline-block; flex: none; }
.avatar-edit img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }
.avatar-edit i { position: absolute; right: 2px; bottom: 2px; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: #111; color: #fff; border: 2px solid #fff; }
.avatar-edit .ico { width: 12px; height: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row--3 { grid-template-columns: 1fr 1fr 1fr; }
.checkbox { display: flex; align-items: center; gap: 9px; font-size: 11.5px; cursor: pointer; }
.checkbox input { width: 15px; height: 15px; accent-color: var(--color-accent); }
.field input[type="radio"], .field input[type="checkbox"],
.radio-row input[type="radio"], .checkbox input[type="checkbox"] {
  width: 15px; height: 15px; padding: 0; border: 0; border-radius: 0; background: none; flex: none;
}
.radio-row { display: flex; gap: 22px; }
.radio-row label { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; cursor: pointer; }
.radio-row input { width: 15px; height: 15px; accent-color: var(--color-accent); }
.form-status { margin-top: 12px; padding: 10px 12px; border-radius: var(--radius-sm); font-size: 11.5px; font-weight: 500; }
.form-status:empty { display: none; }
.form-status.is-success { background: #e4f7e8; color: #16803c; }
.form-status.is-error { background: #fdecec; color: #c81e1e; }

.auth { display: grid; grid-template-columns: 480px minmax(0, 1fr); min-height: 580px; }
.auth__art { position: relative; overflow: hidden; background: #111; color: #fff; }
.auth__art img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.auth__art::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.7)); }
.auth__art-body { position: relative; z-index: 2; height: 100%; padding: 40px 34px; display: flex; flex-direction: column; justify-content: space-between; }
.auth__art-body h2 { font-size: 30px; font-style: italic; line-height: 1.2; }
.auth__art-body h2 u { text-decoration-color: var(--color-accent); text-decoration-thickness: 4px; text-underline-offset: 6px; }
.auth__art-list { display: grid; gap: 16px; }
.auth__art-list li { display: flex; gap: 12px; align-items: center; }
.auth__art-list .ico { width: 22px; height: 22px; }
.auth__art-list strong { display: block; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.auth__art-list span { font-size: 10px; color: #d2d2d2; letter-spacing: .04em; text-transform: uppercase; }
.auth__panel { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 40px; background: #fff; align-content: start; }
.auth__panel h1 { font-size: 26px; }
.auth__panel > div > p { margin-top: 6px; font-size: 12px; color: var(--color-muted); }
.auth form { margin-top: 20px; }
.auth__meta { display: flex; align-items: center; justify-content: space-between; margin: 4px 0 16px; font-size: 11.5px; }
.auth__meta a { text-decoration: underline; }
.social-sep { display: flex; align-items: center; gap: 12px; margin: 18px 0 14px; font-size: 10px; letter-spacing: .08em; color: var(--color-muted); text-transform: uppercase; }
.social-sep::before, .social-sep::after { content: ''; flex: 1; height: 1px; background: var(--color-line); }
.social-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.social-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 40px; border: 1px solid var(--color-line); border-radius: var(--radius-sm); font-size: 12px; font-weight: 500; }
.social-btn:hover { border-color: #111; }
.social-btn .ico { width: 16px; height: 16px; }
.social-btn--google .ico { color: #4285f4; }
.social-btn--facebook .ico { color: #1877f2; }
.social-btn--apple .ico { color: #111; }
.benefits { display: grid; gap: 16px; margin-top: 18px; }
.benefits li { display: flex; align-items: center; gap: 12px; font-size: 12.5px; }
.benefits .ico { width: 19px; height: 19px; color: #111; }
.auth-usp { border-top: 1px solid var(--color-line); background: #fff; }
.auth-usp__inner { display: flex; align-items: center; justify-content: space-around; gap: 20px; height: 88px; }
.auth-usp__item { display: flex; align-items: center; gap: 12px; }
.auth-usp__item .ico { width: 24px; height: 24px; color: #111; }
.auth-usp__item strong { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.auth-usp__item span { font-size: 10.5px; color: var(--color-muted); }
.auth-brush { background: #0a0a0a; padding: 26px 0; display: grid; place-items: center; }
.auth-brush img { width: 320px; }

.register { display: grid; grid-template-columns: minmax(0, 1fr) 516px; gap: 0; border: 1px solid var(--color-line); border-radius: 4px; overflow: hidden; margin: 22px 0; }
.register__form { padding: 34px; }
.register__form .eyebrow { font-size: 10px; font-weight: 600; letter-spacing: .18em; color: var(--color-muted); text-transform: uppercase; }
.register__form h1 { margin-top: 10px; font-size: 27px; }
.register__form > p { margin-top: 8px; font-size: 12.5px; color: #4a4a4a; max-width: 460px; }
.register__art { position: relative; color: #fff; }
.register__art img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.register__why { position: absolute; left: 20px; right: 20px; bottom: 20px; z-index: 2; padding: 20px; background: rgba(8,8,8,.82); border-radius: 4px; }
.register__why h2 { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.register__why ul { display: grid; gap: 14px; margin-top: 14px; }
.register__why li { display: flex; gap: 12px; align-items: flex-start; }
.register__why .ico { width: 20px; height: 20px; margin-top: 2px; }
.register__why strong { display: block; font-size: 12.5px; font-weight: 600; }
.register__why span { font-size: 10.5px; color: #cfcfcf; }
.register__art-script { position: absolute; right: 24px; top: 22px; z-index: 2; width: 150px; }

/* ========================================
   13. FOOTER
======================================== */
.feature-strip { background: #0a0a0a; color: #fff; }
.feature-strip__inner {
  display: flex; align-items: center; gap: 26px; min-height: 60px;
  width: 100%; max-width: calc(var(--wrap) + var(--gutter) * 2);
  margin-inline: auto; padding-inline: var(--gutter);
}
.filters-toggle { display: none; }
.feature-strip__item { display: flex; align-items: center; gap: 12px; }
.feature-strip__item + .feature-strip__item { padding-left: 26px; border-left: 1px solid #262626; }
.feature-strip__item .ico { width: 22px; height: 22px; stroke-width: 1.5; }
.feature-strip__item img { width: 26px; }
.feature-strip__item strong { display: block; font-size: 10px; font-weight: 700; letter-spacing: .05em; }
.feature-strip__item span { display: block; font-size: 9px; letter-spacing: .04em; color: #b4b4b4; }
.feature-strip__brush { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.feature-strip__brush img { width: 42px; }
.brush {
  display: inline-block; padding: 8px 20px;
  background: var(--color-accent);
  color: #fff; font-size: 13px; font-weight: 700; font-style: italic; letter-spacing: .06em;
  clip-path: polygon(3% 12%, 97% 0%, 100% 78%, 6% 100%);
}

.site-footer { background: #0a0a0a; color: #cfcfcf; }
.site-footer__inner {
  display: grid; grid-template-columns: 264px 146px 232px minmax(0, 1fr) 126px;
  padding-block: 17px 26px;
  width: 100%; max-width: calc(1166px + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter);
}
.footer-brand img { width: 174px; }
.footer-brand p { margin-top: 8px; font-size: 11px; font-weight: 500; letter-spacing: .04em; color: #fff; line-height: 16px; }
.footer-col h2, .footer-join h2 { font-size: 8.6px; font-weight: 700; letter-spacing: .06em; color: #fff; margin-bottom: 9px; }
.footer-col ul { display: grid; }
.footer-col a { display: block; font-size: 10.4px; line-height: 17.3px; color: #bdbdbd; }
.footer-col a:hover { color: #fff; }
.site-footer__inner > :nth-child(3) { border-left: 1px solid #262626; padding-left: 62px; }
.site-footer__inner > :nth-child(4) { border-left: 1px solid #262626; padding-left: 64px; }
.footer-join p { font-size: 9.9px; line-height: 17.3px; color: #bdbdbd; }
.subscribe { display: flex; margin-top: 2px; width: 249px; max-width: 100%; }
.subscribe input { flex: 1; min-width: 0; height: 23px; padding: 0 10px; border: 0; border-radius: 2px 0 0 2px; background: #202020; color: #fff; font-size: 10.5px; }
.subscribe input::placeholder { color: #8c8c8c; }
.subscribe input:focus { outline: none; box-shadow: inset 0 0 0 1px #4a4a4a; }
.subscribe button { height: 23px; padding: 0 14px; border-radius: 0 2px 2px 0; background: var(--color-accent); color: #fff; font-size: 10.5px; font-weight: 600; white-space: nowrap; }
.subscribe button:hover { background: var(--color-accent-dark); }
.subscribe__msg { margin-top: 6px; font-size: 10px; color: #8fdc9f; }
.subscribe__msg:empty { display: none; }
.socials { display: flex; gap: 19px; margin-top: 24px; }
.socials a { display: grid; place-items: center; color: #d8d8d8; }
.socials a:hover { color: var(--color-accent); }
.socials .ico { width: 14px; height: 14px; }
.footer-brush { width: 125px; justify-self: end; align-self: start; margin-top: 24px; }

/* ========================================
   14. RESPONSIVE
======================================== */
body.nav-open { overflow: hidden; }

@media (max-width: 1220px) {
  .topbar--promo .topbar__arrow:nth-of-type(1) { left: calc(50% - 130px); }
  .topbar--promo .topbar__arrow:nth-of-type(2) { left: calc(50% + 118px); }
  .main-nav ul { gap: 18px; }
  .search input { width: 170px; }
  .pdp { grid-template-columns: 64px minmax(0, 1fr) minmax(0, 1fr); }
  .pdp-side { grid-column: 1 / -1; grid-template-columns: repeat(2, 1fr); }
  .tab-body { grid-template-columns: minmax(0, 1fr) 220px; }
  .tab-body .promo-wide { grid-column: 1 / -1; }
  .confirm__art { width: 44%; }
  .order-card__grid { grid-template-columns: 190px 150px 110px minmax(0, 1fr); }
  .order-card__actions { grid-column: 1 / -1; grid-auto-flow: column; justify-content: end; }
}

@media (max-width: 1024px) {
  :root { --gutter: 20px; --header-h: 56px; }

  .site-header__inner,
  .site-header--compact .site-header__inner { gap: 12px; }
  .brand img,
  .site-header--compact .brand img { width: 150px; }

  .main-nav {
    position: fixed; inset: 0 0 0 auto; z-index: 80;
    width: min(320px, 86vw); padding: 88px 24px 40px;
    background: #0d0d0d;
    transform: translateX(100%); visibility: hidden;
    transition: transform .35s var(--ease), visibility .35s;
    overflow-y: auto;
  }
  .nav-open .main-nav { transform: none; visibility: visible; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav li + li { border-top: 1px solid #1e1e1e; }
  .main-nav a { padding: 14px 0; font-size: 14px; letter-spacing: .08em; }
  .main-nav a::after { display: none; }
  .nav-toggle { display: block; }
  body.nav-open::before {
    content: '';
    position: fixed; inset: 0; z-index: 70;
    background: rgba(0, 0, 0, .5);
  }
  .search input { width: 140px; }
  .topbar { font-size: 10px; }
  .topbar__tagline, .topbar__item + .topbar__sep, .topbar__item:nth-of-type(2) { display: none; }
  .topbar--promo .topbar__inner { justify-content: center; }
  .topbar--promo .topbar__promo { position: static; }
  .topbar--promo .topbar__arrow { display: none; }
  .topbar--promo .topbar__links { display: none; }

  .hero { height: auto; min-height: 400px; display: flex; align-items: center; }
  .hero::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.42), rgba(0,0,0,.28) 45%, rgba(0,0,0,.55));
    pointer-events: none;
  }
  .hero__inner { width: 100%; display: flex; align-items: center; justify-content: center; }
  .hero__content {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 16px;
    padding: 48px 12px 44px;
    width: 100%;
  }
  .hero__eyebrow, .hero__logo, .hero__tagline, .hero__cta { position: static; width: auto; left: auto; top: auto; }
  .hero__logo { width: min(72vw, 280px); margin-inline: auto; }
  .hero__eyebrow { letter-spacing: .22em; font-size: 11px; }
  .hero__tagline { line-height: 1.5; font-size: 13px; letter-spacing: .14em; }
  .hero__cta { width: auto; height: 40px; padding: 0 22px; font-size: 12px; }
  .hero__dots { display: none; }

  .usp__inner {
    height: auto; padding: 22px 0;
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 12px; justify-items: center;
  }
  .usp__item { flex-direction: column; text-align: center; gap: 8px; }
  .usp__item strong { font-size: 10.5px; }
  .usp__item span { font-size: 9.5px; }

  .section { padding-top: 32px; }
  .section__head {
    flex-direction: column; align-items: center; text-align: center;
    height: auto; gap: 10px; margin-bottom: 20px;
  }
  .section__head .rule { display: none; }
  .filters { justify-content: center; flex-wrap: wrap; gap: 8px 16px; }
  .filters button { font-size: 11px; }

  .join { height: 240px; }
  .join__body { left: 0; right: 0; bottom: 28px; text-align: center; padding: 0 20px; }
  .join__body .btn { margin-inline: auto; }

  .page-hero { min-height: 200px; text-align: center; }
  .page-hero__inner { padding-block: 36px; display: flex; flex-direction: column; align-items: center; }
  .page-hero__text { max-width: 36em; }
  .page-hero .breadcrumb { justify-content: center; }
  .page-banner { min-height: 140px; text-align: center; }
  .page-banner__inner { padding-block: 28px; display: flex; flex-direction: column; align-items: center; }
  .page-banner__art { display: none; }
  .dash-hero__inner { padding: 22px 16px; justify-content: center; text-align: center; flex-direction: column; }
  .dash-hero__art { display: none; }

  .trending { grid-template-columns: 1fr; }
  .trending .join { margin-top: 0; height: 240px; }
  .trending__grid { grid-template-columns: repeat(4, 1fr); }
  .product-grid, .related__grid { grid-template-columns: repeat(4, 1fr); }
  .shop-layout { grid-template-columns: 170px minmax(0, 1fr); gap: 20px; }
  .cart-layout, .checkout-layout, .suggest__layout, .dash-grid, .confirm-grid, .qr-layout { grid-template-columns: minmax(0, 1fr); }
  .account { grid-template-columns: 1fr; padding-block: 18px 28px; gap: 18px; }
  .account-nav { border-right: 0; border-bottom: 1px solid var(--color-line); padding: 0 0 16px; }
  .account-nav ul {
    display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px;
    -webkit-overflow-scrolling: touch; scrollbar-width: thin;
  }
  .account-nav li { flex: none; }
  .account-nav li a {
    white-space: nowrap; height: 38px; padding: 0 14px;
    background: var(--color-soft); font-size: 12.5px;
  }
  .account-user { padding-bottom: 12px; }
  .account-brush { display: none; }
  .account-head h1 { font-size: 26px; }
  .account-head--row { flex-wrap: wrap; gap: 14px; }
  .account-tools { width: 100%; flex-wrap: wrap; justify-content: stretch; gap: 10px; }
  .account-tools .select, .order-search { min-width: 0; flex: 1 1 180px; width: auto; }
  .account-tools .select select { width: 100%; }
  .order-search { min-width: 0; }
  .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .order-card { padding: 14px; }
  .order-card__grid { grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
  .order-card__grid > :first-child,
  .order-track, .order-alert, .order-card__actions { grid-column: 1 / -1; }
  .order-card__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .order-card__actions .btn { width: 100%; height: 36px; }
  .wishlist-grid, .suggest__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .qr-card { grid-template-columns: 110px minmax(0, 1fr); }
  .qr-card__code, .qr-card__actions { grid-column: 2; }
  .qr-head-btn { width: 100%; }
  .tabs-line { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .tabs-line button { flex: none; }
  .radio-row { flex-wrap: wrap; gap: 12px 18px; }
  .details-layout, .addr-layout { grid-template-columns: 1fr; }

  .auth { grid-template-columns: 1fr; }
  .auth__art { min-height: 280px; }
  .register { grid-template-columns: 1fr; }
  .register__art { min-height: 380px; }
  .confirm-cards { grid-template-columns: repeat(2, 1fr); }
  .confirm-card:nth-child(3) { border-left: 0; }
  .confirm-card:nth-child(n+3) { border-top: 1px solid var(--color-line); }
  .confirm__art { display: none; }
  .confirm__tick, .confirm h1, .confirm > p, .confirm__brush { margin-right: 0; }
  .confirm__tick { margin: 0 auto 14px; }
  .confirm__brush { margin: 16px auto 0; }
  .site-footer__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 24px; padding-block: 32px 28px; }
  .site-footer__inner > :nth-child(3), .site-footer__inner > :nth-child(4) { border-left: 0; padding-left: 0; }
  .footer-brush { grid-column: 1 / -1; margin-top: 0; justify-self: start; }
}

@media (max-width: 860px) {
  .hero { height: auto; min-height: 380px; display: flex; align-items: center; }
  .hero::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.42), rgba(0,0,0,.28) 45%, rgba(0,0,0,.55));
    pointer-events: none;
  }
  .hero__inner { width: 100%; display: flex; align-items: center; justify-content: center; }
  .hero__content {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 16px;
    padding: 48px 12px 44px;
    width: 100%;
  }
  .hero__eyebrow, .hero__logo, .hero__tagline, .hero__cta { position: static; width: auto; left: auto; top: auto; }
  .hero__logo { width: min(72vw, 280px); margin-inline: auto; }
  .hero__eyebrow { letter-spacing: .22em; font-size: 11px; }
  .hero__tagline { line-height: 1.5; font-size: 13px; letter-spacing: .14em; }
  .hero__cta { width: auto; height: 40px; padding: 0 22px; font-size: 12px; }
  .hero__dots { display: none; }
  .topbar--promo .topbar__inner { justify-content: center; }
  .topbar--promo .topbar__promo { position: static; }
  .topbar--promo .topbar__arrow { display: none; }
  .topbar--promo .topbar__links { display: none; }

  .usp__inner {
    height: auto; padding: 22px 0;
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 12px; justify-items: center;
  }
  .usp__item { flex-direction: column; text-align: center; gap: 8px; }
  .usp__item strong { font-size: 10.5px; }
  .usp__item span { font-size: 9.5px; }

  .section { padding-top: 32px; }
  .section__head {
    flex-direction: column; align-items: center; text-align: center;
    height: auto; gap: 10px; margin-bottom: 20px;
  }
  .section__head .rule { display: none; }
  .filters { justify-content: center; flex-wrap: wrap; gap: 8px 16px; }
  .filters button { font-size: 11px; }

  .join { height: 240px; }
  .join__body { left: 0; right: 0; bottom: 28px; text-align: center; padding: 0 20px; }
  .join__body .btn { margin-inline: auto; }

  .page-hero { min-height: 200px; text-align: center; }
  .page-hero__inner { padding-block: 36px; display: flex; flex-direction: column; align-items: center; }
  .page-hero__text { max-width: 36em; }
  .page-hero .breadcrumb { justify-content: center; }
  .page-banner { min-height: 140px; text-align: center; }
  .page-banner__inner { padding-block: 28px; display: flex; flex-direction: column; align-items: center; }
  .page-banner__art { display: none; }
  .dash-hero__inner { padding: 22px 16px; justify-content: center; text-align: center; flex-direction: column; }
  .dash-hero__art { display: none; }
}

@media (max-width: 720px) {
  :root { --gutter: 16px; }
  body { font-size: 14px; }
  .topbar { --topbar-h: 32px; font-size: 10.5px; }
  .topbar--promo { --topbar-h: 32px; }
  .topbar__links a:not(:first-child), .topbar__sep { display: none; }
  .search { display: none; }
  .header-tools { gap: 10px; }

  .hero { min-height: 420px; }
  .hero__content { padding: 52px 8px 48px; gap: 14px; }
  .hero__logo { width: min(78vw, 240px); }

  .usp__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 24px 0; gap: 20px 10px; }
  .categories { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .category { height: 140px; }
  .category__body { left: 14px; right: 14px; bottom: 14px; }
  .category__body h3 { font-size: 16px; }

  .trending__grid, .product-grid, .related__grid, .suggest__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 12px; }
  .product-card { text-align: center; }
  .product-card__name { font-size: 11.5px; margin-top: 10px; }
  .product-card__price { font-size: 13px; }
  .swatches, .sizes { justify-content: center; }

  .home-banners { grid-template-columns: 1fr; gap: 10px; margin-top: 24px; padding-bottom: 32px; }
  .home-banner { height: auto; min-height: 92px; }
  .home-banner__body {
    flex-direction: column; text-align: center; justify-content: center;
    padding: 18px 16px; gap: 10px;
  }
  .home-banner__body p { font-size: 13px; }
  .home-banner .btn { align-self: center; height: 32px; font-size: 11px; padding: 0 16px; }

  .page-hero h1 { font-size: 32px; }
  .shop-layout { grid-template-columns: 1fr; padding-block: 20px 32px; }
  .shop-head { flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
  .shop-filters { display: none; }
  .shop-filters.is-open {
    display: block; margin-bottom: 20px; padding: 16px;
    border: 1px solid var(--color-line); border-radius: var(--radius);
  }
  .filters-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    height: 32px; padding: 0 14px;
    border: 1px solid var(--color-line); border-radius: var(--radius-sm);
    font-size: 11.5px; font-weight: 600;
  }

  .pdp { grid-template-columns: 1fr; gap: 16px; padding-block: 12px 28px; }
  .pdp-thumbs { grid-auto-flow: column; grid-auto-columns: 64px; overflow-x: auto; gap: 10px; padding-bottom: 4px; }
  .pdp-side { grid-template-columns: 1fr; }
  .pdp-info { text-align: left; }
  .pdp-info h1 { font-size: 24px; }
  .pdp-usp { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; justify-content: stretch; }
  .pdp-usp div { justify-items: center; text-align: center; }
  .pdp-usp strong, .pdp-usp span { white-space: normal; }
  .colour-row, .size-row { justify-content: flex-start; }
  .buy-row { grid-template-columns: 88px minmax(0, 1fr); }
  .tab-nav { gap: 18px; overflow-x: auto; }
  .tab-body { grid-template-columns: 1fr; padding: 16px 0 24px; }
  .related { padding-bottom: 32px; }

  .cart-layout, .checkout-layout { gap: 20px; padding-block: 16px 32px; }
  .cart-table__head { display: none; }
  .cart-row { grid-template-columns: 1fr auto; gap: 10px; padding: 14px; }
  .cart-row__price { display: none; }
  .cart-item { grid-column: 1 / -1; }
  .qty--sm { margin: 0; }
  .cart-row__total { text-align: right; }
  .cart-actions { flex-wrap: wrap; gap: 12px; }
  .summary, .panel { padding: 16px; }
  .checkout-head { flex-direction: column; align-items: center; text-align: center; padding: 20px 0 16px; }
  .steps { max-width: none; margin-bottom: 20px; }
  .step span { font-size: 9px; }
  .form-row, .form-row--3 { grid-template-columns: 1fr; }

  .account { grid-template-columns: 1fr; padding-block: 16px 32px; gap: 16px; }
  .account-nav { border-right: 0; border-bottom: 1px solid var(--color-line); padding: 0 0 14px; }
  .account-user { align-items: center; }
  .account-user img { width: 48px; height: 48px; }
  .account-brush { display: none; }
  .account-head { text-align: left; }
  .account-head--row { flex-direction: column; align-items: stretch; text-align: left; }
  .account-head h1 { font-size: 24px; }
  .account-head p { max-width: none; }
  .account-tools { width: 100%; }
  .account-tools .select, .order-search { flex: 1 1 100%; }
  .address-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .stat { padding: 14px; }
  .stat strong { font-size: 20px; }
  .wishlist-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .confirm-cards { grid-template-columns: 1fr; }
  .confirm-card + .confirm-card { border-left: 0; border-top: 1px solid var(--color-line); }
  .order-card { padding: 14px; overflow: hidden; }
  .order-card__grid { grid-template-columns: 1fr; gap: 14px; text-align: left; }
  .order-card__grid > :first-child,
  .order-thumbs, .order-card__total, .order-track, .order-alert, .order-card__actions { grid-column: 1; }
  .order-thumbs { justify-content: flex-start; }
  .order-card__actions { grid-auto-flow: row; grid-template-columns: 1fr; }
  .order-card__actions .btn { width: 100%; }
  .order-track { overflow-x: auto; padding-top: 4px; }
  .order-track__step small { font-size: 8px; }
  .order-track__step em { font-size: 7.5px; max-width: 70px; }
  .order-alert { text-align: left; }
  .address-card__top { flex-direction: column; align-items: stretch; }
  .address-card__actions { justify-content: flex-start; }
  .wish-note { flex-direction: column; text-align: center; }
  .wish-note .btn { margin-left: 0; width: 100%; }
  .card__head { flex-wrap: wrap; gap: 8px; }
  .dash-hero { text-align: center; }
  .dash-hero__inner { min-height: 140px; padding: 24px 16px; }
  .dash-hero h1 { font-size: 22px; }
  .dash-hero img.avatar { width: 72px; height: 72px; }

  .auth__panel { grid-template-columns: 1fr; gap: 28px; padding: 28px 20px; text-align: left; }
  .auth__art-body { padding: 28px 22px; }
  .register { margin: 16px 0 24px; }
  .register__form { padding: 24px 20px; text-align: left; }
  .social-row { grid-template-columns: 1fr; }
  .auth-usp__inner { height: auto; padding: 20px 0; flex-wrap: wrap; justify-content: center; gap: 16px; }
  .auth-usp__item { flex-direction: column; text-align: center; }

  .site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center; text-align: center;
    gap: 28px; padding-block: 36px 28px;
  }
  .footer-brand, .footer-join, .footer-col, .footer-brush { grid-column: 1; justify-self: center; }
  .footer-col ul { justify-items: center; }
  .footer-brush { margin-top: 0; }
  .subscribe { margin-inline: auto; width: min(100%, 320px); }
  .subscribe input, .subscribe button { height: 40px; font-size: 13px; }
  .socials { justify-content: center; margin-top: 18px; }
  .footer-col h2, .footer-join h2 { font-size: 11px; letter-spacing: .12em; }

  .feature-strip__inner {
    flex-wrap: wrap; justify-content: center; text-align: center;
    gap: 16px 12px; padding: 20px var(--gutter);
  }
  .feature-strip__item { flex: 1 1 140px; justify-content: center; flex-direction: column; gap: 8px; }
  .feature-strip__item + .feature-strip__item { padding-left: 0; border-left: 0; }
  .feature-strip__brush { margin-left: 0; width: 100%; justify-content: center; }

  .qr-layout { gap: 16px; }
  .qr-card { grid-template-columns: 1fr; }
  .qr-card > img { width: min(100%, 220px); height: auto; justify-self: start; }
  .qr-card__code, .qr-card__actions { grid-column: 1; width: 100%; }
  .pagination { margin-top: 22px; }
}

@media (max-width: 420px) {
  :root { --gutter: 16px; }
  .usp__inner { grid-template-columns: 1fr 1fr; }
  .page-hero h1, .page-banner h1, .confirm h1, .checkout-head h1, .account-head h1 { font-size: 26px; }
  .qr-card { grid-template-columns: 1fr; text-align: left; justify-items: stretch; }
  .qr-card > img { width: 100%; height: auto; max-height: 200px; }
  .qr-card__code, .qr-card__actions { grid-column: 1; width: 100%; }
  .buy-row { grid-template-columns: 1fr; }
  .qty { max-width: 140px; }
  .pdp-links { justify-content: space-between; gap: 12px; }
  .order-card__actions { grid-template-columns: 1fr; }
  .stat { flex-direction: column; gap: 8px; }
}

/* ========================================
   15. MOTION
======================================== */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
