/* ============================================================
   SEXWHEL — Dark Luxury Design System
   Direction A: Deep Obsidian × Warm Gold × Ivory
   Aesthetic ref: LELO, Agent Provocateur, dark premium
   ============================================================ */

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Barlow', 'Arial', 'Helvetica Neue', sans-serif;
  background: #0D0B09;
  color: #E8E0D4;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; }
address { font-style: normal; }

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  /* Core palette */
  --obsidian:     #0D0B09;   /* page background */
  --obsidian-2:   #151210;   /* elevated surface */
  --obsidian-3:   #1E1A16;   /* card / section bg */
  --obsidian-4:   #2A2420;   /* hover state */

  /* Gold */
  --gold:         #C9A96E;   /* primary accent */
  --gold-bright:  #E8C87A;   /* highlight */
  --gold-dim:     #8A7048;   /* subdued */
  --gold-line:    rgba(201,169,110,0.25); /* border */

  /* Ivory text */
  --ivory:        #F5EFE6;   /* primary text */
  --ivory-2:      #C8BFB0;   /* secondary text */
  --ivory-3:      #7A7068;   /* muted text */
  --ivory-4:      rgba(245,239,230,0.08); /* barely-there bg */

  /* Accent */
  --accent:       #C9A96E;   /* single accent — warm gold */
  --red-hover:    #D8505C;
  --accent-soft:   rgba(201,169,110,0.08);

  /* Borders */
  --border:       rgba(201,169,110,0.18);  /* default — gold tint */
  --border-strong: rgba(201,169,110,0.45);

  /* Shadows */
  --glow-gold:    0 0 40px rgba(201,169,110,0.12);
  --shadow:       0 8px 40px rgba(0,0,0,0.5);
  --shadow-sm:    0 4px 16px rgba(0,0,0,0.35);

  /* Misc */
  --radius:       2px;
  --radius-lg:    4px;
  --ease:         0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-slow:    0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --container:    1280px;
  --header-h:     72px;
}

/* ── Google Fonts override — add Cormorant for headings ────── */
/* Loaded via functions.php enqueue */

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garant', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
  color: var(--ivory);
  letter-spacing: 0.01em;
  text-transform: none;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
h4 { font-size: 1.1rem; font-family: 'Inter',sans-serif; font-weight: 500; letter-spacing: .04em; }
p  { color: var(--ivory-2); line-height: 1.85; font-size: 0.95rem; }

/* Eyebrow label */
.eyebrow {
  font-family: 'Inter',sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--dark { background: var(--obsidian); }
.section--raised { background: #0F0D0B; }
.section--card { background: #0D0B09; }

/* ── Section dividers — no borders, use bg change + spacing ── */
.section-head { margin-bottom: 52px; }
.section-head h2 em { font-style: italic; color: var(--gold); }
.view-all {
  font-family: 'Inter',sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 2px;
  transition: color var(--ease), border-color var(--ease);
}
.view-all:hover { color: var(--gold); border-color: var(--gold); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  font-family: 'Inter',sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--ease);
  cursor: pointer;
  line-height: 1;
}
.btn--gold {
  background: var(--gold);
  color: var(--obsidian);
  border: 1px solid var(--gold);
}
.btn--gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.btn--outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(201,169,110,0.25);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--ghost {
  background: transparent;
  color: var(--ivory-2);
  border: 1px solid rgba(201,169,110,0.10);
}
.btn--ghost:hover { color: var(--ivory); border-color: rgba(201,169,110,0.25); }
.btn--red {
  background: var(--gold);
  color: var(--ivory);
  border: 1px solid var(--gold);
}
.btn--red:hover { background: #A8904E; }
.btn--lg { padding: 15px 40px; font-size: 12px; }
.btn--block { width: 100%; }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  font-size: 12px;
  color: var(--ivory-3);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--ivory-3); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--ivory-3); }

/* ── Trust strip ────────────────────────────────────────────── */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #0F0D0B;
  border-top: 1px solid rgba(201,169,110,0.10);
  border-bottom: 1px solid rgba(201,169,110,0.10);
}
.trust-item {
  padding: 22px 24px;
  border-right: 1px solid rgba(201,169,110,0.10);
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 20px; flex-shrink: 0; opacity: 0.8; }
.trust-name {
  font-family: 'Inter',sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 2px;
}
.trust-desc { font-size: 11px; color: var(--ivory-3); }

/* ── Product card ───────────────────────────────────────────── */
.product-card {
  background: #0F0D0B;
  border: 1px solid rgba(201,169,110,0.10);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.product-card:hover {
  border-color: rgba(201,169,110,0.25);
  box-shadow: none;
}
.product-card__img {
  position: relative;
  padding-bottom: 100%;
  background: #0D0B09;
  overflow: hidden;
  flex-shrink: 0;
}
.product-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
}
.product-card:hover .product-card__img img { transform: scale(1.04); }
.product-card__img-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  opacity: 0.2;
}
.product-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 1;
}
.badge {
  display: inline-block;
  padding: 3px 9px;
  font-family: 'Inter',sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.badge--sale { background: var(--gold); color: #fff; }
.badge--new  { background: var(--gold); color: var(--obsidian); }
.badge--hot  { background: rgba(201,169,110,.04); color: var(--ivory); border: 1px solid rgba(201,169,110,0.10); }
.product-card__add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--obsidian);
  color: var(--gold);
  border-top: 1px solid rgba(201,169,110,0.10);
  padding: 11px;
  text-align: center;
  font-family: 'Inter',sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(100%);
  transition: all var(--ease);
  cursor: pointer;
}
.product-card:hover .product-card__add { opacity: 1; transform: translateY(0); }
.product-card__add:hover { background: var(--gold); color: var(--obsidian); }
.product-card__body { padding: 18px 16px; flex: 1; }
.product-card__cat {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold-dim);
  margin-bottom: 6px;
  font-family: 'Inter',sans-serif;
}
.product-card__name {
  font-family: 'EB Garamond',Georgia,serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: .01em;
}
.product-card__stars {
  color: var(--gold-dim);
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.product-card__price .woocommerce-Price-amount,
.price-now {
  font-family: 'Inter',sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: .02em;
}
.product-card__price del .woocommerce-Price-amount,
.price-was {
  font-size: 0.8rem;
  color: var(--ivory-3);
  text-decoration: line-through;
}
.product-card__price ins { text-decoration: none; }
.product-card__price ins .woocommerce-Price-amount { color: var(--ivory); }

/* ── Perks bar ──────────────────────────────────────────────── */
.hp-perks { background: #0F0D0B; padding: 0; border-top: 1px solid rgba(201,169,110,0.10); border-bottom: 1px solid rgba(201,169,110,0.10); }
.hp-perks__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.hp-perk { padding: 32px 26px; border-right: 1px solid rgba(201,169,110,0.10); display: flex; gap: 16px; align-items: flex-start; transition: background var(--ease); }
.hp-perk:last-child { border-right: none; }
.hp-perk:hover { background: #0D0B09; }
.hp-perk__icon { font-size: 22px; flex-shrink: 0; opacity: 0.7; }
.hp-perk__title { font-family: 'Inter',sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ivory); margin-bottom: 5px; }
.hp-perk__desc  { font-size: 12px; color: var(--ivory-3); line-height: 1.6; }

/* ── Flash sale ─────────────────────────────────────────────── */
.hp-flash { background: var(--obsidian); padding: 80px 0; border-top: 1px solid rgba(201,169,110,0.10); }
.hp-flash__inner { display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: center; }
.hp-flash__eyebrow { font-family: 'Inter',sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 12px; }
.hp-flash__title { font-family: 'EB Garamond',Georgia,serif; font-size: clamp(48px, 6vw, 72px); font-weight: 400; color: var(--ivory); line-height: .95; margin-bottom: 16px; font-style: italic; }
.hp-flash__desc  { font-size: 14px; color: var(--ivory-3); line-height: 1.8; margin-bottom: 32px; max-width: 300px; }
.hp-flash__countdown { display: flex; gap: 12px; margin-bottom: 36px; align-items: flex-start; }
.hp-cd-unit { text-align: center; }
.hp-cd-num  { width: 62px; height: 62px; background: #0D0B09; border: 1px solid rgba(201,169,110,0.10); display: flex; align-items: center; justify-content: center; font-family: 'Inter',sans-serif; font-size: 26px; font-weight: 300; color: var(--gold); letter-spacing: -.02em; }
.hp-cd-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--ivory-3); margin-top: 6px; font-family: 'Inter',sans-serif; }
.hp-cd-sep   { font-family: 'Inter',sans-serif; font-size: 26px; font-weight: 200; color: rgba(201,169,110,0.25); margin-top: 16px; }
.hp-flash__products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,169,110,0.10); }
.hp-flash__card { background: #0F0D0B; padding: 20px; cursor: pointer; transition: background var(--ease); text-decoration: none; display: block; }
.hp-flash__card:hover { background: #0D0B09; }
.hp-flash__card-img { font-size: 36px; text-align: center; margin-bottom: 12px; opacity: 0.7; }
.hp-flash__card-img img { margin: 0 auto; width: 56px; height: 56px; object-fit: cover; }
.hp-flash__card-name { font-family: 'EB Garamond',Georgia,serif; font-size: 15px; color: var(--ivory); margin-bottom: 10px; line-height: 1.3; }
.hp-flash__prices { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.hp-flash__now .woocommerce-Price-amount,
.hp-flash__now  { font-family: 'Inter',sans-serif; font-size: 16px; font-weight: 500; color: var(--ivory); }
.hp-flash__was .woocommerce-Price-amount,
.hp-flash__was  { font-size: 12px; color: var(--ivory-3); text-decoration: line-through; }
.hp-flash__off  { font-size: 10px; font-weight: 700; background: transparent; color: var(--gold-dim); padding: 2px 8px; font-family: 'Inter',sans-serif; letter-spacing: .06em; border: 1px solid rgba(201,169,110,.25); }

/* ── Testimonials ───────────────────────────────────────────── */
.hp-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,169,110,0.10); }
.hp-testi { background: #0F0D0B; padding: 36px; transition: background var(--ease); }
.hp-testi:hover { background: #0D0B09; }
.hp-testi__stars { color: var(--gold-dim); font-size: 13px; letter-spacing: 3px; margin-bottom: 18px; }
.hp-testi__text  { font-family: 'EB Garamond',Georgia,serif; font-size: 1.05rem; color: var(--ivory-2); line-height: 1.85; margin-bottom: 24px; font-style: italic; }
.hp-testi__text::before { content: '\201C'; color: var(--gold-dim); font-size: 36px; line-height: 0; vertical-align: -14px; margin-right: 3px; font-family: Georgia, serif; }
.hp-testi__author { display: flex; align-items: center; gap: 14px; border-top: 1px solid rgba(201,169,110,0.10); padding-top: 20px; }
.hp-testi__avatar { width: 36px; height: 36px; background: rgba(201,169,110,.04); border: 1px solid rgba(201,169,110,0.10); display: flex; align-items: center; justify-content: center; font-family: 'EB Garamond',Georgia,serif; font-size: 14px; color: var(--gold-dim); flex-shrink: 0; border-radius: 50%; }
.hp-testi__name { font-family: 'Inter',sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .06em; color: var(--ivory); text-transform: uppercase; }
.hp-testi__loc  { font-size: 11px; color: var(--ivory-3); margin-top: 2px; }

/* ── Newsletter ─────────────────────────────────────────────── */
.hp-newsletter { background: #0F0D0B; padding: 80px 0; border-top: 1px solid rgba(201,169,110,0.10); }
.hp-newsletter__inner { display: flex; justify-content: space-between; align-items: center; gap: 48px; flex-wrap: wrap; }
.hp-newsletter__eyebrow { font-family: 'Inter',sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 12px; display: block; }
.hp-newsletter__inner h2 { color: var(--ivory); margin-bottom: 10px; }
.hp-newsletter__sub { font-size: 14px; color: var(--ivory-3); }
.hp-newsletter__form { display: flex; border: 1px solid rgba(201,169,110,0.10); flex-shrink: 0; }
.hp-newsletter__form input { padding: 14px 20px; background: transparent; border: none; color: var(--ivory); font-size: 13px; outline: none; width: 280px; }
.hp-newsletter__form input::placeholder { color: var(--ivory-3); }
.hp-newsletter__form button { padding: 14px 24px; background: var(--gold); color: var(--obsidian); font-family: 'Inter',sans-serif; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; transition: background var(--ease); border: none; cursor: pointer; }
.hp-newsletter__form button:hover { background: var(--gold-bright); }

/* ── Category card ──────────────────────────────────────────── */
.hp-cat-card {
  position: relative;
  border: 1px solid rgba(201,169,110,0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #0D0B09;
  text-decoration: none;
  aspect-ratio: 3/4;
  transition: border-color var(--ease);
}
.hp-cat-card:hover { border-color: rgba(201,169,110,0.25); }
.hp-cat-card:hover .hp-cat-card__bg img,
.hp-cat-card:hover .hp-cat-card__bg span { transform: scale(1.05); }
.hp-cat-card__bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hp-cat-card__bg img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--ease-slow); }
.hp-cat-card__bg span { font-size: 64px; opacity: 0.1; transition: transform var(--ease-slow); display: block; }
.hp-cat-card__label { position: relative; padding: 18px 16px; background: linear-gradient(to top, rgba(13,11,9,.95) 0%, rgba(13,11,9,.6) 100%); }
.hp-cat-card__name { font-family: 'EB Garamond',Georgia,serif; font-size: 1rem; font-weight: 500; color: var(--ivory); margin-bottom: 3px; letter-spacing: .02em; }
.hp-cat-card__count { font-size: 10px; color: var(--ivory-3); font-family: 'Inter',sans-serif; letter-spacing: .06em; }

/* ── New arrivals ───────────────────────────────────────────── */
.hp-new-feature {
  border: 1px solid rgba(201,169,110,0.10);
  background: #0D0B09;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 480px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color var(--ease);
}
.hp-new-feature:hover { border-color: rgba(201,169,110,0.25); }
.hp-new-feature__bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.hp-new-feature__bg img { width: 100%; height: 100%; object-fit: cover; }
.hp-new-feature__bg span { font-size: 160px; opacity: 0.06; user-select: none; }
.hp-new-feature__body {
  position: relative;
  padding: 28px;
  background: linear-gradient(to top, rgba(13,11,9,.98) 0%, transparent 100%);
  padding-top: 80px;
}
.hp-new-feature__tag { display: inline-block; background: var(--gold); color: var(--obsidian); font-family: 'Inter',sans-serif; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; padding: 4px 10px; margin-bottom: 12px; }
.hp-new-feature__name { font-family: 'EB Garamond',Georgia,serif; font-size: 1.8rem; font-weight: 400; color: var(--ivory); margin-bottom: 10px; line-height: 1.1; }
.hp-new-feature__price .woocommerce-Price-amount,
.hp-new-feature__price { font-family: 'Inter',sans-serif; font-size: 1rem; font-weight: 400; color: var(--ivory-2); margin-bottom: 22px; display: block; letter-spacing: .04em; }
.hp-new-small {
  display: flex;
  border: 1px solid rgba(201,169,110,0.10);
  background: #0F0D0B;
  padding: 16px;
  gap: 16px;
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
  text-decoration: none;
  flex: 1;
  align-items: center;
}
.hp-new-small:hover { border-color: rgba(201,169,110,0.25); background: #0D0B09; }
.hp-new-small__img { width: 70px; height: 70px; background: #0D0B09; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 28px; border: 1px solid rgba(201,169,110,0.10); overflow: hidden; opacity: 0.8; }
.hp-new-small__img img { width: 100%; height: 100%; object-fit: cover; }
.hp-new-small__cat   { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--gold-dim); margin-bottom: 5px; font-family: 'Inter',sans-serif; }
.hp-new-small__name  { font-family: 'EB Garamond',Georgia,serif; font-size: 1rem; font-weight: 500; color: var(--ivory); margin-bottom: 5px; line-height: 1.2; }
.hp-new-small__price .woocommerce-Price-amount,
.hp-new-small__price { font-family: 'Inter',sans-serif; font-size: 13px; font-weight: 400; color: var(--ivory-2); }

/* ── Shop page ──────────────────────────────────────────────── */
.shop-page-header { background: #0F0D0B; padding: 36px 0; border-bottom: 1px solid rgba(201,169,110,0.10); }
.shop-page-header__title { font-size: 2.2rem; color: var(--ivory); }
.shop-page-header__count { font-family: 'Inter',sans-serif; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--ivory-3); margin-top: 6px; }
.shop-container { padding-top: 32px; padding-bottom: 80px; }
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: start; }

/* Sidebar */
.shop-sidebar { background: #0F0D0B; border: 1px solid rgba(201,169,110,0.10); position: sticky; top: 24px; }
.shop-sidebar__head { padding: 14px 18px; background: #0D0B09; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(201,169,110,0.10); }
.shop-sidebar__head span { font-family: 'Inter',sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--ivory); }
.shop-sidebar__clear { font-family: 'Inter',sans-serif; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-dim); transition: color var(--ease); }
.shop-sidebar__clear:hover { color: var(--gold); }
.filter-group { border-bottom: 1px solid rgba(201,169,110,0.10); }
.filter-group__head { display: flex; justify-content: space-between; align-items: center; padding: 12px 18px; cursor: pointer; font-family: 'Inter',sans-serif; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--ivory-2); transition: background var(--ease), color var(--ease); }
.filter-group__head:hover { background: #0D0B09; color: var(--ivory); }
.filter-group__arrow { font-size: 10px; color: var(--ivory-3); transition: transform .2s; }
.filter-group.collapsed .filter-group__arrow { transform: rotate(-90deg); }
.filter-group.collapsed .filter-group__body { display: none; }
.filter-group__body { padding: 8px 18px 16px; }
.shop-price-display { font-family: 'Inter',sans-serif; font-size: 13px; font-weight: 500; color: var(--gold); margin-bottom: 12px; }
.shop-price-sliders { display: flex; flex-direction: column; gap: 8px; }
.shop-price-sliders input[type="range"] { width: 100%; accent-color: var(--gold); }
.radio-group { display: flex; flex-direction: column; gap: 8px; }
.radio-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ivory-2); cursor: pointer; }
.radio-item input { accent-color: var(--gold); }
.radio-item:hover { color: var(--ivory); }

/* Toolbar */
.shop-mobile-bar { display: none; align-items: center; justify-content: space-between; margin-bottom: 20px; gap: 12px; }
.shop-filter-toggle { display: flex; align-items: center; gap: 8px; padding: 10px 18px; background: #0F0D0B; color: var(--ivory); font-family: 'Inter',sans-serif; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; border: 1px solid rgba(201,169,110,0.10); transition: var(--ease); }
.shop-filter-toggle:hover { border-color: var(--gold); color: var(--gold); }
.shop-filter-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 299; }
.shop-filter-overlay.show { display: block; }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; padding: 12px 18px; background: #0F0D0B; border: 1px solid rgba(201,169,110,0.10); margin-bottom: 2px; }
.shop-toolbar__left { display: flex; align-items: center; gap: 14px; }
.shop-toolbar__count { font-family: 'Inter',sans-serif; font-size: 11px; color: var(--ivory-3); text-transform: uppercase; letter-spacing: .08em; }
.shop-toolbar__right { display: flex; align-items: center; gap: 10px; }
.woocommerce-ordering select { padding: 8px 32px 8px 12px; border: 1px solid rgba(201,169,110,0.10); background: #0D0B09; color: var(--ivory); font-family: 'Inter',sans-serif; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; cursor: pointer; outline: none; }
.shop-view-btns { display: flex; border: 1px solid rgba(201,169,110,0.10); overflow: hidden; }
.shop-view-btn { width: 34px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--ivory-3); background: #0F0D0B; transition: var(--ease); }
.shop-view-btn:hover, .shop-view-btn.active { background: var(--gold); color: var(--obsidian); }
.shop-active-filters { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; padding: 10px 0; margin-bottom: 4px; }
.shop-active-filters__label { font-family: 'Inter',sans-serif; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--ivory-3); }
.shop-active-tag { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; background: var(--gold-dim); color: var(--obsidian); font-family: 'Inter',sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.shop-active-tag a { color: var(--obsidian); opacity: .7; }
.shop-active-tag a:hover { opacity: 1; }
.shop-products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,169,110,0.10); }
.shop-products-grid.list-view { grid-template-columns: 1fr; background: transparent; gap: 1px; }
.shop-empty { text-align: center; padding: 80px 20px; border: 1px solid rgba(201,169,110,0.10); background: #0F0D0B; }
.shop-empty__icon { font-size: 48px; margin-bottom: 20px; opacity: 0.4; }
.shop-empty h3 { color: var(--ivory); margin-bottom: 10px; }
.shop-empty p { color: var(--ivory-3); }

/* Pagination */
.shop-pagination { padding-top: 40px; }
.woocommerce-pagination ul { display: flex; justify-content: center; gap: 1px; list-style: none; background: rgba(201,169,110,0.10); width: fit-content; margin: 0 auto; }
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; font-family: 'Inter',sans-serif; font-size: 12px; font-weight: 500; color: var(--ivory-2); background: #0F0D0B; transition: var(--ease); text-decoration: none; letter-spacing: .04em; }
.woocommerce-pagination ul li a:hover { background: #0D0B09; color: var(--ivory); }
.woocommerce-pagination ul li span.current { background: var(--gold); color: var(--obsidian); font-weight: 700; }

/* ── Account pages ──────────────────────────────────────────── */
.account-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; padding: 48px 0 80px; align-items: start; }
.account-nav { background: #0F0D0B; border: 1px solid rgba(201,169,110,0.10); position: sticky; top: 24px; }
.account-nav__header { padding: 24px 20px; border-bottom: 1px solid rgba(201,169,110,0.10); }
.account-nav__avatar { width: 48px; height: 48px; background: #0D0B09; border: 1px solid rgba(201,169,110,0.10); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'EB Garamond',Georgia,serif; font-size: 18px; color: var(--gold-dim); margin-bottom: 12px; }
.account-nav__name { font-family: 'Inter',sans-serif; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--ivory); margin-bottom: 3px; }
.account-nav__tier { font-size: 11px; color: var(--gold-dim); }
.account-nav__menu { list-style: none; }
.account-nav__item { border-bottom: 1px solid rgba(201,169,110,0.10); }
.account-nav__item:last-child { border-bottom: none; }
.account-nav__link { display: flex; align-items: center; gap: 12px; padding: 13px 20px; font-family: 'Inter',sans-serif; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--ivory-3); transition: all var(--ease); text-decoration: none; }
.account-nav__link:hover, .account-nav__link.active { color: var(--gold); background: #0D0B09; }
.account-nav__link .nav-icon { font-size: 14px; opacity: .6; flex-shrink: 0; }
.account-content { background: #0F0D0B; border: 1px solid rgba(201,169,110,0.10); padding: 36px; }
.account-content__title { font-size: 1.6rem; color: var(--ivory); margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid rgba(201,169,110,0.10); font-family: 'EB Garamond',Georgia,serif; }

/* Order status pills */
.status-pill { display: inline-flex; align-items: center; padding: 3px 10px; font-family: 'Inter',sans-serif; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; border-radius: 2px; }
.status-processing { background: rgba(201,169,110,.15); color: var(--gold); border: 1px solid rgba(201,169,110,.3); }
.status-completed   { background: rgba(60,160,80,.12); color: #5CC870; border: 1px solid rgba(60,160,80,.25); }
.status-pending     { background: rgba(122,112,104,.15); color: var(--ivory-2); border: 1px solid rgba(201,169,110,0.10); }
.status-cancelled   { background: rgba(201,169,110,.08); color: var(--ivory-3); border: 1px solid rgba(201,169,110,.15); }

/* Order table */
.order-table { width: 100%; border-collapse: collapse; }
.order-table th { font-family: 'Inter',sans-serif; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--ivory-3); padding: 10px 14px; border-bottom: 1px solid rgba(201,169,110,0.10); text-align: left; }
.order-table td { padding: 14px; border-bottom: 1px solid rgba(201,169,110,0.10); font-size: 13px; color: var(--ivory-2); vertical-align: middle; }
.order-table tr:last-child td { border-bottom: none; }
.order-table tr:hover td { background: #0D0B09; }

/* Address cards */
.address-card { border: 1px solid rgba(201,169,110,0.10); padding: 24px; background: #0D0B09; }
.address-card__title { font-family: 'Inter',sans-serif; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-dim); margin-bottom: 14px; }
.address-card__text { font-size: 13px; color: var(--ivory-2); line-height: 1.8; }
.address-card__actions { margin-top: 16px; display: flex; gap: 10px; }

/* Settings toggles */
.settings-toggle { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid rgba(201,169,110,0.10); }
.settings-toggle:last-child { border-bottom: none; }
.settings-toggle__label { font-family: 'Inter',sans-serif; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--ivory); margin-bottom: 3px; }
.settings-toggle__desc { font-size: 12px; color: var(--ivory-3); }
.toggle-switch { width: 40px; height: 22px; border-radius: 11px; border: 1px solid rgba(201,169,110,0.10); background: #0D0B09; cursor: pointer; position: relative; transition: background .3s, border-color .3s; flex-shrink: 0; }
.toggle-switch::after { content: ''; position: absolute; top: 3px; left: 3px; width: 14px; height: 14px; border-radius: 50%; background: var(--ivory-3); transition: left .3s, background .3s; }
.toggle-switch.on { background: rgba(201,169,110,.25); border-color: var(--gold); }
.toggle-switch.on::after { left: 21px; background: var(--gold); }

/* WooCommerce form overrides */
.woocommerce-form input,
.woocommerce-form select,
.woocommerce-form textarea,
.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="password"],
.woocommerce input[type="tel"],
.woocommerce select,
.woocommerce textarea {
  background: var(--obsidian-3) !important;
  border: 1px solid rgba(201,169,110,0.10) !important;
  color: var(--ivory) !important;
  padding: 12px 14px !important;
  font-size: 13px !important;
  font-family: 'Inter',sans-serif !important;
  outline: none !important;
  transition: border-color var(--ease) !important;
  border-radius: 0 !important;
}
.woocommerce input:focus,
.woocommerce select:focus,
.woocommerce textarea:focus { border-color: var(--gold) !important; }
.woocommerce label { font-family: 'Inter',sans-serif; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ivory-3); margin-bottom: 6px; display: block; }
.woocommerce button[type="submit"],
.woocommerce input[type="submit"] { background: var(--gold) !important; color: var(--obsidian) !important; border: 1px solid var(--gold) !important; padding: 13px 32px !important; font-family: 'Inter',sans-serif !important; font-size: 11px !important; font-weight: 700 !important; letter-spacing: .16em !important; text-transform: uppercase !important; cursor: pointer !important; transition: background var(--ease) !important; border-radius: 0 !important; }
.woocommerce button[type="submit"]:hover,
.woocommerce input[type="submit"]:hover { background: var(--gold-bright) !important; }

/* Wishlist */
.wishlist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,169,110,0.10); }
.wishlist-item { background: #0F0D0B; padding: 16px; }
.wishlist-item__img { aspect-ratio: 1; background: #0D0B09; display: flex; align-items: center; justify-content: center; font-size: 40px; margin-bottom: 12px; overflow: hidden; opacity: .8; }
.wishlist-item__img img { width: 100%; height: 100%; object-fit: cover; }
.wishlist-item__name { font-family: 'EB Garamond',Georgia,serif; font-size: 0.95rem; color: var(--ivory); margin-bottom: 6px; line-height: 1.3; }
.wishlist-item__price { font-family: 'Inter',sans-serif; font-size: 13px; color: var(--ivory-2); margin-bottom: 14px; }
.wishlist-item__remove { font-size: 11px; color: var(--ivory-3); text-transform: uppercase; letter-spacing: .08em; font-family: 'Inter',sans-serif; cursor: pointer; transition: color var(--ease); }
.wishlist-item__remove:hover { color: var(--gold-dim); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .shop-layout { grid-template-columns: 210px 1fr; gap: 20px; }
  .account-layout { grid-template-columns: 220px 1fr; }
  .hp-flash__inner { grid-template-columns: 280px 1fr; gap: 40px; }
  .hp-perks__grid { grid-template-columns: repeat(2, 1fr); }
  .hp-perk:nth-child(2) { border-right: none; }
  .hp-perk:nth-child(3) { border-top: 1px solid rgba(201,169,110,0.10); }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-top: 1px solid rgba(201,169,110,0.10); }
  .trust-item:nth-child(4) { border-top: 1px solid rgba(201,169,110,0.10); border-right: none; }
  .hp-testi-grid { grid-template-columns: 1fr; }
  .hp-perks__grid { grid-template-columns: 1fr; }
  .hp-perk { border-right: none !important; border-top: none; border-bottom: 1px solid rgba(201,169,110,0.10); }
  .hp-flash__inner { grid-template-columns: 1fr; gap: 32px; }
  .hp-flash__products { grid-template-columns: 1fr 1fr; }
  .hp-newsletter__inner { flex-direction: column; gap: 24px; }
  .hp-newsletter__form { width: 100%; }
  .hp-newsletter__form input { flex: 1; width: auto; min-width: 0; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: fixed; left: -260px; top: 0; bottom: 0; width: 250px; z-index: 300; overflow-y: auto; transition: left .3s cubic-bezier(.4,0,.2,1); }
  .shop-sidebar.open { left: 0; }
  .shop-mobile-bar { display: flex; }
  .shop-toolbar { display: none; }
  .shop-products-grid { grid-template-columns: repeat(2, 1fr); }
  .account-layout { grid-template-columns: 1fr; }
  .account-nav { position: static; }
  .wishlist-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .shop-products-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-flash__products { grid-template-columns: 1fr; }
}
