/*
Theme Name:        LuxeTress
Theme URI:         https://luxetress.co.za
Description:       Custom WooCommerce theme for a luxury raw, virgin and donor hair store. Features a parallax homepage slider, sophisticated product pages with button-based variation selectors, and a full luxury design system.
Version:           1.0.0
Requires at least: 6.0
Tested up to:      6.7
Requires PHP:      8.0
Author:            LuxeTress
Author URI:        https://luxetress.co.za
License:           GNU General Public License v2 or later
License URI:       https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:       luxetress
Tags:              woocommerce, e-commerce, custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================================
   0. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --black:       #0A0A0A;
  --white:       #FFFFFF;
  --off:         #F8F5F0;
  --soft:        #F2EDE5;
  --border:      #E0D8CE;
  --muted:       #8C8278;
  --gold:        #C49A4A;
  --gold-light:  #E8C97A;
  --success:     #4A7C4A;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:      0px;           /* sharp corners — luxury feel */
  --transition:  0.22s ease;
  --shadow:      0 8px 32px rgba(10,10,10,0.08);
  --shadow-lg:   0 20px 60px rgba(10,10,10,0.14);

  --container:   1240px;
  --gutter:      48px;
}

/* ============================================================
   1. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; transition: color var(--transition); }
button { cursor: pointer; font-family: var(--font-body); }
ul, ol { list-style: none; }

/* ============================================================
   2. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

h1 { font-size: clamp(36px, 5vw, 58px); }
h2 { font-size: clamp(28px, 3.5vw, 42px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: 20px; }

p {
  line-height: 1.75;
  font-weight: 300;
  color: var(--muted);
}

.eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 120px 0; }

.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head h2 { margin-top: 8px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--black);
  color: var(--white);
}
.btn--primary:hover { background: #222; }

.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover { background: #a8822f; }

.btn--ghost {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}
.btn--ghost:hover { background: var(--black); color: var(--white); }

.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn--ghost-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn--full { width: 100%; }

/* ============================================================
   5. ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--black);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.announcement-bar span.sep { opacity: 0.3; }

/* ============================================================
   6. HEADER & NAVIGATION
   ============================================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* Logo */
.site-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
}
.site-logo em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

/* Primary Nav */
.primary-nav { display: flex; gap: 36px; }
.primary-nav a {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.primary-nav a:hover,
.primary-nav a.current-menu-item { color: var(--black); }
.primary-nav a:hover::after,
.primary-nav a.current-menu-item::after { transform: scaleX(1); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 20px; }

.header-icon {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 14px;
  transition: color var(--transition);
  padding: 4px;
  position: relative;
}
.header-icon:hover { color: var(--black); }

.cart-count-bubble {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: all var(--transition);
}

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
}
.mobile-nav.open { display: flex; }
.mobile-nav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.mobile-nav__drawer {
  position: relative;
  width: 320px;
  height: 100%;
  background: var(--white);
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
  z-index: 1;
}
.mobile-nav a {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}

/* ============================================================
   7. HERO / PARALLAX SLIDER
   ============================================================ */
.hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  max-height: 900px;
  overflow: hidden;
}

.hero__track {
  display: flex;
  height: 100%;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.18, 1);
}

.hero__slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 80px var(--gutter);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 8s ease;
  will-change: transform;
}
.hero__slide.is-active .hero__bg { transform: scale(1.06); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.35) 55%,
    rgba(0,0,0,0.1)  100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.8s ease 0.3s, opacity 0.8s ease 0.3s;
}
.hero__slide.is-active .hero__content { transform: translateY(0); opacity: 1; }

.hero__eyebrow {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold-light);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.02;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.hero__title em { font-style: italic; }

.hero__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 440px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slide dots */
.hero__dots {
  position: absolute;
  bottom: 32px;
  left: var(--gutter);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero__dot {
  width: 32px;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all 0.35s;
  padding: 0;
}
.hero__dot.is-active {
  background: var(--gold);
  width: 52px;
}

/* Slide arrows */
.hero__arrows {
  position: absolute;
  bottom: 32px;
  right: var(--gutter);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero__arrow {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.hero__arrow:hover { background: var(--gold); border-color: var(--gold); }

/* Slide counter */
.hero__counter {
  position: absolute;
  top: 32px;
  right: var(--gutter);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  z-index: 10;
}
.hero__counter strong { color: var(--white); }

/* ============================================================
   8. COLLECTIONS GRID
   ============================================================ */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.collection-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: block;
}

.collection-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.collection-card:hover .collection-card__img { transform: scale(1.06); }

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 55%);
}

.collection-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
}

.collection-card__eyebrow {
  font-size: 9px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.collection-card__title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 14px;
}

.collection-card__link {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  display: inline-block;
  transition: color var(--transition);
}
.collection-card:hover .collection-card__link { color: var(--gold-light); }

/* ============================================================
   9. WHY US / FEATURES STRIP
   ============================================================ */
.features-strip {
  background: var(--soft);
  padding: 64px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.feature-item__icon {
  font-size: 28px;
  display: block;
  margin-bottom: 14px;
}

.feature-item__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
}

.feature-item__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   10. PRODUCT CARDS (Shop Loop)
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
}
.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card__image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--soft);
  aspect-ratio: 1 / 1;
  width: 100%;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__img { transform: scale(1.06); }

.product-card__badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.product-card__badge {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--black);
  color: var(--white);
  display: inline-block;
}
.product-card__badge--gold { background: var(--gold); }
.product-card__badge--sale { background: #b44; }

.product-card__actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  padding: 12px;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.28s ease;
}
.product-card:hover .product-card__actions {
  opacity: 1;
  transform: translateY(0);
}

.product-card__action-btn {
  flex: 1;
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 8px;
  transition: all var(--transition);
}
.product-card__action-btn:hover {
  background: var(--white);
  color: var(--black);
}
.product-card__action-btn--gold {
  background: var(--gold);
  border-color: var(--gold);
}
.product-card__action-btn--gold:hover {
  background: #a8822f;
  border-color: #a8822f;
  color: var(--white);
}

.product-card__body { padding: 18px 18px 20px; }

.product-card__category {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.product-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.25;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-card__price {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}
.product-card__price del {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
  margin-right: 4px;
}
.product-card__price ins {
  text-decoration: none;
  color: #b44;
}

.product-card__rating {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 1px;
}

/* ============================================================
   11. PROMO BANNER
   ============================================================ */
.promo-banner {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  margin: 0 var(--gutter);
}

.promo-banner__content {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.promo-banner__eyebrow {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.promo-banner__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 46px);
  color: var(--white);
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.15;
}
.promo-banner__title em { font-style: italic; }

.promo-banner__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 32px;
  font-weight: 300;
  max-width: 400px;
}

.promo-banner__image {
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  overflow: hidden;
}
.promo-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   12. SINGLE PRODUCT PAGE
   ============================================================ */
.single-product-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
  padding-top: 40px;
  padding-bottom: 80px;
}

/* Product Gallery */
.product-gallery { position: sticky; top: 90px; }

.product-gallery__main {
  background: var(--soft);
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  margin-bottom: 10px;
}
.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-gallery__main:hover img { transform: scale(1.05); }

.product-gallery__badges {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-gallery__badge {
  font-size: 8px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--black);
  color: var(--white);
  display: inline-block;
}
.product-gallery__badge--gold { background: var(--gold); }

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.product-gallery__thumb {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  background: var(--soft);
}
.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-gallery__thumb:hover img { transform: scale(1.08); }
.product-gallery__thumb.is-active,
.product-gallery__thumb:hover { border-color: var(--gold); }

/* Product Info */
.product-info__brand {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.product-info__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 12px;
}

.product-info__short-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

/* Rating row */
.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.product-rating__stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.product-rating__count { font-size: 12px; font-weight: 600; }
.product-rating__link { font-size: 11px; color: var(--muted); text-decoration: underline; }
.product-rating__stock {
  margin-left: auto;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-rating__stock::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  display: inline-block;
}

/* Price */
.product-price {
  font-size: 30px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.product-price__range {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  margin-top: 3px;
  display: block;
}

/* Payment logos */
.product-payment {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.product-payment__label {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
.product-payment__icon {
  background: var(--soft);
  border: 1px solid var(--border);
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--muted);
}

/* Variation callout */
.variation-callout {
  background: var(--soft);
  border-left: 3px solid var(--gold);
  padding: 12px 16px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.6;
  display: none;
}
.variation-callout.is-visible { display: block; }
.variation-callout strong { color: var(--black); font-weight: 600; }

/* ── VARIATION GROUPS (replaces dropdowns) ── */
.variation-group { margin-bottom: 26px; }

.variation-group__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.variation-group__label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.variation-group__selected {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.3px;
}

/* Length / size buttons */
.variation-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variation-btn {
  min-width: 60px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  text-align: center;
  transition: all 0.18s ease;
  position: relative;
  line-height: 1.2;
}
.variation-btn:hover {
  border-color: var(--black);
  color: var(--black);
}
.variation-btn.is-selected {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.variation-btn.is-unavailable {
  color: var(--border);
  cursor: not-allowed;
  background: #fafafa;
  pointer-events: none;
}
.variation-btn.is-unavailable::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 4px;
  right: 4px;
  height: 1px;
  background: var(--border);
  transform: rotate(-12deg);
}
.variation-btn__sub {
  display: block;
  font-size: 9px;
  font-weight: 300;
  opacity: 0.65;
  margin-top: 3px;
  letter-spacing: 0.5px;
}

/* Texture / text pill buttons */
.texture-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.texture-btn {
  padding: 10px 20px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.18s ease;
}
.texture-btn:hover { border-color: var(--black); color: var(--black); }
.texture-btn.is-selected {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* Colour swatch buttons */
.swatch-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.swatch-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  background: none;
}
.swatch-btn.is-selected { border-color: var(--black); }
.swatch-btn__dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--border);
}
.swatch-btn__label {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

/* Quantity + ATC */
.product-qty-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.product-qty__label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 30px;
}
.product-qty__control {
  display: flex;
  border: 1px solid var(--border);
  background: var(--white);
}
.product-qty__btn {
  width: 44px;
  height: 52px;
  border: none;
  background: none;
  font-size: 20px;
  font-weight: 300;
  color: var(--black);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-qty__btn:hover { background: var(--soft); }
.product-qty__num {
  width: 52px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 52px;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  user-select: none;
}

.product-atc {
  width: 100%;
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 17px 24px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
  margin-bottom: 10px;
}
.product-atc:hover { background: #222; }
.product-atc.is-added { background: var(--gold); }

.product-buy-now {
  width: 100%;
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
  padding: 16px 24px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: 26px;
}
.product-buy-now:hover { background: var(--black); color: var(--white); }

/* Trust strip */
.product-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 28px;
}
.product-trust__item {
  background: var(--soft);
  padding: 16px 10px;
  text-align: center;
}
.product-trust__icon {
  font-size: 17px;
  display: block;
  margin-bottom: 6px;
}
.product-trust__label {
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}

/* ── ACCORDION ── */
.product-accordion { border-top: 1px solid var(--border); }
.accordion-item { border-bottom: 1px solid var(--border); }

.accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
}
.accordion-trigger__label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--black);
}
.accordion-trigger__icon {
  font-size: 20px;
  color: var(--muted);
  transition: transform var(--transition);
  font-weight: 300;
  line-height: 1;
}
.accordion-item.is-open .accordion-trigger__icon { transform: rotate(45deg); }

.accordion-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
  padding-bottom: 20px;
  font-weight: 300;
  display: none;
}
.accordion-item.is-open .accordion-body { display: block; }

.accordion-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  margin-top: 8px;
}
.accordion-table td {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--muted);
}
.accordion-table td:first-child {
  font-weight: 600;
  color: var(--black);
  width: 40%;
  padding-right: 16px;
}

/* ============================================================
   13. SOCIAL PROOF / REVIEWS
   ============================================================ */
.reviews-section { background: var(--soft); padding: 80px 0; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px;
}

.review-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 16px;
  background: var(--soft);
}

.review-card__stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }
.review-card__author { font-size: 12px; font-weight: 600; margin-bottom: 6px; }
.review-card__text { font-size: 13px; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ============================================================
   14. FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {}
.footer-brand .site-logo { color: var(--white); margin-bottom: 16px; display: inline-block; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }

.footer-socials { display: flex; gap: 14px; }
.footer-social {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
  text-decoration: none;
}
.footer-social:hover { border-color: var(--gold); color: var(--gold); }

.footer-col__title {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.5px;
}

/* ============================================================
   15. BREADCRUMB
   ============================================================ */
.breadcrumb {
  font-size: 11px;
  color: var(--muted);
  padding: 16px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb__sep { opacity: 0.35; }

/* ============================================================
   16. SHOP / ARCHIVE PAGE
   ============================================================ */
.shop-header {
  background: var(--soft);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}
.shop-header__eyebrow { margin-bottom: 8px; }
.shop-header__title { font-family: var(--font-display); font-size: 42px; }
.shop-header__desc { font-size: 13px; color: var(--muted); margin-top: 8px; }

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-pill {
  padding: 7px 18px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-pill:hover,
.filter-pill.is-active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.shop-sort {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
  border: 1px solid var(--border);
  padding: 8px 14px;
  background: var(--white);
  font-family: var(--font-body);
}

/* ============================================================
   17. INSTAGRAM STRIP
   ============================================================ */
.instagram-strip { padding: 0 0 80px; }
.instagram-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
.instagram-cell {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.instagram-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.instagram-cell:hover img { transform: scale(1.08); }
.instagram-cell__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition);
}
.instagram-cell:hover .instagram-cell__overlay { opacity: 1; }

/* ============================================================
   18. NOTIFICATIONS / TOAST
   ============================================================ */
.toast-notification {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--black);
  color: var(--white);
  padding: 14px 28px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 9999;
  pointer-events: none;
  white-space: nowrap;
}
.toast-notification.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.toast-notification__dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   19. WOOCOMMERCE OVERRIDES
   ============================================================ */

/* Hide default dropdowns — replaced by buttons via JS */
.woocommerce div.product form.cart .variations select { display: none !important; }

/* Reset WooCommerce form defaults */
.woocommerce div.product form.cart { margin-top: 0; }
.woocommerce div.product form.cart .variations { margin-bottom: 0; border: none; }
.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th { padding: 0; border: none; vertical-align: top; }
.woocommerce div.product form.cart .variations label { display: none; }
.woocommerce div.product form.cart .reset_variations { display: none !important; }

/* WooCommerce messages */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  border-top: 3px solid var(--gold) !important;
  background: var(--soft) !important;
  font-size: 13px;
  padding: 14px 20px !important;
}

/* Remove default WC button styles in favour of ours */
.woocommerce a.button,
.woocommerce button.button {
  background: var(--black) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  padding: 16px 28px !important;
  font-weight: 500 !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover { background: #222 !important; }
.woocommerce a.button.alt,
.woocommerce button.button.alt { background: var(--gold) !important; }
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover { background: #a8822f !important; }

/* Star ratings */
.woocommerce .star-rating span::before { color: var(--gold); }
.woocommerce .star-rating { color: var(--gold); }

/* ============================================================
   20. RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  :root { --gutter: 32px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .single-product-layout { gap: 40px; }
}

@media (max-width: 860px) {
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .collections-grid { grid-template-columns: 1fr; }
  .collection-card { height: 320px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .single-product-layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .promo-banner { grid-template-columns: 1fr; }
  .promo-banner__image { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { height: 80vh; }
  .product-trust { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  :root { --gutter: 20px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card__body { padding: 12px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .announcement-bar { font-size: 9px; gap: 12px; }
  .hero__title { font-size: 36px; }
  .hero__desc { display: none; }
}
