/* =========================================================
   mini7 SELECT · Editorial Lifestyle & Lighting
   Pure white · Japandi · Premium select shop · Magazine feel
   ========================================================= */

/* ---------- Reset & root ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

:root {
  --white: #ffffff;
  --ink: #1a1a1a;
  --ink-soft: #2a2a2a;
  --gray: #757575;
  --gray-2: #8b8b8b;
  --line: #e8e6e1;
  --line-soft: #f0eeea;
  --bg-soft: #f6f4f0;
  --brand: #e9411f;
  --brand-dark: #b22a0c;
  --focus: #4a6cf7;

  --serif: "Cormorant Garamond", "Noto Serif TC", "Songti TC", "PingFang TC", serif;
  --sans: "Inter", "Helvetica Neue", "Helvetica", "Arial", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;

  --shell: 1320px;
  --pad-x: 40px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --dur: .35s;
}

html { scroll-behavior: smooth; }

/* =============================================================
   Custom scrollbar
   ============================================================= */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--gray-2) transparent;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #d6d3cc;
  border-radius: 999px;
  border: 2px solid #fff;
  transition: background .2s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand);
}
::-webkit-scrollbar-corner { background: transparent; }

/* Dark surfaces (marquee / search overlay if dark) */
.search-overlay::-webkit-scrollbar-thumb { background: var(--gray-2); border-color: #fff; }

/* =============================================================
   Custom form elements (no native styling anywhere)
   ============================================================= */

/* Reset native */
input[type="text"], input[type="email"], input[type="tel"], input[type="number"],
input[type="search"], input[type="password"], input[type="url"],
textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 16px;
  width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input::placeholder, textarea::placeholder {
  color: var(--gray-2);
  letter-spacing: 0;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(233, 65, 31, 0.08);
}
input:disabled, textarea:disabled, select:disabled {
  background: var(--bg-soft);
  color: var(--gray-2);
  cursor: not-allowed;
}
textarea { resize: vertical; min-height: 120px; line-height: 1.7; }

/* Autofill */
input:-webkit-autofill {
  -webkit-text-fill-color: var(--ink);
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

/* Number arrow hide */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
input[type="number"] { -moz-appearance: textfield; }

/* Search clear button hide */
input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; }

/* Newsletter input keeps underline-only style */
.newsletter input {
  border: 0; padding: 12px 4px;
  background: transparent;
}
.newsletter input:focus { box-shadow: none; }

/* Search overlay input */
.search-overlay .so-form input { border: 0; padding: 0; background: transparent; }
.search-overlay .so-form input:focus { box-shadow: none; }

/* =============================================================
   Custom select (wj-select)
   ============================================================= */
.wj-select {
  position: relative;
  font-family: inherit;
}
.wj-select select { /* hide native */
  position: absolute; opacity: 0; pointer-events: none;
  width: 100%; height: 100%; left: 0; top: 0;
}
.wj-select-trigger {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  padding: 11px 14px 11px 18px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
  transition: border-color .2s ease, color .2s ease;
}
.wj-select-trigger:hover { border-color: var(--ink); }
.wj-select.is-open .wj-select-trigger {
  border-color: var(--ink);
  color: var(--ink);
}
.wj-select-trigger .caret {
  width: 10px; height: 10px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform .25s var(--ease);
}
.wj-select.is-open .wj-select-trigger .caret {
  transform: rotate(-135deg) translate(-1px, -1px);
}
.wj-select-panel {
  position: absolute;
  top: calc(100% + 6px); right: 0;
  min-width: 100%;
  width: max-content;
  max-width: 320px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  z-index: 60;
  max-height: 280px;
  overflow-y: auto;
  opacity: 0; transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s var(--ease);
}
.wj-select.is-open .wj-select-panel {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.wj-select-option {
  padding: 12px 18px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  border-bottom: 1px solid var(--line-soft);
  transition: background .15s ease, color .15s ease, padding .2s ease;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  white-space: nowrap;
}
.wj-select-option:last-child { border-bottom: 0; }
.wj-select-option:hover { background: var(--bg-soft); padding-left: 22px; color: var(--brand); }
.wj-select-option.is-active {
  color: var(--brand);
  background: var(--bg-soft);
}
.wj-select-option.is-active::after {
  content: "";
  width: 5px; height: 5px; background: var(--brand);
  border-radius: 50%;
}

/* =============================================================
   Custom checkbox
   ============================================================= */
.wj-check {
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer; user-select: none;
  font-size: 13px;
  color: var(--ink);
}
.wj-check input { position: absolute; opacity: 0; pointer-events: none; }
.wj-check .box {
  width: 18px; height: 18px;
  border: 1px solid var(--line);
  background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .2s ease;
  position: relative;
  flex-shrink: 0;
}
.wj-check input:focus-visible + .box {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(233, 65, 31, 0.08);
}
.wj-check input:checked + .box {
  background: var(--brand); border-color: var(--brand);
}
.wj-check .box::after {
  content: ""; width: 9px; height: 5px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
  opacity: 0; transition: opacity .15s ease;
}
.wj-check input:checked + .box::after { opacity: 1; }

/* =============================================================
   Custom radio
   ============================================================= */
.wj-radio {
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer; user-select: none;
  font-size: 13px;
}
.wj-radio input { position: absolute; opacity: 0; pointer-events: none; }
.wj-radio .dot {
  width: 18px; height: 18px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .2s ease;
  flex-shrink: 0;
}
.wj-radio input:checked + .dot { border-color: var(--brand); }
.wj-radio .dot::after {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
  transform: scale(0);
  transition: transform .2s var(--ease);
}
.wj-radio input:checked + .dot::after { transform: scale(1); }

/* Pill-style radio group */
.wj-radios { display: flex; flex-wrap: wrap; gap: 8px; }
.wj-radios .wj-radio-pill {
  cursor: pointer; user-select: none;
}
.wj-radios .wj-radio-pill input { position: absolute; opacity: 0; pointer-events: none; }
.wj-radios .wj-radio-pill span {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--line);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray);
  transition: all .2s ease;
}
.wj-radios .wj-radio-pill input:checked + span {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.wj-radios .wj-radio-pill:hover span { border-color: var(--ink); color: var(--ink); }
.wj-radios .wj-radio-pill input:checked ~ * { color: #fff; }

/* =============================================================
   Custom number stepper (cart qty)
   ============================================================= */
/* already styled in .cart-items .ci .qty — refresh */
.cart-items .ci .qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line);
}
.cart-items .ci .qty button {
  width: 34px; height: 34px;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  background: transparent;
  transition: background .2s ease, color .2s ease;
}
.cart-items .ci .qty button:hover { background: var(--ink); color: #fff; }
.cart-items .ci .qty input {
  width: 38px; height: 34px;
  text-align: center;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font: inherit; font-size: 13px;
  padding: 0;
}
.cart-items .ci .qty input:focus { box-shadow: none; }

body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-ligatures: common-ligatures;
}

::selection { background: var(--brand); color: #fff; }

/* Accessibility: skip link */
.skip-link {
  position: absolute; top: 0; left: 0;
  background: var(--ink); color: #fff;
  padding: 12px 18px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  transform: translateY(-100%);
  transition: transform .2s ease;
  z-index: 9999;
}
.skip-link:focus { transform: translateY(0); }

/* Unified focus ring (keyboard only) */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 2px;
}
a:focus-visible, button:focus-visible {
  outline-offset: 3px;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg { animation: none !important; }
}

/* Tabular numbers for prices */
.p-price, .pd-price, .sum-row, .ci-price, .pd-meta { font-variant-numeric: tabular-nums; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gray);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow .dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
}
.eyebrow .bar {
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--brand);
  flex-shrink: 0;
}

h1, h2, h3, h4 { margin: 0; font-weight: 400; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.section-title em {
  font-style: italic;
  color: var(--gray);
  font-weight: 400;
}

.section-desc {
  max-width: 540px;
  margin-top: 20px;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.85;
}

/* ---------- Section frame ---------- */
.shell { max-width: var(--shell); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: 100px 0; }
.section--tight { padding: 70px 0; }

.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 52px;
}
.section-head .meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 540px;
}
.section-head .right { text-align: right; }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  background: var(--ink); color: #fff;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid var(--ink);
  white-space: nowrap;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .15s ease;
}
.btn:hover { background: var(--brand); border-color: var(--brand); }
.btn:active { transform: scale(0.985); }
.btn.is-added { background: #2e7d32; border-color: #2e7d32; pointer-events: none; }

.btn-outline {
  background: transparent; color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }

.btn .arrow { display: inline-block; transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: color .25s ease, border-color .25s ease;
}
.link-arrow:hover { color: var(--brand); border-color: var(--brand); }

/* ============================================================
   HEADER (left menu | center logo | right menu + utility)
   ============================================================ */
.site-header {
  position: sticky; top: 0;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
.nav {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 22px var(--pad-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-right { justify-content: flex-end; }

.nav-menu {
  display: flex;
  gap: 24px;
}
.nav-menu a { white-space: nowrap; }
.nav-menu a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-menu a small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.34em;
  color: var(--gray-2);
  margin-top: 3px;
  font-weight: 400;
}
.nav-menu a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav-menu a:hover { color: var(--brand); }
.nav-menu a:hover::after,
.nav-menu a.active::after { transform: scaleX(1); }

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand img {
  height: 38px;
  width: auto;
}

.nav-utility {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
}
.nav-utility .util-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 0;
  color: var(--ink);
  transition: color .2s ease;
}
.nav-utility .util-btn:hover { color: var(--brand); }
.nav-utility .util-btn .ico {
  width: 16px; height: 16px; stroke: currentColor; fill: none;
  stroke-width: 1.4;
}
.nav-utility .util-btn span:not(.cart-count) {
  display: none;
}
.nav-utility .util-btn[aria-label="Cart"] span:not(.cart-count) { display: none; }
@media (min-width: 1380px) {
  .nav-utility .util-btn span:not(.cart-count) { display: inline; }
}
.cart-count {
  display: inline-block;
  min-width: 18px; padding: 0 5px;
  background: var(--brand); color: #fff;
  border-radius: 999px;
  font-size: 10px; letter-spacing: 0.05em;
  text-align: center; line-height: 18px;
  transition: transform .2s var(--ease);
}
.cart-count.bump { animation: cartBump .45s var(--ease); }
@keyframes cartBump {
  0%, 100% { transform: scale(1); }
  30% { transform: scale(1.35); }
  60% { transform: scale(0.95); }
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 28px; height: 28px;
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 0; right: 0;
  height: 1px; background: var(--ink);
  transition: transform .3s ease, opacity .2s ease, top .3s ease;
}
.nav-toggle span:nth-child(1) { top: 9px; }
.nav-toggle span:nth-child(2) { top: 14px; }
.nav-toggle span:nth-child(3) { top: 19px; }
body.nav-open .nav-toggle span:nth-child(1) { top: 14px; transform: rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { top: 14px; transform: rotate(-45deg); }

.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(23,23,23,0.35);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
  z-index: 99;
}
body.nav-open .nav-backdrop { opacity: 1; pointer-events: auto; }

/* Drawer hidden on desktop; visible-as-fixed-panel only in mobile media query */
.nav-drawer { display: none; }

/* ============================================================
   HERO  (full-bleed editorial banner)
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 92vh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroZoom 14s var(--ease) both;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1); } }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0) 22%, rgba(255,255,255,0) 55%, rgba(255,255,255,0.78) 100%);
}
.hero-inner {
  position: relative;
  max-width: var(--shell);
  width: 100%;
  margin: 0 auto;
  padding: 80px var(--pad-x) 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 60px;
  align-items: end;
}
.hero-eyebrow {
  position: absolute;
  top: 40px;
  left: var(--pad-x);
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 0.36em; text-transform: uppercase; color: var(--ink);
}
.hero-eyebrow .bar { width: 36px; height: 1px; background: var(--brand); }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 4.4vw, 68px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.005em;
  color: var(--ink);
  max-width: 720px;
}
.hero-title em {
  font-style: italic;
  color: var(--ink);
  opacity: 0.55;
}
.hero-title .accent { color: var(--brand); font-style: italic; }

.hero-sub {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.9;
  max-width: 460px;
  margin-top: 24px;
}

.hero-cta {
  display: flex; gap: 12px;
  flex-wrap: nowrap;
  align-items: center;
  margin-top: 32px;
}

.hero-right {
  display: flex; flex-direction: column;
  justify-self: end;
  align-items: flex-end;
  gap: 18px;
  text-align: right;
  padding-bottom: 6px;
}
.hero-right .issue-tag {
  background: rgba(255,255,255,0.94);
  padding: 12px 18px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--line);
}
.hero-right .issue-tag .num {
  color: var(--brand);
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  margin-right: 10px;
  vertical-align: middle;
}

/* Stats band below hero */
.hero-stats {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.hero-stats-inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 26px var(--pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
.hero-stats .item {
  display: flex; flex-direction: column; gap: 5px;
}
.hero-stats .item small {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gray);
}
.hero-stats .item strong {
  font-family: var(--serif);
  font-size: 18px; font-weight: 500;
  color: var(--ink);
}
.hero-stats .item:first-child strong {
  color: var(--brand);
  font-style: italic;
}

/* ============================================================
   01 · FEATURED SELECTION (curated categories)
   ============================================================ */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feat-card {
  background: #fff;
  padding: 42px 32px 40px;
  display: flex; flex-direction: column;
  gap: 24px;
  transition: background .35s ease;
}
.feat-card:hover { background: var(--bg-soft); }
.feat-card .feat-img {
  aspect-ratio: 5 / 6;
  overflow: hidden;
  background: var(--bg-soft);
}
.feat-card .feat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.feat-card:hover .feat-img img { transform: scale(1.04); }

.feat-card .feat-body {
  display: flex; flex-direction: column; gap: 10px;
}
.feat-card .feat-num {
  font-size: 11px; letter-spacing: 0.32em; color: var(--gray);
}
.feat-card .feat-num em {
  font-style: normal; color: var(--brand); margin-right: 8px;
  font-family: var(--serif); font-size: 14px;
}
.feat-card .feat-title {
  font-family: var(--serif);
  font-size: 26px; line-height: 1.18; font-weight: 500;
}
.feat-card .feat-en {
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gray);
  margin-top: -2px;
}
.feat-card .feat-desc {
  color: var(--gray); font-size: 13.5px; line-height: 1.75;
  margin-top: 8px;
}
.feat-card .feat-link {
  margin-top: 10px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 10px;
}
.feat-card .feat-link::after {
  content: "→"; transition: transform .25s ease;
}
.feat-card:hover .feat-link::after { transform: translateX(4px); color: var(--brand); }

/* ============================================================
   02 · NEW ARRIVAL
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 28px;
}
.p-card {
  display: flex; flex-direction: column; gap: 16px;
}
.p-card .p-img {
  aspect-ratio: 5 / 6;
  background: var(--bg-soft);
  overflow: hidden;
  position: relative;
}
.p-card .p-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.p-card:hover .p-img img { transform: scale(1.04); }
.p-card .p-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: #fff;
  padding: 5px 11px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.p-card .p-tag.brand { color: var(--brand); }
.p-card .p-body {
  display: flex; flex-direction: column; gap: 4px;
  padding: 0 2px;
}
.p-card .p-brand {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gray);
}
.p-card .p-title {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--ink);
  margin-top: 2px;
}
.p-card .p-price {
  font-size: 13px;
  color: var(--ink);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.p-card .p-price small {
  color: var(--gray);
  margin-left: 8px;
  text-decoration: line-through;
  font-size: 12px;
}

/* ============================================================
   03 · EDITORIAL BANNER
   ============================================================ */
.editorial {
  position: relative;
  overflow: hidden;
  background: #faf9f7;
}
.editorial-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  min-height: 78vh;
}
.editorial-img {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.editorial-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.editorial-text {
  padding: 80px 60px;
  display: flex; flex-direction: column; gap: 26px;
  max-width: 720px;
}
.editorial-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--brand);
}
.editorial-title {
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.editorial-title em { font-style: italic; color: var(--gray); }
.editorial-desc {
  font-size: 15px; color: var(--gray); line-height: 1.9;
  max-width: 480px;
}
.editorial-quote {
  border-left: 2px solid var(--brand);
  padding: 4px 0 4px 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 480px;
}

/* ============================================================
   04 · JOURNAL
   ============================================================ */
.journal-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
}
.journal-card {
  display: flex; flex-direction: column;
  gap: 18px;
}
.journal-card.lead { grid-row: span 1; }
.journal-card .j-img {
  aspect-ratio: 5 / 6;
  overflow: hidden;
  background: var(--bg-soft);
}
.journal-card.lead .j-img { aspect-ratio: 4 / 5; }
.journal-card .j-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.journal-card:hover .j-img img { transform: scale(1.04); }
.journal-card .j-meta {
  display: flex; gap: 14px;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gray);
}
.journal-card .j-meta .cat { color: var(--brand); }
.journal-card .j-title {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.35;
  font-weight: 500;
  color: var(--ink);
  margin-top: 2px;
}
.journal-card.lead .j-title {
  font-size: 30px;
  line-height: 1.2;
}
.journal-card .j-excerpt {
  color: var(--gray);
  font-size: 13.5px;
  line-height: 1.85;
  margin-top: 2px;
}

/* ============================================================
   05 · COLLABORATION
   ============================================================ */
.collab {
  background: var(--bg-soft);
}
.collab-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.collab-text {
  padding: 80px 60px;
  display: flex; flex-direction: column; gap: 26px;
  justify-content: center;
}
.collab-tag {
  display: inline-flex; gap: 12px; align-items: center;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--brand);
}
.collab-tag .bar { width: 36px; height: 1px; background: var(--brand); }

.collab-title {
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.15;
  font-weight: 500;
}
.collab-list {
  display: flex; flex-direction: column;
  margin-top: 8px;
}
.collab-list li {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-family: var(--sans);
}
.collab-list li:last-child { border-bottom: 1px solid var(--line); }
.collab-list li .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--brand);
}
.collab-list li .name {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  font-weight: 500;
}
.collab-list li .name small {
  display: block;
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gray);
  margin-top: 3px;
}
.collab-list li .year {
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gray);
}

.collab-visual {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.collab-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ============================================================
   06 · INSTAGRAM WALL
   ============================================================ */
.ig-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 40px;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.ig-grid a {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-soft);
}
.ig-grid a img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease, filter .4s ease;
}
.ig-grid a::after {
  content: "@mini7.select";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.85);
  color: var(--ink);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  opacity: 0;
  transition: opacity .3s ease;
}
.ig-grid a:hover::after { opacity: 1; }
.ig-grid a:hover img { transform: scale(1.08); }

/* ============================================================
   07 · FOOTER
   ============================================================ */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 80px 0 26px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer-brand img {
  height: 30px;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 13px; line-height: 1.85;
  color: var(--gray);
  max-width: 320px;
}
.footer-col h5 {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 13px;
  color: var(--gray);
  transition: color .2s ease;
}
.footer-col ul li a:hover { color: var(--brand); }

.footer-contact {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.85;
}
.footer-contact strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}
.footer-contact strong:first-child { margin-top: 0; }
.footer-contact a { color: var(--gray); }
.footer-contact a:hover { color: var(--brand); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 26px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
}
.footer-bottom .links {
  display: flex; gap: 24px;
}
.footer-bottom .links a:hover { color: var(--brand); }

/* ============================================================
   PAGE HERO (non-index pages)
   ============================================================ */
.page-hero {
  padding: 90px 0 70px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-hero .ph-kicker {
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 4.4vw, 60px);
  font-weight: 500; line-height: 1.15; letter-spacing: -0.005em;
}
.page-hero h1 em { font-style: italic; color: var(--gray); }
.page-hero .ph-desc {
  max-width: 540px;
  margin: 22px auto 0;
  color: var(--gray);
  font-size: 14.5px;
  line-height: 1.9;
}

/* Filter bar */
.filter-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 6px;
  margin-bottom: 56px;
}
.filter-bar a {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--line);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gray);
  transition: all .25s ease;
}
.filter-bar a:hover, .filter-bar a.active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.product-detail {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 70px;
  padding: 70px 0 90px;
}
.pd-gallery .pd-main {
  aspect-ratio: 5 / 6;
  background: var(--bg-soft);
  overflow: hidden;
  margin-bottom: 10px;
}
.pd-gallery .pd-main img { width: 100%; height: 100%; object-fit: cover; }
.pd-gallery .pd-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.pd-gallery .pd-thumbs .thumb {
  aspect-ratio: 1; background: var(--bg-soft); overflow: hidden; cursor: pointer;
  border: 1px solid transparent;
  transition: border-color .2s ease;
}
.pd-gallery .pd-thumbs .thumb:hover { border-color: var(--line); }
.pd-gallery .pd-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-gallery .pd-thumbs .thumb.active { border-color: var(--ink); }

.pd-info { padding-top: 12px; }
.pd-brand { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--brand); }
.pd-name { font-family: var(--serif); font-size: clamp(28px, 2.4vw, 36px); font-weight: 500; line-height: 1.18; margin-top: 12px; letter-spacing: -0.005em; }
.pd-price { font-size: 19px; margin-top: 22px; letter-spacing: 0.04em; }
.pd-price small { color: var(--gray); margin-left: 12px; text-decoration: line-through; font-size: 14px; }
.pd-desc { color: var(--gray); margin-top: 24px; line-height: 1.9; font-size: 14.5px; }
.pd-actions { display: flex; gap: 10px; margin-top: 32px; }
.pd-meta { margin-top: 44px; border-top: 1px solid var(--line); padding-top: 24px; }
.pd-meta .row { display: grid; grid-template-columns: 110px 1fr; gap: 18px; padding: 12px 0; border-bottom: 1px solid var(--line-soft); font-size: 13px; }
.pd-meta .row .k { color: var(--gray); letter-spacing: 0.16em; text-transform: uppercase; font-size: 10px; }

/* ============================================================
   CART
   ============================================================ */
.cart-wrap { padding: 70px 0 90px; display: grid; grid-template-columns: 1.6fr 1fr; gap: 56px; }
.cart-items .ci {
  display: grid; grid-template-columns: 96px 1fr auto auto; gap: 22px;
  padding: 22px 0; border-bottom: 1px solid var(--line); align-items: center;
}
.cart-items .ci .ci-img { aspect-ratio: 1; background: var(--bg-soft); overflow: hidden; }
.cart-items .ci .ci-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-items .ci .ci-name { font-family: var(--serif); font-size: 19px; line-height: 1.3; }
.cart-items .ci .ci-brand { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gray); margin-bottom: 6px; }
.cart-items .ci .qty { display: inline-flex; border: 1px solid var(--line); }
.cart-items .ci .qty button { width: 32px; height: 32px; font-size: 14px; transition: background .2s ease; }
.cart-items .ci .qty button:hover { background: var(--bg-soft); }
.cart-items .ci .qty input { width: 36px; height: 32px; text-align: center; border: 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line); font-family: var(--sans); font-size: 13px; }
.cart-items .ci .ci-price { font-size: 14px; }
.cart-summary { background: var(--bg-soft); padding: 36px; height: fit-content; }
.cart-summary h4 { font-family: var(--serif); font-size: 22px; margin-bottom: 20px; font-weight: 500; }
.cart-summary .sum-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 13.5px; color: var(--gray); border-bottom: 1px solid var(--line); }
.cart-summary .sum-row.total { color: var(--ink); font-size: 17px; font-family: var(--serif); border-bottom: 0; padding-top: 18px; }
.cart-summary .btn { width: 100%; justify-content: center; margin-top: 22px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav-menu { gap: 22px; }
  .nav-left, .nav-right { gap: 22px; }
  .nav-menu a small { display: none; }
  .editorial-text, .collab-text { padding: 80px 50px; }
  .product-detail { gap: 50px; }
}

@media (max-width: 900px) {
  :root { --pad-x: 24px; }
  .section { padding: 90px 0; }
  .nav {
    grid-template-columns: auto auto auto;
    padding: 16px var(--pad-x);
  }
  .nav-left, .nav-right { gap: 0; }
  .nav-toggle { display: block; }
  .nav-menu { display: none; }
  .nav-utility .util-btn span:not(.cart-count) { display: none; }

  body.nav-open {
    overflow: hidden;
  }
  .nav-drawer {
    display: flex;
    position: fixed;
    top: 0; right: 0;
    width: min(360px, 88vw);
    height: 100vh;
    background: #fff;
    z-index: 110;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.22,.61,.36,1);
    flex-direction: column;
    padding: 100px 36px 40px;
    border-left: 1px solid var(--line);
    overflow-y: auto;
  }
  body.nav-open .nav-drawer { transform: translateX(0); }
  .nav-drawer a {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
  }
  .nav-drawer a small {
    display: block;
    font-size: 10px;
    letter-spacing: 0.4em;
    color: var(--gray-2);
    margin-top: 4px;
  }
  .nav-drawer .group-title {
    font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--brand); margin-top: 24px; padding-bottom: 8px;
    border-bottom: 1px solid var(--brand);
  }
  .nav-drawer .group-title:first-child { margin-top: 0; }

  .hero { min-height: 80vh; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 80px var(--pad-x) 50px;
  }
  .hero-right { justify-self: start; align-items: flex-start; text-align: left; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px 40px; padding: 28px var(--pad-x); }
  .hero-eyebrow { top: 24px; }

  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }

  .editorial-inner, .collab-inner { grid-template-columns: 1fr; }
  .editorial-img, .collab-visual { aspect-ratio: 16/10; height: auto; }
  .editorial-text, .collab-text { padding: 70px var(--pad-x); }

  .journal-grid { grid-template-columns: 1fr 1fr; }
  .journal-card.lead { grid-column: span 2; }
  .journal-card.lead .j-img { aspect-ratio: 16 / 10; }

  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .ig-head { flex-direction: column; gap: 24px; align-items: start; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }

  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 50px; }
  .section-head .right { text-align: left; }

  .product-detail { grid-template-columns: 1fr; gap: 40px; padding: 50px 0; }
  .cart-wrap { grid-template-columns: 1fr; gap: 40px; padding: 50px 0; }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .hero-title { font-size: 44px; }
  .hero-text { gap: 28px; padding: 50px var(--pad-x) 40px; }
  .featured-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-card.lead { grid-column: span 1; }
  .journal-card.lead .j-title { font-size: 26px; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .editorial-text, .collab-text { padding: 50px var(--pad-x); }
  .editorial-title { font-size: 38px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: start; text-align: left; }
  .cart-items .ci { grid-template-columns: 80px 1fr; gap: 16px; }
  .cart-items .ci .ci-img { grid-row: span 3; }
  .cart-items .ci .qty, .cart-items .ci .ci-price { grid-column: 2; }
  .pd-actions { flex-direction: column; }
  .pd-actions .btn { width: 100%; justify-content: center; }
}

/* =====================================================
   Newsletter, social icons, search overlay, breadcrumb,
   sort bar, wishlist, related products
   ===================================================== */
.newsletter {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
  background: var(--bg-soft);
}
.newsletter-inner {
  max-width: 880px; margin: 0 auto;
  padding: 0 var(--pad-x);
  text-align: center;
}
.newsletter-eyebrow { display: inline-flex; gap: 10px; align-items: center; }
.newsletter h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 500;
  line-height: 1.25;
  margin: 14px 0 12px;
  color: var(--ink);
}
.newsletter p { font-size: 14px; color: var(--gray); line-height: 1.9; max-width: 540px; margin: 0 auto 28px; }
.newsletter form {
  display: flex; gap: 0;
  max-width: 520px; margin: 0 auto;
  border-bottom: 1px solid var(--ink);
}
.newsletter input {
  flex: 1; padding: 12px 4px;
  font: inherit; border: 0; background: transparent;
  color: var(--ink);
}
.newsletter input:focus { outline: none; }
.newsletter button {
  padding: 12px 20px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 0;
  transition: color .2s ease;
}
.newsletter button:hover { color: var(--brand); }

/* Social icons */
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  transition: all .2s ease;
}
.footer-social a:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
}
.footer-social svg { width: 14px; height: 14px; fill: currentColor; }

/* Search overlay */
.search-overlay {
  position: fixed; inset: 0;
  background: rgba(255,255,255,0.98);
  z-index: 200;
  display: flex; flex-direction: column;
  padding: 40px var(--pad-x) 60px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.search-overlay.open { opacity: 1; pointer-events: auto; }
.search-overlay .so-head {
  display: flex; justify-content: space-between; align-items: center;
  max-width: var(--shell); width: 100%; margin: 0 auto;
}
.search-overlay .so-close {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink); cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 0;
}
.search-overlay .so-close:hover { color: var(--brand); }
.search-overlay .so-form {
  max-width: 880px; width: 100%; margin: 80px auto 0;
  border-bottom: 1px solid var(--ink);
  display: flex; align-items: center; gap: 16px;
  padding-bottom: 14px;
}
.search-overlay .so-form input {
  flex: 1; border: 0; background: transparent;
  font-family: var(--serif); font-size: clamp(24px, 3vw, 36px);
  font-weight: 500; color: var(--ink);
}
.search-overlay .so-form input:focus { outline: none; }
.search-overlay .so-form input::placeholder { color: var(--gray-2); }
.search-overlay .so-sugg {
  max-width: 880px; margin: 30px auto 0;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gray);
}
.search-overlay .so-sugg a {
  display: inline-block; margin: 8px 16px 0 0;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: border-color .2s ease, color .2s ease;
}
.search-overlay .so-sugg a:hover { color: var(--brand); border-color: var(--brand); }

/* Breadcrumb */
.breadcrumb {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gray);
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.breadcrumb a { color: var(--gray); transition: color .2s ease; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { margin: 0 10px; color: var(--gray-2); }
.breadcrumb .current { color: var(--ink); }

/* Sort bar */
.sort-bar {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  padding: 20px 0 28px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray);
}
.sort-bar .count { color: var(--ink); }
.sort-bar .count em { color: var(--brand); font-style: normal; margin-right: 4px; }
.sort-bar select {
  padding: 8px 14px; padding-right: 32px;
  border: 1px solid var(--line);
  background: transparent;
  font: inherit;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'><path d='M2 4l3 3 3-3' stroke='%23171717' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.sort-bar select:hover { border-color: var(--ink); }

/* Wishlist heart on product card */
.p-wishlist {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .25s ease, transform .25s ease, color .2s ease;
  color: var(--ink);
  border: 0;
}
.p-card:hover .p-wishlist { opacity: 1; transform: translateY(0); }
.p-wishlist:hover { color: var(--brand); }
.p-wishlist svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.p-wishlist.active svg { fill: var(--brand); stroke: var(--brand); }

/* Related products */
.related {
  border-top: 1px solid var(--line);
  padding: 80px 0 100px;
}
.related .section-head { margin-bottom: 40px; }

/* IG hover with brand */
.ig-grid a::after {
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--brand);
}

/* Footer link with underline trail */
.footer-col ul li a {
  position: relative;
  display: inline-block;
}
.footer-col ul li a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.footer-col ul li a:hover::after { transform: scaleX(1); }

/* Logo subtle hover */
.brand img { transition: opacity .2s ease; }
.brand:hover img { opacity: 0.78; }

/* Language switcher */
.lang-switch {
  display: inline-flex; gap: 8px; align-items: center;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
}
.lang-switch button {
  padding: 4px 6px;
  color: var(--gray-2);
  cursor: pointer;
  transition: color .2s ease;
}
.lang-switch button.active { color: var(--ink); }
.lang-switch button:hover { color: var(--brand); }
.lang-switch .sep { color: var(--line); }

/* Continue shopping link in cart */
.cart-continue {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 30px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  transition: color .2s ease, border-color .2s ease;
}
.cart-continue:hover { color: var(--brand); border-color: var(--brand); }

/* Empty cart polish */
.cart-empty {
  padding: 80px 20px;
  text-align: center;
  border: 1px dashed var(--line);
}
.cart-empty .e-title {
  font-family: var(--serif);
  font-size: 24px;
  margin: 0 0 12px;
  color: var(--ink);
}
.cart-empty .e-desc {
  font-size: 13.5px; color: var(--gray);
  margin: 0 0 26px;
}

/* Form input enhanced focus */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(233, 65, 31, 0.08);
}

/* Toast */
.toast {
  position: fixed; left: 50%; bottom: 40px;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff;
  padding: 13px 22px 13px 18px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 9999;
  border-left: 3px solid var(--brand);
  display: inline-flex; align-items: center; gap: 12px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast::before { content: ""; width: 6px; height: 6px; background: var(--brand); border-radius: 50%; }

/* Marquee */
.marquee {
  background: var(--ink-soft);
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee-track {
  display: flex; gap: 50px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  padding: 12px 0;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-track .sep { color: var(--brand); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
