/* =============================================================================
   Grivenza Jewelry — stylesheet
   Tokens → base → layout → components → pages → responsive
   ========================================================================== */

/* ---------------------------------------------------------------- tokens */
:root {
  --ink: #101014;
  --ink-soft: #5a5a63;
  --ink-faint: #8b8b93;
  --paper: #ffffff;
  --paper-2: #f6f4f0;
  --paper-3: #efece5;
  --gold: #9b8269;
  --gold-dark: #7d6954;
  --gold-tint: #f3eee8;
  --cursor-gold: #b8963f;
  --cursor-gold-dark: #8f7328;
  --btn: #292929;
  --btn-hover: #9b8269;
  --line: #e6e2da;
  --line-strong: #cdc7ba;
  --sale: #b4342c;
  --ok: #2c7a4b;

  --f-display: "Cormorant Garamond", Georgia, serif;
  --f-body: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1320px;
  --gut: 20px;
  --sec-y: 80px;
  --r: 2px;
  --r-btn: 4px;
  --t: 250ms ease;
  --shadow: 0 10px 40px rgba(16, 16, 20, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
body.is-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.15;
}
p {
  margin: 0 0 1em;
}
table {
  border-collapse: collapse;
  width: 100%;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
}
.skip-link:focus {
  left: 0;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gut);
  width: 100%;
}
.ico {
  flex: none;
}

/* ---------------------------------------------------------------- buttons
   Live-site variants:
   - dark   → primary actions (Add to cart on PDP, Filter, Continue shopping)
   - card   → product-card ATC (white + border → dark on hover)
   - accent → Checkout / Buy it now / Subscribe
   - light  → CTAs on dark backgrounds
   - ghost  → secondary outline
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: var(--r-btn);
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
  transition:
    background var(--t),
    color var(--t),
    border-color var(--t);
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
}
.btn--dark {
  background: var(--btn);
  color: #fff;
  border-color: var(--btn);
}
.btn--dark:hover {
  background: var(--btn-hover);
  border-color: var(--btn-hover);
  color: #fff;
}
.btn--card {
  background: #fff;
  color: #121212;
  border-color: #121212;
}
.btn--card:hover {
  background: var(--btn);
  border-color: var(--btn);
  color: #fff;
}
.btn--accent,
.btn--gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn--accent:hover,
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
}
.btn--light {
  background: #fff;
  color: var(--btn);
  border-color: #fff;
}
.btn--light:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: var(--btn);
  border-color: var(--btn);
}
.btn--ghost:hover {
  background: var(--btn);
  border-color: var(--btn);
  color: #fff;
}
.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
}
.btn--ghost-light:hover {
  background: #fff;
  border-color: #fff;
  color: var(--btn);
}
.btn--block {
  width: 100%;
}
.btn--sm {
  padding: 10px 18px;
  font-size: 11px;
  letter-spacing: 0.12em;
}
.btn[disabled],
.btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.linkbtn {
  background: none;
  border: 0;
  padding: 0;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.linkbtn:hover {
  color: var(--sale);
}
.link-x {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.link-x:hover {
  color: var(--gold);
}

/* ---------------------------------------------------------------- type helpers */
.eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.fine {
  font-size: 12px;
  color: var(--ink-faint);
  margin: 0 0 10px;
  line-height: 1.6;
}
.fine a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-title {
  font-size: 38px;
  margin: 0 0 26px;
  letter-spacing: 0.01em;
}
.side__title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 16px;
}

/* ---------------------------------------------------------------- announcement */
.announce {
  background: var(--ink);
  color: #fff;
}
.announce__in {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 38px;
}
.announce p {
  margin: 0;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.announce__x {
  position: absolute;
  right: var(--gut);
  background: none;
  border: 0;
  color: #fff;
  opacity: 0.6;
  display: flex;
}
.announce__x:hover {
  opacity: 1;
}

/* ---------------------------------------------------------------- header */
.hdr {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #000;
  color: #fff;
}
.hdr.is-stuck {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.hdr__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-height: 88px;
  gap: 16px;
}

.hdr__burger {
  display: none;
  background: none;
  border: 0;
  padding: 6px;
  color: #fff;
  z-index: 1;
}

.hdr__search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  padding: 8px 0;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  z-index: 1;
}
.hdr__search:hover {
  opacity: 0.75;
}
.hdr__search-label {
  color: rgba(255, 255, 255, 0.92);
}

.logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  z-index: 0;
  text-decoration: none;
  color: #fff;
}
.logo:hover {
  color: #fff;
  opacity: 0.92;
}
.logo__wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
  color: inherit;
}
.logo__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 0.05em;
}
.logo__tag {
  font-family: Jost, system-ui, sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-top: 5px;
  opacity: 0.88;
  white-space: nowrap;
  padding-right: 0.08em;
}
.logo--ftr {
  position: static;
  transform: none;
  left: auto;
  top: auto;
  color: var(--ink);
  display: inline-flex;
}
.logo--ftr:hover {
  color: var(--ink);
  opacity: 0.8;
}
.logo--ftr .logo__name {
  font-size: 30px;
}
.logo--ftr .logo__tag {
  opacity: 0.7;
}

.hdr__tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px 22px;
  flex: none;
  margin-left: auto;
  z-index: 1;
}
.tool {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 0;
  background: none;
  border: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.tool:hover {
  opacity: 0.75;
}
.tool--icon {
  display: none;
}
.badge {
  position: absolute;
  top: -2px;
  right: -10px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}

.nav {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 28px;
  list-style: none;
  margin: 0;
  padding: 14px 0 16px;
  justify-content: center;
}
.nav a {
  display: block;
  padding: 4px 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #fff;
  position: relative;
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: #fff;
  transition: right var(--t);
}
.nav a:hover::after,
.nav a.is-on::after {
  right: 0;
}
.nav a.is-on {
  opacity: 1;
}
.nav a:hover {
  opacity: 0.85;
}

.drawer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.drawer__links a:hover {
  color: var(--gold);
}

/* ---------------------------------------------------------------- drawers */
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(16, 16, 20, 0.5);
  z-index: 80;
  animation: fade 0.25s;
}
@keyframes fade {
  from {
    opacity: 0;
  }
}

/* display:flex must not override the HTML hidden attribute */
.drawer[hidden],
.scrim[hidden] {
  display: none !important;
}

.drawer {
  position: fixed;
  z-index: 90;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  max-height: 100dvh;
}
.drawer--right {
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 92vw);
  animation: inR 0.3s ease;
}
.drawer--left {
  top: 0;
  left: 0;
  bottom: 0;
  width: min(340px, 86vw);
  animation: inL 0.3s ease;
}
.drawer--top {
  top: 0;
  left: 0;
  right: 0;
  padding: 24px 0 30px;
  border-bottom: 1px solid var(--line);
  animation: inT 0.3s ease;
}
@keyframes inR {
  from {
    transform: translateX(100%);
  }
}
@keyframes inL {
  from {
    transform: translateX(-100%);
  }
}
@keyframes inT {
  from {
    transform: translateY(-100%);
  }
}

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.drawer__title {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
}
.drawer__x {
  background: none;
  border: 0;
  padding: 6px;
  display: flex;
  color: var(--ink-soft);
}
.drawer__x:hover {
  color: var(--ink);
}
.drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px;
}
.drawer__foot {
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}
.drawer__cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.drawer__nav {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  flex: 1;
  overflow-y: auto;
}
.drawer__nav a {
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.drawer__nav a:hover {
  background: var(--paper-2);
  color: var(--gold);
}
.drawer__social {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------------------------------------------------------------- search drawer */
.srch__form {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 12px;
}
.srch__form input[type="search"] {
  flex: 1;
  min-width: 0;
  border: 0;
  background: none;
  font-family: var(--f-display);
  font-size: 24px;
  padding: 4px 0;
}
.srch__form input[type="search"]:focus {
  outline: none;
}
.srch__pop {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--ink-faint);
}
.srch__pop a {
  padding: 5px 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--ink);
  letter-spacing: 0.05em;
}
.srch__pop a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.srch__pop--center {
  justify-content: center;
  margin: 18px 0;
}
.srch__sugg {
  margin-top: 14px;
  max-height: 52vh;
  overflow-y: auto;
}
.sugg {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.sugg img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  flex: none;
  background: var(--paper-2);
}
.sugg__t {
  font-size: 13px;
  line-height: 1.35;
}
.sugg__p {
  font-size: 12px;
  color: var(--gold);
  margin: 2px 0 0;
}
.sugg--none {
  padding: 14px 0;
  color: var(--ink-faint);
  font-size: 13px;
}

/* ---------------------------------------------------------------- free shipping */
.ship {
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--gold-tint);
}
.ship--page {
  border: 1px solid var(--line);
  margin-bottom: 26px;
  border-radius: var(--r);
}
.ship__msg {
  margin: 0 0 9px;
  font-size: 12.5px;
}
.ship__bar {
  height: 3px;
  background: rgba(16, 16, 20, 0.12);
  border-radius: 3px;
  overflow: hidden;
}
.ship__bar span {
  display: block;
  height: 100%;
  background: var(--gold);
  transition: width 0.4s ease;
}

/* ---------------------------------------------------------------- mini cart */
.mini {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mini__row {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.mini__img img {
  width: 78px;
  height: 92px;
  object-fit: cover;
  background: var(--paper-2);
}
.mini__info {
  flex: 1;
  min-width: 0;
}
.mini__name {
  display: block;
  font-size: 13px;
  line-height: 1.35;
  padding-right: 20px;
}
.mini__name:hover {
  color: var(--gold);
}
.mini__var {
  margin: 3px 0;
  font-size: 11px;
  color: var(--ink-faint);
}
.mini__price {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--gold);
}
.mini__x {
  position: absolute;
  top: 14px;
  right: 0;
  background: none;
  border: 0;
  color: var(--ink-faint);
  display: flex;
  padding: 2px;
}
.mini__x:hover {
  color: var(--sale);
}

.totals {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0 10px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.totals strong {
  font-family: var(--f-display);
  font-size: 22px;
  text-transform: none;
  letter-spacing: 0;
}

/* ---------------------------------------------------------------- empty / toast */
.empty {
  text-align: center;
  padding: 38px 10px;
}
.empty--page {
  padding: 70px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.empty__title {
  font-family: var(--f-display);
  font-size: 24px;
  margin: 0 0 16px;
}
.empty__note {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 16px 0 0;
}
.empty__note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 120;
  background: var(--ink);
  color: #fff;
  padding: 13px 22px;
  border-radius: var(--r);
  font-size: 13px;
  box-shadow: var(--shadow);
  animation: up 0.3s ease;
  max-width: 92vw;
}
.toast--err {
  background: var(--sale);
}
@keyframes up {
  from {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
}

.alert {
  padding: 13px 16px;
  border-radius: var(--r);
  font-size: 13px;
  margin-bottom: 18px;
}
.alert--err {
  background: #fdecea;
  color: var(--sale);
  border: 1px solid #f3c9c5;
}
.alert p {
  margin: 0;
}

/* ---------------------------------------------------------------- sections */
.sec {
  padding: var(--sec-y) 0;
}
.sec--tint {
  background: var(--paper-2);
}
.sec__head {
  text-align: center;
  margin-bottom: 40px;
}
.sec__title {
  font-size: 36px;
}

.crumbs {
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-faint);
}
.crumbs .wrap {
  display: flex;
  gap: 9px;
  align-items: center;
  padding-top: 13px;
  padding-bottom: 13px;
}
.crumbs a:hover {
  color: var(--gold);
}

/* ---------------------------------------------------------------- hero */
.hero {
  position: relative;
  background: var(--paper-2);
  overflow: hidden;
  height: 750px;
}
.hero__track {
  position: relative;
  height: 100%;
}
.hero__slide {
  display: none;
  position: absolute;
  inset: 0;
}
.hero__slide.is-on {
  display: block;
  animation: fade 0.5s;
}
.hero__slide picture,
.hero__slide img {
  display: block;
  width: 100%;
  height: 100%;
}
.hero__slide img {
  object-fit: cover;
  object-position: center center;
}
.hero__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  justify-content: center;
  gap: 9px;
  z-index: 2;
}
.hero__dots button {
  width: 26px;
  height: 3px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
}
.hero__dots button.is-on {
  background: var(--gold);
}

/* ---------------------------------------------------------------- categories */
.cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cat {
  display: block;
  text-align: center;
}
.cat__media {
  display: block;
  overflow: hidden;
  background: var(--paper-2);
  aspect-ratio: 1/1;
}
.cat__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cat:hover .cat__media img {
  transform: scale(1.06);
}
.cat__name {
  display: block;
  margin-top: 14px;
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 600;
}
.cat:hover .cat__name {
  color: var(--gold);
}
.cat__count {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 3px;
}

/* ---------------------------------------------------------------- feature block */
.feat__in {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.feat--rev .feat__in {
  direction: rtl;
}
.feat--rev .feat__in > * {
  direction: ltr;
}
.feat__title {
  font-size: 34px;
  margin: 0 0 18px;
  line-height: 1.2;
}
.feat__body {
  font-size: 14.5px;
  color: var(--ink-soft);
  max-width: 52ch;
}
.feat__text .btn {
  margin-top: 12px;
}
.feat__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.feat__cell {
  overflow: hidden;
  background: var(--paper-2);
  aspect-ratio: 1/1;
}
.feat__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.feat__cell:hover img {
  transform: scale(1.05);
}

/* ---------------------------------------------------------------- product card */
.grid {
  display: grid;
  gap: 26px 22px;
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--list {
  grid-template-columns: 1fr;
}

.card {
  display: flex;
  flex-direction: column;
}
.card__media {
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
  aspect-ratio: 1/1;
}
.card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 0.45s ease,
    transform 0.6s ease;
}
.card__img--b {
  opacity: 0;
}
.card:hover .card__img--a {
  opacity: 0;
}
.card:hover .card__img--b {
  opacity: 1;
  transform: scale(1.04);
}
.card.is-sold .card__media {
  opacity: 0.72;
}

.card__flags {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.flag {
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.flag--sale {
  background: var(--sale);
}
.flag--sold {
  background: var(--ink);
}

.card__rail {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
  opacity: 0;
  transform: translateX(8px);
  transition:
    opacity var(--t),
    transform var(--t);
}
.card:hover .card__rail,
.card:focus-within .card__rail {
  opacity: 1;
  transform: none;
}
.rail__btn {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}
.rail__btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.rail__btn.is-on {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.card__body {
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__title {
  font-size: 13.5px;
  line-height: 1.4;
  min-height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card__title:hover {
  color: var(--gold);
}
.card__price {
  margin: 8px 0 12px;
  font-size: 14px;
  color: var(--gold);
  display: flex;
  gap: 9px;
  align-items: baseline;
}
.card__price s {
  color: var(--ink-faint);
  font-size: 12.5px;
}
.card__body .btn {
  margin-top: auto;
}

/* list view */
.grid--list .card {
  flex-direction: row;
  gap: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.grid--list .card__media {
  width: 230px;
  flex: none;
}
.grid--list .card__body {
  padding-top: 0;
  justify-content: center;
}
.grid--list .card__title {
  font-size: 18px;
  font-family: var(--f-display);
  min-height: 0;
}
.grid--list .card__body .btn {
  margin-top: 14px;
  align-self: flex-start;
  width: auto;
  padding-inline: 32px;
}

/* ---------------------------------------------------------------- rail carousel */
.rail {
  position: relative;
}
.rail__track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  scrollbar-width: none;
}
.rail__track::-webkit-scrollbar {
  display: none;
}
.rail__item {
  flex: 0 0 calc(25% - 16.5px);
  scroll-snap-align: start;
}
.rail__nav {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--btn);
  color: #fff;
  border: 0;
  border-radius: 50%;
  z-index: 3;
  cursor: pointer;
  transition:
    background 0.5s,
    color 0.5s;
}
.rail__nav:hover {
  background: var(--gold);
  color: #fff;
}
.rail__nav .ico {
  width: 14px;
  height: 14px;
  stroke-width: 1.8;
}
.rail__nav--prev {
  left: -18px;
}
.rail__nav--next {
  right: -18px;
}

/* ---------------------------------------------------------------- promo tiles */
.promo__head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}
.promo__body {
  font-size: 15px;
  color: var(--ink-soft);
}
.promo__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 22px;
  flex-wrap: wrap;
}
.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.tile {
  background: var(--paper);
  padding: 38px 30px;
  display: block;
  transition: background var(--t);
}
.tile:hover {
  background: var(--paper-2);
}
.tile__no {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 14px;
}
.tile__title {
  display: block;
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
.tile__sub {
  display: block;
  font-size: 13.5px;
  color: var(--ink-soft);
}

/* ---------------------------------------------------------------- tabs */
.tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}
.tabs__btn {
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 12px 20px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: -1px;
}
.tabs__btn:hover {
  color: var(--ink);
}
.tabs__btn.is-on {
  color: var(--ink);
  border-bottom-color: var(--gold);
}
.tabs__panel {
  display: none;
}
.tabs__panel.is-on {
  display: block;
  animation: fade 0.3s;
}

/* ---------------------------------------------------------------- usp */
.usp {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 38px 0;
}
.usp__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.usp__item img {
  margin: 0 auto 12px;
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.usp__item p {
  margin: 0;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------------------------------------------------------------- collection */
.clay {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 46px;
  padding: 44px 20px 70px;
  align-items: start;
}
.chead {
  padding: 38px 0 0;
  text-align: center;
}
.chead__title {
  font-size: 34px;
}
.chead__desc {
  max-width: 70ch;
  margin: 14px auto 0;
  font-size: 14px;
  color: var(--ink-soft);
}

.filters__head {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.filters__head h2 {
  font-size: 20px;
}
.fset {
  border: 0;
  border-bottom: 1px solid var(--line);
  margin: 0;
  padding: 0 0 22px;
  margin-bottom: 22px;
}
.fset legend {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0;
  margin-bottom: 14px;
}
.fset__note {
  font-size: 12px;
  color: var(--ink-faint);
  margin: 0 0 10px;
}
.check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  font-size: 13.5px;
  cursor: pointer;
}
.check input {
  width: 15px;
  height: 15px;
  accent-color: var(--gold);
}
.range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.range label {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  padding: 0 10px;
}
.range span {
  color: var(--ink-faint);
  font-size: 13px;
}
.range input {
  border: 0;
  padding: 9px 6px;
  width: 100%;
  font: inherit;
  font-size: 13px;
  background: none;
}
.range input:focus {
  outline: none;
}
.filters__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.toolbar__count {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.toolbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.toolbar__filter {
  display: none;
}
.sortsel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-soft);
}
.sortsel select {
  border: 1px solid var(--line);
  padding: 8px 10px;
  font: inherit;
  font-size: 12.5px;
  background: var(--paper);
  border-radius: var(--r);
}
.viewsel {
  display: flex;
  gap: 2px;
}
.viewsel a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink-faint);
}
.viewsel a.is-on {
  border-color: var(--ink);
  color: var(--ink);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: -8px 0 26px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 12px;
}
.chip:hover {
  border-color: var(--sale);
  color: var(--sale);
}

.pager {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 52px;
}
.pager a {
  min-width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  font-size: 13px;
}
.pager a:hover {
  border-color: var(--ink);
}
.pager a.is-on {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

/* ---------------------------------------------------------------- product page */
.pdp {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  padding-top: 44px;
  padding-bottom: 20px;
  align-items: start;
}
.gal__stage {
  position: relative;
  background: var(--paper-2);
  aspect-ratio: 1/1;
  overflow: hidden;
}
.gal__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gal__img.is-on {
  opacity: 1;
}
.gal__counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 12px;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.gal__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.gal__thumb {
  width: 78px;
  height: 78px;
  flex: none;
  border: 1px solid var(--line);
  padding: 0;
  background: none;
  overflow: hidden;
}
.gal__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gal__thumb.is-on {
  border-color: var(--gold);
}

.pdp__vendor {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}
.pdp__title {
  font-size: 32px;
  margin: 0 0 16px;
  line-height: 1.2;
}
.pdp__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 6px;
}
.pdp__price span {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--gold);
}
.pdp__price s {
  color: var(--ink-faint);
  font-size: 16px;
}
.pdp__urgency {
  font-size: 12.5px;
  color: var(--ink-soft);
  padding: 11px 14px;
  background: var(--gold-tint);
  margin: 16px 0 22px;
  border-radius: var(--r);
}

.pdp__variants {
  margin-bottom: 18px;
}
.varopts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 9px;
}
.varopt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.varopt span {
  display: inline-block;
  padding: 9px 16px;
  border: 1px solid var(--line);
  font-size: 12.5px;
  cursor: pointer;
  border-radius: var(--r);
}
.varopt input:checked + span {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.pdp__avail {
  font-size: 13px;
  margin: 0 0 18px;
}
.pdp__avail strong {
  font-weight: 500;
}
.is-in {
  color: var(--ok);
}
.is-low {
  color: var(--gold-dark);
}
.is-out {
  color: var(--sale);
}

.pdp__actions {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 10px;
}
.qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.qty button {
  width: 40px;
  background: none;
  border: 0;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
}
.qty button:hover {
  color: var(--gold);
}
.qty input,
.qty span {
  width: 46px;
  text-align: center;
  border: 0;
  font: inherit;
  font-size: 14px;
  background: none;
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.qty--sm button {
  width: 30px;
  height: 30px;
}
.qty--sm input,
.qty--sm span {
  width: 36px;
  font-size: 13px;
}
.pdp__incart {
  font-size: 12px;
  color: var(--ink-faint);
  margin: 0 0 14px;
}

.pdp__mini {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.minibtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  padding: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.minibtn:hover,
.minibtn.is-on {
  color: var(--gold);
}

.pdp__cats {
  font-size: 12.5px;
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.pdp__cats a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pdp__cats a:hover {
  color: var(--gold);
}
.pdp__share {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.rte {
  max-width: 80ch;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.rte h3 {
  font-size: 20px;
  margin: 26px 0 10px;
  color: var(--ink);
}
.rte a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.spectable {
  max-width: 640px;
  font-size: 14px;
}
.spectable th,
.spectable td {
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.spectable th {
  width: 40%;
  font-weight: 500;
  color: var(--ink-soft);
}

.sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(16, 16, 20, 0.08);
  animation: up 0.3s ease;
}
.sticky__in {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 11px;
  padding-bottom: 11px;
}
.sticky img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  flex: none;
}
.sticky__meta {
  flex: 1;
  min-width: 0;
}
.sticky__name {
  margin: 0;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky__price {
  margin: 0;
  font-size: 13px;
  color: var(--gold);
}

/* ---------------------------------------------------------------- cart page */
.cartlay {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 46px;
  align-items: start;
}
.carttable {
  font-size: 14px;
}
.carttable th {
  text-align: left;
  padding: 0 12px 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}
.carttable td {
  padding: 20px 12px 20px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.cartprod {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cartprod img {
  width: 82px;
  height: 96px;
  object-fit: cover;
  background: var(--paper-2);
}
.cartprod__name {
  font-size: 13.5px;
  line-height: 1.4;
  display: block;
}
.cartprod__name:hover {
  color: var(--gold);
}
.cartprod__var {
  margin: 4px 0 0;
  font-size: 11.5px;
  color: var(--ink-faint);
}
.cartlay__side {
  border: 1px solid var(--line);
  padding: 26px 24px;
  border-radius: var(--r);
  background: var(--paper-2);
}
.cartlay__side .btn {
  margin-bottom: 10px;
}
.cartlay__side .link-x {
  display: block;
  text-align: center;
  margin-top: 6px;
}

/* ---------------------------------------------------------------- compare */
.cmpscroll {
  overflow-x: auto;
}
.cmp {
  min-width: 760px;
  font-size: 13.5px;
}
.cmp th,
.cmp td {
  border: 1px solid var(--line);
  padding: 16px;
  text-align: left;
  vertical-align: top;
}
.cmp thead th {
  width: 23%;
  text-align: center;
  background: var(--paper-2);
}
.cmp thead img {
  width: 100%;
  max-width: 170px;
  margin: 0 auto 12px;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.cmp__name {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.cmp__name:hover {
  color: var(--gold);
}
.cmp tbody th {
  width: 150px;
  background: var(--paper-2);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.cmp__tag {
  display: block;
  font-size: 12px;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------------------------------------------------------------- forms */
.field {
  display: block;
  margin-bottom: 18px;
}
.field__label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 7px;
  color: var(--ink-soft);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 12px 14px;
  font: inherit;
  font-size: 14px;
  border-radius: var(--r);
  transition: border-color var(--t);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea {
  resize: vertical;
}
.field.has-err input,
.field.has-err textarea {
  border-color: var(--sale);
}
.field__err {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--sale);
}
.field2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact__blurb {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 52ch;
}
.contact__list {
  list-style: none;
  margin: 26px 0;
  padding: 0;
}
.contact__list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact__list .ico {
  color: var(--gold);
  margin-top: 3px;
}
.contact__label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 3px;
}
.contact__list a {
  font-size: 14px;
  line-height: 1.5;
}
.contact__list a:hover {
  color: var(--gold);
}
.contact__map {
  border: 1px solid var(--line);
}
.contact__map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.searchpage {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 560px;
  margin: 22px auto 0;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 10px;
}
.searchpage input {
  flex: 1;
  border: 0;
  background: none;
  font: inherit;
  font-size: 16px;
  padding: 6px 0;
}
.searchpage input:focus {
  outline: none;
}

.auth {
  max-width: 430px;
  margin: 0 auto;
  text-align: left;
}
.auth .page-title {
  text-align: center;
}
.auth__note {
  font-size: 12.5px;
  color: var(--ink-faint);
  text-align: center;
  margin-bottom: 26px;
}
.auth__links {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  font-size: 12.5px;
}
.auth__links a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.auth__links a:hover {
  color: var(--gold);
}

.acct {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 46px;
  align-items: start;
}
.acct__nav {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
}
.acct__nav a {
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.acct__nav a:last-child {
  border-bottom: 0;
}
.acct__nav a.is-on,
.acct__nav a:hover {
  background: var(--paper-2);
  color: var(--gold);
}

.doc {
  max-width: 760px;
  margin: 0 auto;
}
.doc__meta {
  font-size: 12px;
  color: var(--ink-faint);
  margin-bottom: 28px;
}
.doc__foot {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
}
.doc__foot a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.err__code {
  font-family: var(--f-display);
  font-size: 82px;
  line-height: 1;
  color: var(--gold);
  margin: 0 0 10px;
}
.err__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 26px;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------- newsletter */
.news {
  background: var(--ink);
  color: #fff;
  padding: 46px 0;
}
.news__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.news__copy {
  margin: 0;
  font-family: var(--f-display);
  font-size: 23px;
  max-width: 44ch;
}
.news__form {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 280px;
  max-width: 480px;
}
.news__form input[type="email"] {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 11px 2px;
  font: inherit;
  font-size: 14px;
}
.news__form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.news__form input[type="email"]:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

/* ---------------------------------------------------------------- footer */
.ftr {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding-top: 56px;
}
.ftr__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 46px;
}
.logo--ftr {
  margin-bottom: 16px;
}
.ftr__blurb {
  font-size: 13.5px;
  color: var(--ink-soft);
  max-width: 38ch;
}
.ftr__social {
  display: flex;
  gap: 8px;
  margin: 18px 0 26px;
}
.ftr__social a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.ftr__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.ftr__head {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 18px;
  font-family: var(--f-body);
}
.ftr__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ftr__list li {
  margin-bottom: 11px;
}
.ftr__list a {
  font-size: 13.5px;
  color: var(--ink-soft);
}
.ftr__list a:hover {
  color: var(--gold);
}
.ftr__list--contact li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.ftr__list--contact .ico {
  color: var(--gold);
  margin-top: 3px;
  flex: none;
}

.country__row {
  display: flex;
  gap: 8px;
}
.country select {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  padding: 9px 10px;
  font: inherit;
  font-size: 12.5px;
  border-radius: var(--r);
}

/* ---------------------------------------------------------------- mobile bar */
.mbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 75;
  background: #fff;
  border-top: 1px solid var(--line);
}
.mbar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 9px 2px;
  position: relative;
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.mbar a:hover {
  color: var(--gold);
}
.mbar .badge {
  top: 4px;
  right: calc(50% - 22px);
}

/* =============================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1200px) {
  .nav ul {
    gap: 2px 16px;
  }
  .nav a {
    font-size: 12px;
  }
  .hero {
    height: 650px;
  }
  .rail__nav--prev {
    left: -6px;
  }
  .rail__nav--next {
    right: -6px;
  }
}

@media (max-width: 992px) {
  :root {
    --sec-y: 56px;
  }
  .hdr__burger {
    display: block;
  }
  .hdr__search-label {
    display: none;
  }
  .nav {
    display: none;
  }
  .hdr__top {
    min-height: 64px;
    gap: 12px;
  }
  .logo__name {
    font-size: 22px;
    letter-spacing: 0.22em;
  }
  .logo__tag {
    font-size: 8px;
    letter-spacing: 0.36em;
    margin-top: 4px;
  }
  .hdr__search {
    margin-left: auto;
    padding: 8px;
  }
  .hdr__tools {
    gap: 12px;
    margin-left: 0;
  }
  .tool--label span {
    display: none;
  }
  .tool--label[href*="login"] {
    display: none;
  }
  .tool--icon {
    display: none;
  }
  .hero {
    height: 450px;
  }
  .sec__title {
    font-size: 30px;
  }
  .page-title {
    font-size: 30px;
  }
  .cats {
    grid-template-columns: repeat(2, 1fr);
  }
  .feat__in {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feat--rev .feat__in {
    direction: ltr;
  }
  .feat__title {
    font-size: 27px;
  }
  .grid--4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .rail__item {
    flex-basis: calc(33.333% - 15px);
  }
  .tiles {
    grid-template-columns: 1fr;
  }
  .clay {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .toolbar__filter {
    display: inline-flex;
  }
  .filters {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(340px, 88vw);
    z-index: 90;
    background: var(--paper);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
  }
  .filters.is-open {
    transform: none;
  }
  .filters__head {
    display: flex;
  }
  .filters__form {
    padding: 20px;
  }
  .pdp {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .pdp__title {
    font-size: 26px;
  }
  .cartlay {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .acct {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ftr__grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
  .usp__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 767px) {
  :root {
    --sec-y: 44px;
    --gut: 16px;
  }
  body {
    padding-bottom: 58px;
  }
  .mbar {
    display: flex;
  }
  .logo__name {
    font-size: 20px;
    letter-spacing: 0.2em;
  }
  .logo__tag {
    font-size: 7.5px;
  }
  .sec__title {
    font-size: 25px;
  }
  .page-title {
    font-size: 25px;
  }
  .chead__title {
    font-size: 25px;
  }
  .grid {
    gap: 22px 14px;
  }
  .grid--4,
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .rail__item {
    flex-basis: calc(50% - 11px);
  }
  .rail__nav {
    display: none;
  }
  .feat__grid {
    gap: 10px;
  }
  .news__in {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .news__copy {
    font-size: 20px;
    max-width: none;
  }
  .news__form {
    max-width: none;
  }
  .ftr__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .toolbar {
    gap: 12px;
  }
  .toolbar__right {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
  .hero {
    height: 400px;
  }
  .hero__dots {
    bottom: 10px;
  }
  .drawer--top {
    padding: 18px 0 22px;
  }
  .srch__form input[type="search"] {
    font-size: 19px;
  }
  .pdp__price span {
    font-size: 24px;
  }
  .field2 {
    grid-template-columns: 1fr;
  }

  /* cart table → stacked cards */
  .carttable thead {
    display: none;
  }
  .carttable tr {
    display: block;
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
  }
  .carttable td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border: 0;
    padding: 6px 0;
  }
  .carttable td::before {
    content: attr(data-label);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-faint);
  }
  .carttable td:first-child::before {
    display: none;
  }
  .carttable td:first-child {
    display: block;
  }
  .cartprod img {
    width: 70px;
    height: 82px;
  }

  .grid--list .card {
    flex-direction: column;
    gap: 14px;
  }
  .grid--list .card__media {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 300px;
  }
  .sec__title {
    font-size: 22px;
  }
  .cats {
    gap: 14px;
  }
  .cat__name {
    font-size: 16px;
  }
  .tile {
    padding: 26px 20px;
  }
  .tile__title {
    font-size: 20px;
  }
  .usp__grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .pdp__actions {
    flex-wrap: wrap;
  }
  .pdp__actions .qty {
    flex: 1;
  }
  .pdp__actions .btn {
    flex: 1 1 100%;
  }
}

/* ---------------------------------------------------------------- a11y */
@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;
  }
  html.has-cur,
  html.has-cur * {
    cursor: auto !important;
  }
  html.has-cur button,
  html.has-cur a,
  html.has-cur [role="button"],
  html.has-cur .btn {
    cursor: pointer !important;
  }
  .cur {
    display: none !important;
  }
}

/* ---------------------------------------------------------------- luxury cursor (desktop only) */
.cur {
  position: fixed;
  inset: 0;
  width: 0;
  height: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms ease;
}
.cur.is-on {
  opacity: 1;
}
.cur__ring,
.cur__core,
.cur__label {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  will-change: transform;
}
.cur__ring {
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border: 1px solid rgba(16, 16, 20, 0.45);
  border-radius: 50%;
  background: transparent;
  transition:
    width 260ms cubic-bezier(0.22, 1, 0.36, 1),
    height 260ms cubic-bezier(0.22, 1, 0.36, 1),
    margin 260ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms ease,
    background 260ms ease,
    opacity 220ms ease;
}
.cur__core {
  width: 0;
  height: 0;
}
.cur__dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  background: var(--ink);
  border: 1px solid var(--cursor-gold);
  transform: rotate(45deg) scale(1);
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    background 240ms ease,
    border-color 240ms ease,
    width 240ms ease,
    height 240ms ease,
    margin 240ms ease;
}
.cur__label {
  font-family: var(--f-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cursor-gold);
  white-space: nowrap;
  opacity: 0;
  margin-top: 26px;
  text-align: center;
  width: max-content;
  translate: -50% 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

/* Hover — links, buttons, cards, nav, CTAs */
.cur.is-hover .cur__ring {
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  border-color: var(--cursor-gold);
}
.cur.is-hover .cur__dot {
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  background: var(--cursor-gold-dark);
  border-color: var(--cursor-gold);
  transform: rotate(45deg) scale(0.72);
}

/* View / Zoom — product gallery & card imagery */
.cur.is-view .cur__ring {
  width: 58px;
  height: 58px;
  margin: -29px 0 0 -29px;
  border-color: var(--cursor-gold);
  background: rgba(184, 150, 63, 0.04);
}
.cur.is-view .cur__dot {
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -2px;
  background: var(--cursor-gold);
  border-color: var(--cursor-gold);
  transform: rotate(45deg) scale(0.6);
}
.cur.is-view .cur__label {
  opacity: 1;
}

/* Click pulse */
.cur.is-click .cur__ring {
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border-color: var(--cursor-gold-dark);
}
.cur.is-hover.is-click .cur__ring,
.cur.is-view.is-click .cur__ring {
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
}
.cur.is-click .cur__dot {
  transform: rotate(45deg) scale(0.5);
}

html.has-cur,
html.has-cur * {
  cursor: none !important;
}
html.has-cur input,
html.has-cur textarea,
html.has-cur [contenteditable="true"] {
  cursor: text !important;
}
html.has-cur select {
  cursor: pointer !important;
}

@media (hover: none), (pointer: coarse) {
  .cur {
    display: none !important;
  }
  html.has-cur,
  html.has-cur * {
    cursor: auto !important;
  }
  html.has-cur button,
  html.has-cur a,
  html.has-cur [role="button"],
  html.has-cur .btn {
    cursor: pointer !important;
  }
}

/* ---------------------------------------------------------------- checkout */
.alert {
  background: var(--gold-tint);
  color: var(--ink);
  border: 1px solid var(--line);
}
.alert--err {
  background: #fdecea;
  color: var(--sale);
  border-color: #f3c9c5;
}
