/* ═══════════════════════════════════════════════════════════════
   Kozmoz Studio — Main stylesheet
   Performance: system fonts only, CSS custom properties, no framework
   ═══════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --bg:      #f6f6f6;
  --surface: #ffffff;
  --fg:      #1a1a1a;
  --muted:   #6b6b6b;
  --border:  #e2e2e2;
  --accent:  #e53030;
  --accent-hover: #c42020;
  --green:   #16a34a;

  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --container: 1280px;
  --gutter:    28px;
  --radius:    4px;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: #fff;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
p { text-wrap: pretty; }
ul, ol { list-style: none; }

/* ── LAYOUT ──────────────────────────────────────────────────── */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

/* ── ANNOUNCEMENT BAR ────────────────────────────────────────── */
.ann-bar {
  background: #1a1a1a;
  color: #e0e0e0;
  text-align: center;
  padding: 8px 20px;
  font-size: 12px;
  letter-spacing: .5px;
}
a.ann-bar--link {
  display: block;
  text-decoration: none;
  transition: background .15s;
}
a.ann-bar--link:hover { background: #2a2a2a; }

/* ── HEADER ──────────────────────────────────────────────────── */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}
.header-inner {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  align-items: center;
  height: 58px;
}
.logo { display: flex; align-items: center; line-height: 1; }
.logo-img { height: 36px; width: auto; display: block; }
.logo-text { font-size: 17px; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase; color: #1a1a1a; }
/* WordPress custom-logo output */
.logo .custom-logo-link { display: flex; align-items: center; }
.logo .custom-logo { height: 36px; width: auto; display: block; }

.header-nav { display: flex; gap: 26px; justify-content: center; }
.header-nav a { font-size: 13px; font-weight: 500; color: #333; white-space: nowrap; transition: color .15s; }
.header-nav a:hover,
.header-nav .current-menu-item > a { color: var(--accent); }

.header-actions { display: flex; gap: 2px; justify-content: flex-end; align-items: center; }
.icon-btn {
  padding: 9px; color: #333;
  transition: color .15s;
  position: relative; display: flex; align-items: center;
}
.icon-btn:hover { color: var(--accent); }
.cart-badge {
  position: absolute; top: 4px; right: 3px;
  background: var(--accent); color: #fff;
  border-radius: 50%; width: 14px; height: 14px;
  font-size: 9px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Search overlay */
.search-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.6);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 72px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  animation: overlayIn .18s ease;
}
.search-overlay[hidden] { display: none; }
@keyframes overlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.search-overlay-inner {
  width: min(640px, 100% - 40px);
  background: #fff;
  padding: 0;
  position: relative;
  animation: panelIn .2s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Search form */
.kozmoz-search-form { display: block; }
.search-field-wrap {
  display: flex; align-items: center;
  border: none;
}
.search-field-icon {
  flex-shrink: 0;
  margin-left: 20px;
  color: #aaa;
  pointer-events: none;
}
.search-overlay-inner .search-field {
  flex: 1;
  border: none; outline: none;
  padding: 22px 16px;
  font-size: 16px;
  font-family: var(--font-body);
  color: var(--fg);
  background: transparent;
  min-width: 0;
}
.search-overlay-inner .search-field::placeholder { color: #bbb; }
.search-submit {
  flex-shrink: 0;
  display: flex; align-items: center; gap: 8px;
  background: #1a1a1a; color: #fff;
  border: none; padding: 0 22px;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; height: 66px;
  transition: background .15s;
  white-space: nowrap;
}
.search-submit:hover { background: var(--accent); }
.search-submit svg { transition: transform .2s; }
.search-submit:hover svg { transform: translateX(3px); }

/* Hint row */
.search-hint {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px 14px;
  border-top: 1px solid var(--border);
  font-size: 11.5px; color: #bbb;
}
.search-hint-label { font-weight: 600; letter-spacing: .5px; margin-right: 4px; }
.search-hint-tag {
  display: inline-flex; align-items: center;
  background: #f4f4f4; border: 1px solid var(--border);
  padding: 3px 10px; font-size: 11px; color: #777;
  cursor: pointer; transition: all .15s; border-radius: 2px;
}
.search-hint-tag:hover { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }

/* Close button */
.search-close {
  position: absolute; top: -42px; right: 0;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: color .15s;
  background: none; border: none; cursor: pointer; padding: 0;
}
.search-close:hover { color: #fff; }

/* ── BREADCRUMB ──────────────────────────────────────────────── */
.breadcrumb { background: #fff; border-bottom: 1px solid #f0f0f0; }
.breadcrumb-inner,
.woocommerce-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: #888;
  padding: 12px var(--gutter);
  max-width: var(--container); margin-inline: auto;
}
.breadcrumb-inner a,
.woocommerce-breadcrumb a { color: #888; transition: color .15s; }
.breadcrumb-inner a:hover,
.woocommerce-breadcrumb a:hover { color: var(--fg); }
.breadcrumb-sep { color: #ccc; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-shop, .btn-atc, .btn-buy-now, .btn-checkout, .btn-place-order {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: background .15s;
}
.btn-shop {
  background: var(--accent); color: #fff;
  padding: 13px 28px; border: none;
}
.btn-shop:hover { background: var(--accent-hover); }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--accent);
  padding: 11px 26px; font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: opacity .15s;
}
.btn-white:hover { opacity: .92; }
.btn-checkout, .btn-place-order {
  width: 100%; background: var(--accent); color: #fff;
  justify-content: center; padding: 0; height: 50px;
  font-size: 14px; font-weight: 800; letter-spacing: 1.5px;
  border: none;
}
.btn-checkout:hover,
.btn-place-order:hover { background: var(--accent-hover); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero-banner { background: #0c0c0c; display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; overflow: hidden; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 60px 52px 60px 40px; position: relative; }
.hero-left::before { content: ''; position: absolute; left: 0; top: 20%; bottom: 20%; width: 3px; background: linear-gradient(180deg, transparent, #e53030, transparent); }
.hero-collection-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(229,48,48,.12); border: 1px solid rgba(229,48,48,.28); color: #f87171; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; padding: 6px 14px; width: fit-content; margin-bottom: 26px; }
.hero-headline { font-size: clamp(52px, 6.5vw, 92px); font-weight: 900; line-height: .88; text-transform: uppercase; color: #fff; letter-spacing: -2.5px; margin-bottom: 22px; }
.hero-headline .accent-word { color: #e53030; }
.hero-headline .outline-word { -webkit-text-stroke: 2.5px #ffffff; color: transparent; }
.hero-tagline { font-size: 13.5px; color: #777; max-width: 320px; line-height: 1.75; margin-bottom: 34px; }
.hero-cta-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 32px; }
.btn-hero-primary { display: inline-flex; align-items: center; gap: 10px; background: #e53030; color: #fff; padding: 14px 28px; font-size: 11.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; transition: background .15s, transform .1s; }
.btn-hero-primary:hover { background: #c42020; }
.btn-hero-ghost { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.6); padding: 14px 22px; font-size: 11.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; transition: all .15s; }
.btn-hero-ghost:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.hero-proof { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: #555; }
.hero-proof-stars { color: #f59e0b; letter-spacing: 1px; }
.hero-right { display: grid; grid-template-columns: 3fr 2fr; gap: 3px; }
.hero-cell-large,
.hero-cell-small { background: #1a1a1a; overflow: hidden; }
.hero-cell-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 3px; }
.hero-cell-large img,
.hero-cell-small img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
/* Marquee */
.hero-marquee { background: #e53030; overflow: hidden; padding: 11px 0; }
.marquee-track { display: flex; width: max-content; animation: scroll-marquee 28s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { font-size: 10.5px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #fff; padding: 0 0 0 44px; white-space: nowrap; }
.marquee-sep { padding-left: 44px; opacity: .45; color: #fff; font-size: 10px; }
@keyframes scroll-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── CATEGORY STRIP ──────────────────────────────────────────── */
.cat-strip { background: #fff; border-bottom: 1px solid var(--border); padding: 14px 0; }
.cat-list { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.cat-list::-webkit-scrollbar { display: none; }
.cat-pill {
  padding: 7px 18px; border: 1px solid #ddd;
  font-size: 12.5px; font-weight: 500; color: #555;
  background: #fff; white-space: nowrap; cursor: pointer;
  transition: all .15s; border-radius: 2px;
}
.cat-pill:hover { background: #f0f0f0; border-color: #bbb; }
.cat-pill.active { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }

/* ── SECTION HEADER ──────────────────────────────────────────── */
.sec-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.sec-title-row { display: flex; align-items: center; gap: 10px; }
.sec-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.sec-title { font-size: 19px; font-weight: 700; color: var(--fg); }
.view-all-link { font-size: 13px; color: #666; display: flex; align-items: center; gap: 4px; transition: color .15s; }
.view-all-link:hover { color: var(--accent); }

/* ── PRODUCT GRID (shared) ───────────────────────────────────── */
.products-section { padding: 36px 0 52px; }
.product-grid,
ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 0; margin: 0;
}

.product-card,
ul.products li.product {
  background: #f0f0f0;
  cursor: pointer; position: relative;
  transition: box-shadow .2s;
  list-style: none;
}
.product-card:hover,
ul.products li.product:hover { box-shadow: 0 4px 18px rgba(0,0,0,.11); }

.product-img-box {
  aspect-ratio: 1; background: #e8e8e8;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.product-img-box img,
.product-img-box .attachment-woocommerce_thumbnail {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s;
}
.product-card:hover .product-img-box img,
ul.products li.product:hover .product-img-box img { transform: scale(1.04); }
.product-img-placeholder { width: 100%; height: 100%; background: #ddd; }

.badge, .onsale {
  position: absolute; top: 8px; left: 8px;
  font-size: 9.5px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 7px; z-index: 2;
}
.badge-new, .onsale { background: var(--accent); color: #fff; }
.badge-sale { background: #f97316; color: #fff; }

.quick-add, .pcard-quick {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(20,20,20,.9); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 11px; text-align: center;
  transform: translateY(100%); transition: transform .2s;
}
.product-card:hover .quick-add,
ul.products li.product:hover .pcard-quick { transform: translateY(0); }

.product-info, .pcard-info {
  padding: 10px 12px 13px; background: #fff;
}
.product-name, .pcard-name {
  font-size: 12.5px; color: #333; line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  min-height: 35px;
}
.price-row, .pcard-price-row { display: flex; align-items: center; gap: 7px; }
.price-row .woocommerce-Price-amount,
.pcard-price-row .woocommerce-Price-amount,
.price { font-size: 14px; font-weight: 700; color: #1a1a1a; }
del .woocommerce-Price-amount,
.price-old { font-size: 12px; color: #aaa; text-decoration: line-through; font-weight: 400; }
ins { text-decoration: none; }
ins .woocommerce-Price-amount { color: var(--accent); }

.stars { display: flex; gap: 1px; margin-bottom: 4px; }
.star  { color: #f59e0b; font-size: 11px; }
.star-empty { color: #ddd; font-size: 11px; }
.review-count { font-size: 11px; color: #aaa; margin-left: 4px; }

/* ── BANNER STRIP ────────────────────────────────────────────── */
.banner-strip {
  background: var(--accent);
  padding: 28px 0; text-align: center;
}
.banner-strip h3 { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -.3px; margin-bottom: 10px; }
.banner-strip p  { font-size: 14px; color: rgba(255,255,255,.85); margin-bottom: 16px; }

/* ── CATALOG PAGE ────────────────────────────────────────────── */
.page-title-bar {
  background: #fff; padding: 28px 0 20px;
  text-align: center; border-bottom: 1px solid var(--border);
}
.page-title-bar h1 { font-size: 26px; font-weight: 800; letter-spacing: -.3px; }

.toolbar { background: #fff; border-bottom: 1px solid var(--border); padding: 11px 0; }
.toolbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.product-count { font-size: 13px; color: #888; }
.toolbar-right { display: flex; align-items: center; gap: 12px; }
.sort-label { font-size: 13px; color: #666; }

/* WooCommerce ordering select override */
.woocommerce-ordering select,
.sort-select {
  border: 1px solid #ddd; background: #fff;
  padding: 6px 28px 6px 10px; font-size: 13px; color: #333;
  cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 8px center;
  border-radius: 2px;
}
.woocommerce-ordering select:focus,
.sort-select:focus { outline: 1px solid var(--accent); }

.view-toggles { display: flex; gap: 2px; }
.view-btn {
  padding: 6px 8px; border: 1px solid #ddd; color: #888;
  background: #fff; cursor: pointer; transition: all .15s;
}
.view-btn.active { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }

.catalog-layout { display: flex; gap: 0; align-items: flex-start; }

/* Sidebar */
.sidebar { width: 220px; flex-shrink: 0; padding: 24px 24px 24px 0; }
.filter-group { margin-bottom: 22px; }
.filter-group-title {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #888;
  margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.filter-option {
  display: flex; align-items: center; gap: 8px; padding: 5px 0;
  cursor: pointer; font-size: 13px; color: #555; transition: color .15s;
}
.filter-option:hover { color: var(--fg); }
.filter-option input[type=checkbox] { accent-color: var(--accent); width: 14px; height: 14px; cursor: pointer; }
.filter-option input[type=checkbox]:checked + span { color: var(--fg); font-weight: 600; }
.filter-option .count { margin-left: auto; font-size: 11px; color: #bbb; }
.price-range { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.price-input {
  width: 72px; border: 1px solid #ddd;
  padding: 6px 8px; font-size: 12px; color: #333; border-radius: 2px;
}
.price-input:focus { outline: 1px solid var(--accent); border-color: var(--accent); }
.price-dash { color: #aaa; font-size: 12px; }

.catalog-main { flex: 1; min-width: 0; padding-top: 24px; padding-bottom: 64px; }

/* WooCommerce pagination */
.woocommerce-pagination, .pagination {
  display: flex; justify-content: center; align-items: center;
  padding: 36px 0 52px;
}
.woocommerce-pagination ul.page-numbers {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 4px; list-style: none; margin: 0; padding: 0;
}
.woocommerce-pagination ul.page-numbers li { display: flex; }
.woocommerce-pagination a.page-numbers,
.woocommerce-pagination span.page-numbers,
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 7px 12px; border: 1px solid #ddd;
  font-size: 13px; color: #555; background: #fff; transition: all .15s;
}
.woocommerce-pagination span.page-numbers.current,
.woocommerce-pagination a.page-numbers:hover {
  background: #1a1a1a; color: #fff; border-color: #1a1a1a;
}

/* ── SINGLE PRODUCT ──────────────────────────────────────────── */
.product-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 52px; padding: 32px 0 52px; align-items: flex-start;
}
.gallery-main {
  aspect-ratio: 1; background: #f5f5f5;
  overflow: hidden; margin-bottom: 10px; position: relative;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumbs { display: flex; gap: 8px; }
.thumb {
  width: 72px; height: 72px; background: #f0f0f0;
  border: 2px solid transparent; cursor: pointer;
  overflow: hidden; flex-shrink: 0; transition: border-color .15s;
  padding: 0;
}
.thumb:hover, .thumb.active { border-color: #1a1a1a; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info-col {}
.product-tag { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #888; margin-bottom: 8px; }
.product-title { font-size: 22px; font-weight: 800; line-height: 1.25; letter-spacing: -.3px; margin-bottom: 14px; color: #1a1a1a; }

.rating-row { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.rating-row .stars .star { font-size: 14px; }
.review-link { font-size: 13px; color: #2563eb; text-decoration: underline; cursor: pointer; }

.price-section {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid #f0f0f0;
}
.price-main { font-size: 24px; font-weight: 800; color: var(--accent); }
.price-compare { font-size: 15px; color: #aaa; text-decoration: line-through; }
.price-save { background: #fef2f2; color: var(--accent); font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 2px; }

.product-short-desc { font-size: 13.5px; color: #555; line-height: 1.7; margin-bottom: 18px; }

/* Promo bar (sale products) */
.promo-bar {
  display: flex; align-items: flex-start; gap: 10px;
  background: #fffbeb; border: 1px solid #fef08a;
  padding: 11px 14px; margin-bottom: 16px; border-radius: 2px;
}
.promo-bar-icon { font-size: 17px; flex-shrink: 0; line-height: 1.2; }
.promo-bar-text { font-size: 12.5px; color: #92400e; line-height: 1.5; }
.promo-bar-text strong { display: block; font-weight: 700; color: #78350f; margin-bottom: 1px; }

/* WooCommerce add-to-cart overrides */
.woocommerce-variation-add-to-cart,
form.cart {
  display: flex; gap: 10px; align-items: center;
  flex-wrap: wrap; margin-bottom: 12px;
}
/* Style WC's .quantity div like our .qty-control */
form.cart .quantity,
.woocommerce-variation-add-to-cart .quantity {
  display: flex; align-items: center;
  border: 1px solid #ddd; height: 44px; width: 110px; flex-shrink: 0;
}

/* Variable product attributes (size selector) */
.variations { width: 100%; margin-bottom: 12px; }
.variations tr { display: flex; flex-direction: column; margin-bottom: 16px; }
.variations .label label {
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; color: #555; margin-bottom: 8px; display: block;
}
.variations .value select { border: 1px solid #ddd; padding: 9px 12px; font-size: 13px; color: #1a1a1a; background: #fff; width: 100%; border-radius: 2px; cursor: pointer; }
.variations .value select:focus { outline: 1px solid var(--fg); }

/* ── Variation Swatches plugin (woo-variation-swatches) overrides ─────────── */
.variable-items-wrapper.button-variable-items-wrapper {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
  border: none !important;
  background: none !important;
}
.variable-item.button-variable-item {
  --wvs-single-product-item-width: auto;
  --wvs-single-product-item-height: 36px;
  --wvs-single-product-item-font-size: 12.5px;
  min-width: 44px !important;
  height: 36px !important;
  padding: 0 12px !important;
  border: 1px solid #ddd !important;
  border-radius: 2px !important;
  background: #fff !important;
  box-shadow: none !important;
  margin: 0 !important;
}
.variable-item.button-variable-item .variable-item-span-button {
  font-size: 12.5px !important;
  font-weight: 600 !important;
  color: #333 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}
.variable-item.button-variable-item:hover {
  border-color: #999 !important;
  background: #fff !important;
}
.variable-item.button-variable-item:hover .variable-item-span-button { color: #1a1a1a !important; }
.variable-item.button-variable-item.selected {
  background: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.variable-item.button-variable-item.selected .variable-item-span-button { color: #fff !important; }
.variable-item.button-variable-item.disabled {
  border-color: #eee !important;
  background: #fff !important;
  cursor: not-allowed !important;
  opacity: 1 !important;
}
.variable-item.button-variable-item.disabled .variable-item-span-button {
  color: #ccc !important;
  text-decoration: line-through !important;
}

.woocommerce-variation-price { margin-bottom: 12px; }

/* Qty + Add-to-cart row */
.qty-atc, .woocommerce div.product form.cart .qty-atc { display: flex; gap: 10px; margin-bottom: 12px; }
.qty-control {
  display: flex; align-items: center;
  border: 1px solid #ddd; height: 44px; width: 110px; flex-shrink: 0;
}
.qty-btn {
  width: 36px; height: 100%; display: flex; align-items: center; justify-content: center;
  color: #555; font-size: 18px; transition: background .15s; flex-shrink: 0;
}
.qty-btn:hover { background: #f5f5f5; }
.qty-num,
input.qty {
  flex: 1; text-align: center; font-size: 14px; font-weight: 600;
  color: #1a1a1a; border: none; outline: none; background: transparent;
  width: 100%;
}
/* Hide WC default qty arrows */
input.qty::-webkit-inner-spin-button,
input.qty::-webkit-outer-spin-button { -webkit-appearance: none; }
input.qty { -moz-appearance: textfield; }

.btn-atc, .single_add_to_cart_button {
  flex: 1; background: #1a1a1a; color: #fff; height: 44px;
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; cursor: pointer; transition: background .15s;
  border: none; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-atc:hover, .single_add_to_cart_button:hover { background: #333; }

.payment-icons {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 0 16px; border-bottom: 1px solid #f0f0f0;
  margin-bottom: 16px; flex-wrap: wrap;
}
.pay-chip {
  border: 1px solid #e0e0e0; padding: 4px 10px;
  font-size: 10px; font-weight: 700; color: #555;
  border-radius: 3px; display: flex; align-items: center; gap: 4px;
}
.secure-note { font-size: 11.5px; color: #888; display: flex; align-items: center; gap: 5px; width: 100%; }

.trust-row { display: flex; gap: 16px; padding: 14px 0; border-top: 1px solid #f0f0f0; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 12px; color: #555; }
.trust-item svg { color: #22c55e; flex-shrink: 0; }
.trust-check { color: #22c55e; font-size: 14px; font-weight: 900; flex-shrink: 0; line-height: 1; }

/* Share row */
.share-row {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 0; border-bottom: 1px solid #f0f0f0; flex-wrap: wrap;
}
.share-label { font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: #888; }
.share-btn {
  width: 30px; height: 30px; border-radius: 50%; background: #f5f5f5;
  display: flex; align-items: center; justify-content: center;
  color: #555; transition: background .15s, color .15s; border: 1px solid #eee;
  cursor: pointer; flex-shrink: 0;
}
.share-btn:hover { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }

/* Reviews (hardcoded) */
.reviews-section { background: #fafafa; border-top: 1px solid #f0f0f0; }
.section-sub { text-align: center; font-size: 13.5px; color: #888; margin-bottom: 36px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: #f9f9f9; padding: 20px; border: 1px solid #f0f0f0; }
.review-stars { display: flex; gap: 1px; margin-bottom: 6px; }
.review-star { color: #f59e0b; font-size: 13px; }
.reviewer-name { font-size: 13px; font-weight: 700; margin-bottom: 2px; color: #1a1a1a; }
.reviewer-meta { font-size: 11.5px; color: #aaa; margin-bottom: 8px; }
.review-text { font-size: 13px; color: #555; line-height: 1.65; }
.verified-badge { display: inline-flex; align-items: center; gap: 3px; font-size: 10.5px; color: #22c55e; font-weight: 600; margin-top: 6px; }

/* Accordion */
.accordion { border-top: 1px solid #f0f0f0; }
.accordion-item { border-bottom: 1px solid #f0f0f0; }
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 13px 0; font-size: 13.5px; font-weight: 600; color: #1a1a1a;
  cursor: pointer; background: none; border: none; text-align: left; transition: color .15s;
}
.accordion-trigger:hover { color: var(--accent); }
.accordion-icon { font-size: 18px; color: #999; transition: transform .2s; flex-shrink: 0; }
.accordion-body { display: none; padding: 0 0 16px; font-size: 13px; color: #555; line-height: 1.8; }
.accordion-body.open { display: block; }
.accordion-icon.open { transform: rotate(45deg); }
.accordion-trigger[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); }

/* Related products */
.related-section { background: #fff; }
.section { padding: 52px 0; }
.section-title { font-size: 20px; font-weight: 800; text-align: center; margin-bottom: 32px; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pcard-badge {
  position: absolute; top: 8px; left: 8px;
  font-size: 9.5px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; padding: 3px 7px; z-index: 2;
  background: var(--accent); color: #fff;
}

/* ── CART ────────────────────────────────────────────────────── */
.page-header { background: #fff; padding: 24px 0 18px; border-bottom: 1px solid var(--border); }
.page-header h1 { font-size: 24px; font-weight: 800; letter-spacing: -.3px; }
.page-header .item-count { font-size: 14px; color: #888; font-weight: 400; margin-top: 3px; }

.cart-page { padding: 28px 0 64px; background: var(--bg); }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: flex-start; }

.shipping-bar {
  background: #fff; border: 1px solid var(--border);
  padding: 14px 18px; margin-bottom: 18px;
}
.shipping-bar-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.shipping-bar-label { font-size: 13px; color: #333; }
.shipping-bar-label strong { color: #1a1a1a; }
.shipping-bar-amount { font-size: 13px; font-weight: 700; color: var(--accent); }
.progress-track { height: 4px; background: #f0f0f0; border-radius: 2px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--accent); border-radius: 2px; transition: width .4s ease; }

.cart-items-wrap { background: #fff; border: 1px solid var(--border); }
.cart-items-header {
  padding: 12px 18px; border-bottom: 1px solid #f5f5f5;
  display: flex; align-items: center; justify-content: space-between;
}
.cart-items-header h3 { font-size: 13px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: #888; }
.clear-cart-btn { font-size: 12px; color: #999; text-decoration: underline; cursor: pointer; transition: color .15s; }
.clear-cart-btn:hover { color: var(--accent); }

.cart-item {
  display: grid; grid-template-columns: 88px 1fr auto;
  gap: 14px; padding: 16px 18px; border-bottom: 1px solid #f5f5f5;
  position: relative;
}
.cart-item:last-of-type { border-bottom: none; }
.item-img { width: 88px; height: 88px; background: #f0f0f0; overflow: hidden; flex-shrink: 0; }
.item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.item-body { display: flex; flex-direction: column; gap: 5px; }
.item-brand { font-size: 10.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #aaa; }
.item-name { font-size: 13.5px; font-weight: 600; color: #1a1a1a; line-height: 1.35; }
.item-name a { color: inherit; }
.item-meta { font-size: 12px; color: #888; }
.item-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.item-price-col { text-align: right; }
.item-price { font-size: 14px; font-weight: 700; color: #1a1a1a; }
.item-unit-price { font-size: 11px; color: #aaa; margin-top: 2px; }

.item-remove {
  color: #bbb; padding: 4px; transition: color .15s; align-self: flex-start;
  flex-shrink: 0;
}
.item-remove:hover { color: var(--accent); }

.qty-control.cart-qty { height: 32px; width: auto; border: 1px solid #ddd; }
.qty-control.cart-qty .qty-btn { width: 30px; font-size: 16px; }
.qty-control.cart-qty .qty-num { width: 28px; }

.cart-actions {
  padding: 12px 18px; border-top: 1px solid #f5f5f5;
  display: flex; justify-content: flex-end;
}
.btn-update-cart {
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: #666; border: 1px solid #ddd;
  padding: 8px 16px; background: #fff; cursor: pointer; transition: all .15s;
}
.btn-update-cart:hover { border-color: #999; color: #333; }

/* Cart summary */
.cart-summary { position: sticky; top: 80px; }
.summary-block { background: #fff; border: 1px solid var(--border); padding: 18px; }
.summary-title { font-size: 13px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: #888; margin-bottom: 14px; }

.coupon-wrap { margin-bottom: 16px; }
.coupon-input-row { display: flex; }
.coupon-input {
  flex: 1; border: 1px solid #ddd; border-right: none;
  padding: 9px 12px; font-size: 13px; color: #1a1a1a; outline: none;
}
.coupon-input:focus { border-color: var(--accent); }
.coupon-input::placeholder { color: #bbb; }
.apply-btn {
  background: #1a1a1a; color: #fff; padding: 9px 14px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; cursor: pointer; border: none;
  white-space: nowrap; transition: background .15s;
}
.apply-btn:hover { background: #333; }

/* WC cart totals */
.woocommerce-cart-form__cart-item,
.cart_totals { padding: 0; }
.cart_totals h2 { display: none; }
.cart_totals table { width: 100%; border-collapse: collapse; margin-bottom: 12px; }
.cart_totals table th,
.cart_totals table td {
  padding: 6px 0; font-size: 13px;
  border: none; border-bottom: 1px solid #f5f5f5;
}
.cart_totals table th { color: #555; font-weight: 400; }
.cart_totals table td { text-align: right; font-weight: 600; }
.cart_totals .order-total th,
.cart_totals .order-total td { font-size: 16px; font-weight: 800; padding-top: 12px; border-bottom: none; }
.cart_totals .wc-proceed-to-checkout { padding: 0; }

.summary-trust { margin-top: 14px; padding-top: 14px; border-top: 1px solid #f0f0f0; display: flex; flex-direction: column; gap: 8px; }

.empty-cart {
  text-align: center; padding: 80px 20px;
}
.empty-cart-icon { color: #ccc; margin: 0 auto 20px; }
.empty-cart h2 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.empty-cart p { color: #888; margin-bottom: 24px; }

/* ── CHECKOUT ────────────────────────────────────────────────── */
body.kozmoz-checkout { background: var(--bg); }

.co-header {
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 0 var(--gutter);
}
.co-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 58px; max-width: var(--container); margin: 0 auto;
}
.co-header-secure { display: flex; align-items: center; gap: 5px; font-size: 12px; color: #aaa; }

.co-steps {
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 14px var(--gutter);
}
.co-steps-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center;
}
.step { display: flex; align-items: center; gap: 8px; font-size: 12.5px; }
.step-num {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.step.done  .step-num { background: var(--green); color: #fff; }
.step.active .step-num { background: #1a1a1a; color: #fff; }
.step.pending .step-num { background: #e8e8e8; color: #999; }
.step.done  .step-label { color: var(--green); font-weight: 600; }
.step.active .step-label { color: #1a1a1a; font-weight: 700; }
.step.pending .step-label { color: #aaa; }
.step-sep { flex: 1; height: 1px; background: #e0e0e0; margin: 0 12px; min-width: 32px; }

.co-main { padding: 28px 0 64px; }
.co-layout { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: flex-start; }

.form-section { background: #fff; border: 1px solid var(--border); margin-bottom: 16px; }
.form-section-header {
  padding: 14px 20px; border-bottom: 1px solid #f5f5f5;
  display: flex; align-items: center; gap: 10px;
}
.form-section-num {
  width: 22px; height: 22px; border-radius: 50%;
  background: #1a1a1a; color: #fff;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.form-section-title { font-size: 14px; font-weight: 700; color: #1a1a1a; }
.form-body { padding: 18px 20px; }

/* WooCommerce field overrides for checkout */
.woocommerce-checkout .woocommerce-input-wrapper { width: 100%; }
.woocommerce-checkout .form-row {
  display: block; /* reset contact-page grid that bleeds into checkout */
  margin: 0 0 12px;
  padding: 0;
}
.woocommerce-checkout .form-row label {
  font-size: 11.5px; font-weight: 700; letter-spacing: .3px;
  color: #555; margin-bottom: 5px; display: block;
}
.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
  border: 1px solid #ddd; padding: 10px 12px;
  font-size: 13.5px; color: #1a1a1a;
  font-family: var(--font-body); outline: none;
  transition: border-color .15s; background: #fff;
  border-radius: 2px; width: 100%;
}
.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus { border-color: #1a1a1a; }
.woocommerce-checkout .form-row.woocommerce-validated input,
.woocommerce-checkout .form-row.woocommerce-validated select { border-color: var(--green); }
.woocommerce-checkout .form-row.woocommerce-invalid input,
.woocommerce-checkout .form-row.woocommerce-invalid select { border-color: var(--accent); }
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
  display: inline-block; width: calc(50% - 6px);
}
.woocommerce-checkout .form-row-first { margin-right: 12px; }
.woocommerce-checkout .form-row-wide { width: 100%; }

/* Login link */
.login-link { font-size: 12.5px; color: #555; margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.login-link a { color: #2563eb; text-decoration: underline; }

/* Payment section */
#payment { padding: 0; }
#payment .wc_payment_methods { list-style: none; padding: 0; margin: 0 0 16px; }

/* Each payment method: radio absolutely positioned, label indented */
#payment .wc_payment_method {
  border: 1px solid #ddd; border-radius: 2px;
  overflow: hidden; margin-bottom: 8px;
  position: relative;
}
#payment .wc_payment_method > .input-radio {
  position: absolute; top: 14px; left: 14px;
  accent-color: #1a1a1a; width: 16px; height: 16px;
  cursor: pointer; margin: 0;
}
#payment .wc_payment_method > label {
  display: block; padding: 12px 14px 12px 38px;
  cursor: pointer; font-size: 13.5px; font-weight: 600;
  color: #1a1a1a; transition: background .15s; line-height: 1.4;
}
#payment .wc_payment_method:hover > label { background: #fafafa; }
#payment .payment_box { padding: 14px 14px 14px 38px; background: #fafafa; border-top: 1px solid #f0f0f0; font-size: 13px; color: #555; line-height: 1.6; }

#payment .place-order { padding: 0; margin-top: 0; }
#payment .woocommerce-privacy-policy-text { font-size: 12px; color: #999; margin-bottom: 10px; line-height: 1.6; }
#payment .woocommerce-terms-and-conditions-wrapper { margin-bottom: 14px; }
#payment .woocommerce-form__label-for-checkbox { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; color: #555; cursor: pointer; }
#payment .woocommerce-form__label-for-checkbox input { margin-top: 2px; accent-color: #1a1a1a; flex-shrink: 0; }
#payment .place-order .button {
  width: 100%; background: var(--accent); color: #fff;
  height: 50px; font-size: 14px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; border: none; transition: background .15s;
  display: flex; align-items: center; justify-content: center;
}
#payment .place-order .button:hover { background: var(--accent-hover); }

/* Order sidebar (checkout) */
.order-sidebar {
  background: #fff; border: 1px solid var(--border);
  position: sticky; top: 20px;
}
.order-sidebar-header {
  padding: 14px 18px; border-bottom: 1px solid #f5f5f5;
  display: flex; align-items: center; justify-content: space-between;
}
.order-sidebar-header h3 { font-size: 13px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: #888; }
.toggle-order-btn { font-size: 12px; color: #2563eb; cursor: pointer; background: none; border: none; text-decoration: underline; }
.order-sidebar-items { padding: 14px 18px; border-bottom: 1px solid #f5f5f5; }
.sidebar-coupon { padding: 12px 18px; border-bottom: 1px solid #f5f5f5; }
.order-item-row { display: flex; gap: 12px; margin-bottom: 12px; }
.order-item-row:last-child { margin-bottom: 0; }
.order-item-img {
  width: 56px; height: 56px; background: #f0f0f0;
  flex-shrink: 0; overflow: hidden; position: relative;
}
.order-item-img img { width: 100%; height: 100%; object-fit: cover; }
.order-item-qty-badge {
  position: absolute; top: -5px; right: -5px;
  background: #555; color: #fff; border-radius: 50%;
  width: 18px; height: 18px; font-size: 9.5px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.order-item-info { flex: 1; }
.order-item-name { font-size: 12.5px; font-weight: 600; color: #1a1a1a; line-height: 1.35; margin-bottom: 3px; }
.order-item-meta { font-size: 11.5px; color: #999; }
.order-item-price { font-size: 13px; font-weight: 700; color: #1a1a1a; white-space: nowrap; }

.sidebar-totals { padding: 14px 18px; border-bottom: 1px solid #f5f5f5; }
.sum-row { display: flex; justify-content: space-between; font-size: 13px; color: #555; padding: 4px 0; }
.sum-row .v { font-weight: 600; color: #1a1a1a; }
.sum-row.saving .v, .sum-row.free .v { color: var(--green); }
.sum-total {
  display: flex; justify-content: space-between;
  font-size: 16px; font-weight: 800; color: #1a1a1a;
  padding: 12px 18px; border-bottom: 1px solid #f5f5f5;
}
.trust-badges { padding: 14px 18px; display: flex; flex-direction: column; gap: 8px; }
.trust-badges .trust-item svg { color: #888; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer { background: #0f0f0f; color: #fff; padding: 52px var(--gutter) 28px; }
.footer-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
  gap: 52px; padding-bottom: 44px; border-bottom: 1px solid #222;
}
.footer-logo { margin-bottom: 16px; }
.footer-logo-img { height: 40px; width: auto; display: block; }
.footer-logo-text { font-size: 20px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: #fff; }
.footer-desc { font-size: 13px; color: #666; line-height: 1.7; margin-bottom: 18px; max-width: 260px; }
.footer-contact { font-size: 12.5px; color: #555; line-height: 1.9; }
.footer-contact a { color: #777; transition: color .15s; }
.footer-contact a:hover { color: #fff; }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #777; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links li a { font-size: 13px; color: #555; transition: color .15s; }
.footer-links li a:hover { color: #fff; }
.social-row { display: flex; gap: 8px; margin-top: 18px; }
.social-icon {
  width: 36px; height: 36px; border: 1px solid #252525;
  display: flex; align-items: center; justify-content: center;
  color: #555; transition: all .15s;
}
.social-icon:hover { border-color: var(--accent); color: var(--accent); }
.newsletter-desc { font-size: 13px; color: #555; line-height: 1.6; margin-bottom: 14px; }
.newsletter-input { display: flex; }
.newsletter-input input {
  flex: 1; background: #1a1a1a; border: 1px solid #272727;
  border-right: none; color: #fff; font-size: 12.5px; padding: 10px 14px;
  outline: none; min-width: 0;
}
.newsletter-input input::placeholder { color: #444; }
.newsletter-input input:focus { border-color: var(--accent); }
.newsletter-input button {
  background: var(--accent); color: #fff; padding: 10px 16px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; white-space: nowrap; transition: background .15s; border: none;
}
.newsletter-input button:hover { background: var(--accent-hover); }
.footer-bottom {
  max-width: var(--container); margin: 24px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: #3a3a3a;
}
.pay-icons { display: flex; gap: 6px; }
.pay-icon {
  background: #1c1c1c; border: 1px solid #272727;
  padding: 3px 9px; font-size: 10px; color: #555; border-radius: 2px; font-weight: 600;
}

/* ── WOO NOTICES ──────────────────────────────────────────────── */
.woocommerce-message, .woocommerce-error, .woocommerce-info {
  background: #fff; border-top: 4px solid var(--accent);
  padding: 12px 16px; margin-bottom: 16px; font-size: 13.5px;
  display: flex; align-items: center; gap: 10px;
  list-style: none;
}
.woocommerce-message { border-color: var(--green); }
.woocommerce-info { border-color: #3b82f6; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .product-grid, ul.products { grid-template-columns: repeat(3, 1fr); }
  .related-grid             { grid-template-columns: repeat(3, 1fr); }
  .footer-grid              { grid-template-columns: 1fr 1fr; gap: 36px; }
  .co-layout                { grid-template-columns: 1fr 330px; }
}

@media (max-width: 900px) {
  .product-layout           { grid-template-columns: 1fr; gap: 28px; }
  .cart-layout              { grid-template-columns: 1fr; }
  .cart-summary             { position: static; }
  .header-inner             { grid-template-columns: auto 1fr auto; }
  .sidebar                  { display: none; } /* mobile: hide sidebar; TODO: drawer */
}

@media (max-width: 860px) {
  .hero-right               { display: none; }
  .hero-banner              { grid-template-columns: 1fr; min-height: auto; }
  .hero-left                { padding: 38px 24px 32px; }
  .hero-left::before        { display: none; }
  .hero-tagline             { max-width: 100%; }
}

@media (max-width: 820px) {
  .co-layout                { grid-template-columns: 1fr; }
  .order-sidebar            { position: static; }
  .woocommerce-checkout .form-row-first,
  .woocommerce-checkout .form-row-last { width: 100%; display: block; }
  .woocommerce-checkout .form-row-first { margin-right: 0; }
}

@media (max-width: 680px) {
  :root { --gutter: 16px; }
  .product-grid, ul.products { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .related-grid             { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .header-nav               { display: none; }
  .footer-grid              { grid-template-columns: 1fr; gap: 28px; }
  .cart-item                { grid-template-columns: 72px 1fr auto; }
}

@media (max-width: 640px) {
  .hero-headline            { font-size: clamp(42px, 13vw, 64px); letter-spacing: -1.5px; }
  .hero-collection-tag      { font-size: 9px; padding: 5px 11px; }
  .btn-hero-primary,
  .btn-hero-ghost           { padding: 12px 20px; font-size: 11px; }
}

/* ── CONTACT PAGE ────────────────────────────────────────────────────────────── */

/* Page hero (shared by static pages: contact, about, etc.) */
.page-hero { background: #111; color: #fff; padding: 64px 0 52px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(229,48,48,.12), transparent); pointer-events: none; }
.page-hero-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(32px, 4.5vw, 56px); font-weight: 900; letter-spacing: -1.2px; text-transform: uppercase; line-height: .95; margin-bottom: 16px; }
.page-hero p { font-size: 14px; color: #999; max-width: 420px; margin: 0 auto; line-height: 1.7; }

/* Page breadcrumb (scoped to avoid WooCommerce conflict) */
.page-breadcrumb { padding: 14px 0; font-size: 12.5px; color: #aaa; display: flex; gap: 6px; align-items: center; }
.page-breadcrumb a { color: #aaa; transition: color .15s; }
.page-breadcrumb a:hover { color: var(--fg); }

/* Contact info cards */
.contact-section { padding: 56px 0 64px; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 56px; }
.contact-card { background: #fff; border: 1px solid var(--border); padding: 28px 24px; display: flex; align-items: flex-start; gap: 16px; transition: border-color .2s, box-shadow .2s; }
.contact-card:hover { border-color: #ccc; box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.contact-card-icon { width: 44px; height: 44px; background: rgba(229,48,48,.08); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); }
.contact-card-title { font-size: 14px; font-weight: 700; color: var(--fg); margin-bottom: 4px; }
.contact-card-text { font-size: 12.5px; color: #777; line-height: 1.6; }
.contact-card-val { font-size: 13px; color: var(--fg); font-weight: 600; margin-top: 8px; display: block; }

/* Contact grid: form + sidebar */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }

/* Form box */
.form-box { background: #fff; border: 1px solid var(--border); padding: 36px; }
.form-box-title { font-size: 19px; font-weight: 700; color: var(--fg); margin-bottom: 4px; }
.form-box-sub { font-size: 13px; color: #888; margin-bottom: 28px; }
.form-box .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 11.5px; font-weight: 600; letter-spacing: .5px; color: #555; margin-bottom: 6px; text-transform: uppercase; }
.form-input { width: 100%; background: #fafafa; border: 1px solid var(--border); color: var(--fg); font-size: 13.5px; padding: 11px 14px; outline: none; font-family: var(--font-body); transition: border-color .15s; }
.form-input:focus { border-color: var(--accent); background: #fff; }
.form-input::placeholder { color: #bbb; }
textarea.form-input { resize: vertical; min-height: 120px; }

/* Topic chips */
.form-topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 18px; }
.topic-chip { padding: 9px 10px; border: 1px solid var(--border); font-size: 12px; color: #666; cursor: pointer; text-align: center; transition: all .15s; background: #fff; user-select: none; }
.topic-chip:hover, .topic-chip.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Submit button */
.btn-submit { width: 100%; background: var(--accent); color: #fff; padding: 14px; font-size: 12.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; border: none; transition: background .15s; display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-submit:hover { background: var(--accent-hover); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-note { font-size: 11.5px; color: #aaa; text-align: center; margin-top: 12px; line-height: 1.5; }

/* Sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-box { background: #fff; border: 1px solid var(--border); padding: 24px; }
.sidebar-box--tips { background: #fff8f8; border-color: #ffd0d0; }
.sidebar-box-title { font-size: 13px; font-weight: 700; color: var(--fg); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.sidebar-box--tips .sidebar-box-title { color: var(--accent); border-color: #ffd0d0; }
.sidebar-tips { font-size: 12.5px; color: #666; line-height: 1.75; display: flex; flex-direction: column; gap: 10px; }

/* Business hours */
.hours-row { display: flex; justify-content: space-between; font-size: 12.5px; padding: 6px 0; border-bottom: 1px solid #f0f0f0; }
.hours-row:last-of-type { border-bottom: none; }
.hours-day { color: #555; }
.hours-time { color: var(--fg); font-weight: 600; }
.hours-closed { color: #bbb; }

/* Social contact list */
.social-contact-row { display: flex; flex-direction: column; gap: 10px; }
.social-contact-item { display: flex; align-items: center; gap: 12px; padding: 10px; border: 1px solid var(--border); font-size: 12.5px; color: #555; transition: all .15s; text-decoration: none; }
.social-contact-item:hover { border-color: var(--accent); color: var(--accent); background: rgba(229,48,48,.03); }
.social-contact-name { font-weight: 600; color: var(--fg); font-size: 12px; display: block; }

/* FAQ section */
.faq-section { padding: 56px 0; background: #fff; border-top: 1px solid var(--border); }
.sec-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--accent); text-align: center; margin-bottom: 12px; }
.faq-sec-title { font-size: clamp(22px, 3vw, 36px); font-weight: 800; letter-spacing: -.5px; text-align: center; color: var(--fg); margin-bottom: 40px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; max-width: 900px; margin: 0 auto; }
.faq-item { padding: 20px 24px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); }
.faq-item:nth-child(even) { border-right: none; }
.faq-item:nth-last-child(-n+2) { border-bottom: none; }
.faq-q { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; width: 100%; font-size: 13.5px; font-weight: 700; color: var(--fg); background: none; border: none; cursor: pointer; padding: 0; text-align: left; }
.faq-q svg { flex-shrink: 0; transition: transform .2s; margin-top: 2px; }
.faq-a { font-size: 13px; color: #777; line-height: 1.7; margin-top: 10px; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }

/* Toast notification */
.kozmoz-toast { position: fixed; bottom: 28px; right: 28px; background: #1a1a1a; color: #fff; padding: 14px 22px; font-size: 13px; font-weight: 600; z-index: 999; transform: translateY(80px); opacity: 0; transition: all .3s; pointer-events: none; }
.kozmoz-toast.show { transform: translateY(0); opacity: 1; }
.kozmoz-toast--success { border-left: 3px solid #4ade80; }
.kozmoz-toast--error   { border-left: 3px solid var(--accent); }

/* Contact page responsive */
@media (max-width: 900px) {
  .contact-grid    { grid-template-columns: 1fr; }
  .contact-cards   { grid-template-columns: 1fr; }
  .faq-grid        { grid-template-columns: 1fr; }
  .faq-item        { border-right: none; }
  .faq-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .faq-item:last-child           { border-bottom: none; }
}
@media (max-width: 600px) {
  .form-box .form-row { grid-template-columns: 1fr; }
  .form-topic-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   About Page
   ============================================================ */

/* Story section */
.story-section { padding: 72px 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.story-img { aspect-ratio: 4 / 5; background: #e0dbd5; overflow: hidden; position: relative; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-img-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,.7)); color: #fff; padding: 20px 20px 16px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.story-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.story-title { font-size: clamp(26px, 3vw, 40px); font-weight: 800; line-height: 1.05; letter-spacing: -.7px; margin-bottom: 20px; color: var(--fg); }
.story-body { font-size: 14.5px; color: #555; line-height: 1.85; display: flex; flex-direction: column; gap: 14px; }
.story-sig { margin-top: 28px; display: flex; align-items: center; gap: 14px; }
.story-sig-avatar { width: 48px; height: 48px; border-radius: 50%; background: #d0cbc5; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; color: #888; flex-shrink: 0; }
.story-sig-name { font-size: 13.5px; font-weight: 700; color: var(--fg); }
.story-sig-role { font-size: 11.5px; color: #999; margin-top: 2px; }

/* Stats bar */
.stats-bar { background: #1a1a1a; color: #fff; padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-item { padding: 0 20px; border-right: 1px solid #2e2e2e; }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: clamp(32px, 4vw, 52px); font-weight: 900; letter-spacing: -1.5px; color: #fff; line-height: 1; margin-bottom: 6px; }
.stat-num span { color: var(--accent); }
.stat-label { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: #777; }

/* Values section */
.values-section { padding: 72px 0; background: #fff; }
.about-sec-title { font-size: clamp(24px, 3vw, 38px); font-weight: 800; letter-spacing: -.7px; text-align: center; color: var(--fg); margin-bottom: 48px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card { padding: 32px 28px; border: 1px solid var(--border); background: #fafafa; transition: border-color .2s, box-shadow .2s; }
.value-card:hover { border-color: #ccc; box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.value-icon { width: 48px; height: 48px; background: rgba(229,48,48,.08); border-radius: 4px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--accent); }
.value-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--fg); }
.value-body { font-size: 13.5px; color: #666; line-height: 1.75; }

/* Timeline */
.timeline-section { padding: 72px 0; }
.about-timeline { display: flex; flex-direction: column; max-width: 700px; margin: 0 auto; position: relative; }
.about-timeline::before { content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.tl-item { display: grid; grid-template-columns: 44px 1fr; gap: 24px; padding-bottom: 40px; position: relative; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; color: #aaa; flex-shrink: 0; position: relative; z-index: 1; }
.tl-item.highlight .tl-dot { background: var(--accent); border-color: var(--accent); color: #fff; }
.tl-content { padding-top: 8px; }
.tl-year { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.tl-title { font-size: 15px; font-weight: 700; color: var(--fg); margin-bottom: 6px; }
.tl-body { font-size: 13px; color: #777; line-height: 1.7; }

/* About CTA strip */
.about-cta { background: var(--accent); padding: 56px 0; text-align: center; }
.about-cta h3 { font-size: clamp(22px, 3vw, 36px); font-weight: 900; color: #fff; letter-spacing: -.5px; margin-bottom: 10px; }
.about-cta p { font-size: 14px; color: rgba(255,255,255,.8); margin-bottom: 22px; }

/* About page responsive */
@media (max-width: 900px) {
  .story-grid   { grid-template-columns: 1fr; gap: 36px; }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); gap: 1px; background: #2a2a2a; }
  .stat-item    { background: #1a1a1a; padding: 28px 16px; border-right: none; }
  .values-grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .values-grid  { grid-template-columns: 1fr; }
}

/* ── Flexible Page template ───────────────────────────────────────────────── */
.content-section { padding: 72px 0; }
.content-section.on-white { background: #fff; }
.content-section.on-dark { background: #111; color: #fff; }
.flexible-content { }
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-size: clamp(22px, 2.5vw, 32px); font-weight: 800; letter-spacing: -.5px; color: #1a1a1a; margin-bottom: 14px; margin-top: 40px; line-height: 1.1; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 17px; font-weight: 700; color: #1a1a1a; margin-bottom: 10px; margin-top: 28px; }
.prose p { font-size: 14.5px; color: #555; line-height: 1.85; margin-bottom: 16px; }
.prose p:last-child { margin-bottom: 0; }
.prose ul, .prose ol { padding-left: 22px; color: #555; font-size: 14.5px; line-height: 1.85; margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.prose li::marker { color: var(--accent); }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.prose blockquote { border-left: 3px solid var(--accent); padding: 12px 20px; background: #fafafa; margin: 24px 0; font-style: italic; color: #666; font-size: 14.5px; }
.prose strong { color: var(--fg); font-weight: 600; }

.cta-strip { background: var(--accent); padding: 56px 0; text-align: center; }
.cta-strip h3 { font-size: clamp(22px, 3vw, 36px); font-weight: 900; color: #fff; letter-spacing: -.5px; margin-bottom: 10px; }
.cta-strip p { font-size: 14px; color: rgba(255,255,255,.8); margin-bottom: 24px; }
.btn-outline-white { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); padding: 12px 24px; font-size: 11.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: border-color .15s, background .15s; margin-left: 12px; }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.08); }
@media (max-width: 700px) {
  .content-section { padding: 48px 0; }
  .cta-strip .btn-outline-white { margin-left: 0; margin-top: 10px; }
}

/* ── Generic page content (Privacy Policy, Terms, Shipping, etc.) ─────────── */
.page-wrap { padding: 48px 0 72px; }
.page-content-body { background: #fff; border: 1px solid var(--border); padding: 48px 52px; max-width: 860px; }
.page-content-body h1 { font-size: 26px; font-weight: 800; letter-spacing: -.3px; color: var(--fg); margin-bottom: 8px; }
.page-content-body .page-updated { font-size: 12px; color: #aaa; margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.page-content-body h2 { font-size: 17px; font-weight: 700; color: var(--fg); margin: 40px 0 12px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.page-content-body h3 { font-size: 14px; font-weight: 700; color: var(--fg); margin: 20px 0 8px; }
.page-content-body p { font-size: 13.5px; color: #555; line-height: 1.85; margin-bottom: 12px; }
.page-content-body ul,
.page-content-body ol { font-size: 13.5px; color: #555; line-height: 1.85; padding-left: 20px; margin-bottom: 12px; display: flex; flex-direction: column; gap: 6px; }
.page-content-body li::marker { color: var(--accent); }
.page-content-body a { color: var(--accent); text-decoration: underline; }
.page-content-body strong { color: var(--fg); font-weight: 600; }
@media (max-width: 700px) {
  .page-content-body { padding: 28px 20px; }
}

/* ── Track Order page ─────────────────────────────────────────────────────── */
.track-section { padding: 64px 0 80px; }
.track-wrap { max-width: 560px; margin: 0 auto; }
.track-intro { text-align: center; margin-bottom: 40px; }
.track-intro h2 { font-size: 22px; font-weight: 800; letter-spacing: -.4px; color: #1a1a1a; margin-bottom: 10px; }
.track-intro p { font-size: 13.5px; color: #777; line-height: 1.75; }

.track-form { background: #fff; border: 1px solid var(--border); padding: 36px 40px; }
.form-hint { font-size: 11.5px; color: #aaa; margin-top: 6px; }
.form-hint a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.form-divider { border: none; border-top: 1px solid var(--border); margin: 28px 0; }
.form-error { font-size: 12.5px; color: var(--accent); margin-top: 10px; display: none; }
.form-error.visible { display: block; }
.btn-track { width: 100%; background: var(--accent); color: #fff; padding: 14px 28px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: background .15s; border: none; margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-track:hover { background: #c42020; }
.btn-track svg { transition: transform .2s; }
.btn-track:hover svg { transform: translateX(3px); }

/* Result panel */
.result-panel { display: none; margin-top: 32px; border: 1px solid var(--border); background: #fff; }
.result-panel.visible { display: block; }
.result-header { padding: 20px 28px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.result-order-id { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #aaa; }
.result-order-num { font-size: 18px; font-weight: 800; color: #1a1a1a; margin-top: 2px; }
.result-badge { font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 12px; display: inline-flex; align-items: center; gap: 6px; }
.badge-shipped { background: rgba(229,48,48,.08); color: var(--accent); }
.badge-processing { background: #fff8e1; color: #f59e0b; }
.badge-delivered { background: #e8f5e9; color: #22863a; }
.result-meta { padding: 18px 28px; display: flex; gap: 32px; flex-wrap: wrap; border-bottom: 1px solid var(--border); background: #fafafa; }
.meta-item label { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #aaa; margin-bottom: 3px; }
.meta-item span { font-size: 13.5px; font-weight: 600; color: #1a1a1a; }

/* Order status stepper */
.tracker { padding: 28px 28px 24px; }
.tracker-steps { display: flex; align-items: flex-start; position: relative; margin-bottom: 28px; }
.tracker-line { position: absolute; top: 16px; left: 16px; right: 16px; height: 2px; background: var(--border); z-index: 0; }
.tracker-line-fill { position: absolute; top: 16px; left: 16px; height: 2px; background: var(--accent); z-index: 1; transition: width .4s ease; }
.tracker-step { flex: 1; display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; }
.step-dot { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--border); background: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; transition: all .2s; }
.step-dot.done { background: var(--accent); border-color: var(--accent); color: #fff; }
.step-dot.active { background: #fff; border-color: var(--accent); color: var(--accent); box-shadow: 0 0 0 4px rgba(229,48,48,.1); }
.step-dot svg { width: 14px; height: 14px; }
.step-label { font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: #aaa; text-align: center; line-height: 1.3; }
.step-label.done, .step-label.active { color: #1a1a1a; }
.step-date { font-size: 11px; color: #bbb; text-align: center; margin-top: 3px; }
.step-date.done { color: #aaa; }

/* Tracking log */
.track-log { border-top: 1px solid var(--border); }
.track-log-title { padding: 16px 28px 0; font-size: 10.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #aaa; }
.log-list { padding: 16px 28px 24px; display: flex; flex-direction: column; gap: 14px; }
.log-item { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.log-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); margin-top: 4px; flex-shrink: 0; }
.log-dot.active { background: var(--accent); }
.log-event { font-size: 13px; font-weight: 600; color: #1a1a1a; }
.log-meta { font-size: 11.5px; color: #aaa; margin-top: 1px; }

/* How it works */
.how-section { padding: 64px 0; background: #fff; }
.how-header { text-align: center; margin-bottom: 44px; }
.how-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.how-title { font-size: clamp(22px, 3vw, 32px); font-weight: 800; letter-spacing: -.5px; color: #1a1a1a; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 860px; margin: 0 auto; }
.how-card { text-align: center; padding: 32px 24px; }
.how-icon { width: 52px; height: 52px; background: rgba(229,48,48,.07); border-radius: 4px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--accent); }
.how-card-title { font-size: 14.5px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
.how-card-body { font-size: 13px; color: #777; line-height: 1.7; }

/* Support strip */
.support-strip { background: #1a1a1a; color: #fff; padding: 44px 0; text-align: center; }
.support-strip h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 800; letter-spacing: -.4px; margin-bottom: 10px; }
.support-strip p { font-size: 14px; color: #999; margin-bottom: 22px; }

@media (max-width: 700px) {
  .track-form { padding: 24px 20px; }
  .how-grid { grid-template-columns: 1fr; gap: 16px; }
  .result-meta { gap: 18px; }
}

/* ── AUTH PAGE ───────────────────────────────────────────────── */
.auth-section {
  min-height: calc(100vh - 122px);
  display: flex;
  align-items: stretch;
}

/* Visual panel */
.auth-visual {
  flex: 0 0 48%;
  background: #111;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.auth-visual-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 100%);
}
.auth-visual-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 30% 70%, rgba(229,48,48,.18), transparent);
}
.auth-visual-pattern {
  position: absolute; inset: 0;
  opacity: .04;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, #fff 39px, #fff 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, #fff 39px, #fff 40px);
}
.auth-visual-content { position: relative; z-index: 2; padding: 52px 52px 56px; }
.auth-brand-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid #2e2e2e; padding: 8px 16px; margin-bottom: 44px;
}
.auth-brand-badge-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.auth-brand-badge-text {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: #555;
}
.auth-visual-quote {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 900; letter-spacing: -1px;
  color: #fff; line-height: 1.15; margin-bottom: 20px;
}
.auth-visual-quote em { color: var(--accent); font-style: normal; }
.auth-visual-desc {
  font-size: 13.5px; color: #666; line-height: 1.75;
  max-width: 340px; margin-bottom: 36px;
}
.auth-social-proof { display: flex; align-items: center; gap: 14px; }
.proof-avatars { display: flex; }
.proof-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid #111; background: #2a2a2a;
  margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #888;
}
.proof-avatar:first-child { margin-left: 0; }
.proof-text { font-size: 12.5px; color: #666; }
.proof-text strong { color: #aaa; font-weight: 600; }
.auth-perks {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 36px; border-top: 1px solid #1e1e1e; padding-top: 28px;
}
.auth-perk { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: #555; }
.auth-perk svg { color: var(--accent); flex-shrink: 0; }

/* Form panel */
.auth-form-side {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 48px 32px; background: #fff;
}
.auth-form-wrap { width: 100%; max-width: 420px; }

/* Tabs */
.auth-tabs {
  display: flex; margin-bottom: 36px;
  border-bottom: 2px solid var(--border);
}
.auth-tab {
  flex: 1; padding: 12px 0;
  font-size: 13px; font-weight: 700; letter-spacing: .5px; text-align: center;
  color: #aaa; cursor: pointer; transition: color .15s;
  border: none; border-bottom: 2px solid transparent; margin-bottom: -2px;
  background: none;
}
.auth-tab.active { color: #1a1a1a; border-bottom-color: #1a1a1a; }
.auth-tab:hover:not(.active) { color: #555; }

/* Forms */
.auth-form { display: none; }
.auth-form.active { display: block; }
.auth-form-title {
  font-size: 22px; font-weight: 900; letter-spacing: -.5px;
  color: #1a1a1a; margin-bottom: 6px;
}
.auth-form-sub { font-size: 13px; color: #999; margin-bottom: 28px; line-height: 1.6; }
.auth-form-sub a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* Fields */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 11.5px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase; color: #555; margin-bottom: 7px;
}
.form-input-wrap { position: relative; }
.woocommerce-form .form-input,
.woocommerce-form .woocommerce-Input {
  width: 100%;
  border: 1px solid var(--border); background: #fafafa;
  color: var(--fg); font-family: var(--font-body); font-size: 14px;
  padding: 12px 14px; outline: none; border-radius: 0;
  transition: border-color .15s, background .15s;
}
.woocommerce-form .form-input:focus,
.woocommerce-form .woocommerce-Input:focus { border-color: #999; background: #fff; }
.woocommerce-form .woocommerce-Input.has-icon { padding-right: 42px; }
.woocommerce-form .woocommerce-Input::placeholder { color: #bbb; }
.woocommerce-form .woocommerce-Input.woocommerce-invalid { border-color: var(--accent); background: #fff9f9; }
.form-input-icon {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: #bbb; cursor: pointer; transition: color .15s;
  background: none; border: none; padding: 0; display: flex;
}
.form-input-icon:hover { color: #555; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-extras {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; margin-top: -4px;
}
.checkbox-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: #666; cursor: pointer; user-select: none;
}
.checkbox-label input[type="checkbox"] {
  -webkit-appearance: none; appearance: none;
  width: 15px; height: 15px;
  border: 1.5px solid var(--border); background: #fafafa;
  cursor: pointer; flex-shrink: 0; transition: all .15s; margin: 0;
}
.checkbox-label input[type="checkbox"]:checked { background: var(--accent); border-color: var(--accent); }
.checkbox-label input[type="checkbox"]:checked::after {
  content: ''; display: block;
  width: 4px; height: 7px;
  border: 2px solid #fff; border-top: none; border-left: none;
  transform: rotate(45deg) translate(2px, -1px);
}
.form-forgot {
  font-size: 12.5px; color: #aaa; text-decoration: underline;
  text-underline-offset: 2px; transition: color .15s;
}
.form-forgot:hover { color: var(--accent); }

/* Buttons */
.btn-auth {
  width: 100%; background: #1a1a1a; color: #fff;
  padding: 14px 28px; font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: background .15s; border: none;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 20px; border-radius: 0;
}
.btn-auth:hover { background: #333; }
.btn-auth svg { transition: transform .2s; }
.btn-auth:hover svg { transform: translateX(3px); }

.auth-divider {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.auth-divider::before,
.auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-divider span {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #ccc;
}

.btn-social {
  width: 100%; background: #fff; color: #333;
  border: 1.5px solid var(--border); padding: 12px 20px;
  font-size: 12.5px; font-weight: 600; cursor: pointer;
  transition: all .15s; display: flex; align-items: center;
  justify-content: center; gap: 10px; margin-bottom: 10px; border-radius: 0;
}
.btn-social:hover { border-color: #999; background: #fafafa; }

.auth-bottom-note {
  text-align: center; font-size: 12px; color: #bbb;
  margin-top: 20px; line-height: 1.7;
}
.auth-bottom-note a { color: #aaa; text-decoration: underline; text-underline-offset: 2px; }
.auth-bottom-note a:hover { color: var(--accent); }

/* Password strength */
.pw-strength { margin-top: 8px; }
.pw-strength[hidden] { display: none; }
.pw-bars { display: flex; gap: 3px; margin-bottom: 4px; }
.pw-bar { flex: 1; height: 3px; background: var(--border); transition: background .2s; }
.pw-bar.weak   { background: var(--accent); }
.pw-bar.fair   { background: #f59e0b; }
.pw-bar.good   { background: #3b82f6; }
.pw-bar.strong { background: #10b981; }
.pw-label { font-size: 11px; color: #aaa; }

/* WooCommerce notices inside auth */
.auth-form-wrap .woocommerce-error,
.auth-form-wrap .woocommerce-message,
.auth-form-wrap .woocommerce-info {
  list-style: none; padding: 12px 16px; margin-bottom: 20px;
  font-size: 13px; border-radius: 0;
}
.auth-form-wrap .woocommerce-error   { background: #fff2f2; border-left: 3px solid var(--accent); color: #b00; }
.auth-form-wrap .woocommerce-message { background: #f0fdf4; border-left: 3px solid #10b981; color: #065f46; }
.auth-form-wrap .woocommerce-info    { background: #eff6ff; border-left: 3px solid #3b82f6; color: #1e40af; }

/* Auth responsive */
@media (max-width: 960px) { .auth-visual { display: none; } }
@media (max-width: 640px) {
  .auth-form-side { padding: 32px 20px; min-height: calc(100vh - 122px); }
  .form-row-2 { grid-template-columns: 1fr; }
}
