/*
Theme Name: All Things Lashes
Theme URI: https://www.allthingslashes.co.uk
Author: All Things Lashes
Author URI: https://www.allthingslashes.co.uk
Description: A luxury noir lash supplies theme with WooCommerce support. Featuring Cormorant Garamond typography, gold accents, and editorial dark aesthetics.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: allthingslashes
Tags: e-commerce, woocommerce, dark, luxury, beauty
*/

/* ─── RESET & ROOT ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --obsidian:   #09070a;
  --deep:       #120f14;
  --surface:    #1c1720;
  --card:       #211d27;
  --gold:       #c9a46e;
  --gold-light: #e8cfa0;
  --blush:      #f0ddd0;
  --text:       #ede8e3;
  --muted:      #8a7d76;
  --border:     rgba(201,164,110,0.18);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--obsidian);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── SCROLLBAR ──────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--obsidian); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ─── UTILITY ────────────────────────────────────────── */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
}

.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 20px;
}

.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  z-index: 0;
}

.btn:hover::before { transform: translateX(0); }
.btn:hover { color: var(--obsidian); }
.btn span { position: relative; z-index: 1; }

.btn-solid {
  background: var(--gold);
  color: var(--obsidian);
  font-weight: 600;
  border: 1px solid var(--gold);
}
.btn-solid::before { background: var(--gold-light); }
.btn-solid:hover { color: var(--obsidian); }

/* ─── ANNOUNCEMENT BAR ───────────────────────────────── */
.announcement {
  background: var(--gold);
  color: var(--obsidian);
  text-align: center;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ─── HEADER ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9,7,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  height: 80px;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-right { justify-content: flex-end; }

.nav-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after { width: 100%; }

/* WordPress nav menu overrides */
.nav-left ul,
.nav-right ul,
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-left ul li a,
.nav-left ul li > a,
.nav-menu li a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease;
  position: relative;
  text-decoration: none;
}

.nav-left ul li a:hover,
.nav-menu li a:hover { color: var(--gold-light); }

.site-logo {
  text-align: center;
}

.logo-img {
  height: 52px;
  width: auto;
  margin: 0 auto;
  filter: brightness(1.1);
}

/* Custom logo WordPress */
.custom-logo-link {
  display: block;
  text-align: center;
}

.custom-logo {
  height: 52px;
  width: auto;
  margin: 0 auto;
  filter: brightness(1.1);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  line-height: 1;
}

.logo-sub {
  display: block;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--muted);
  font-family: var(--font-body);
  text-transform: uppercase;
  margin-top: 3px;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.25s;
  display: flex;
  align-items: center;
}

.icon-btn:hover { color: var(--gold-light); }

.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--gold);
  color: var(--obsidian);
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  margin-left: -6px;
  margin-top: -10px;
  transition: transform 0.2s ease, background 0.2s ease;
}

/* ─── MOBILE NAV OVERLAY ──────────────────────────────── */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--deep);
    border-left: 1px solid var(--border);
    z-index: 500;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    padding: 80px 40px 40px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  height: 92vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://ee720ef73f8355ea1a36.cdn6.editmysite.com/uploads/b/ee720ef73f8355ea1a3665ed337365e2d74499d05dae646b472ea52d452afec5/7D6376FD-52CF-4A33-8DA1-EA0773045E36_1719093817.jpeg');
  background-size: cover;
  background-position: center 20%;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(9,7,10,0.88) 0%,
    rgba(9,7,10,0.55) 50%,
    rgba(9,7,10,0.2) 100%
  );
}

.hero-overlay-right {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 55%,
    rgba(9,7,10,0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  animation: heroFadeIn 1.2s ease both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  animation: heroFadeIn 1.2s 0.2s ease both;
}

.hero-eyebrow span {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: 0.01em;
  color: var(--blush);
  margin-bottom: 10px;
  animation: heroFadeIn 1.2s 0.3s ease both;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  animation: heroFadeIn 1.2s 0.5s ease both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: heroFadeIn 1.2s 0.7s ease both;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: heroFadeIn 1.2s 1s ease both;
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* Floating badge */
.hero-badge {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(9,7,10,0.7);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.badge-text-ring {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  line-height: 1.4;
}

.badge-star {
  font-size: 20px;
  color: var(--gold);
}

/* ─── STATS STRIP ─────────────────────────────────────── */
.stats-strip {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── ABOUT ───────────────────────────────────────────── */
.about {
  padding: 120px 0;
  position: relative;
}

.about::before {
  content: 'ATL';
  position: absolute;
  right: -20px;
  top: 60px;
  font-family: var(--font-display);
  font-size: 200px;
  font-weight: 600;
  color: rgba(201,164,110,0.03);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 560px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 85%;
  object-fit: cover;
  object-position: center;
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 50%;
  object-fit: cover;
  border: 4px solid var(--obsidian);
}

.about-gold-frame {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--border);
  pointer-events: none;
}

.about-text .tag { margin-bottom: 10px; }

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--blush);
  margin-bottom: 28px;
}

.about-text h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.about-text p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  margin-top: 2px;
}

.feature-text strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 3px;
}

.feature-text span {
  font-size: 13px;
  color: var(--muted);
}

/* ─── MARQUEE ─────────────────────────────────────────── */
.marquee-section {
  padding: 24px 0;
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marqueeScroll 25s linear infinite;
  white-space: nowrap;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
}

.marquee-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.marquee-item.highlight { color: var(--gold-light); }

/* ─── CATEGORIES ──────────────────────────────────────── */
.categories {
  padding: 100px 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--blush);
}

.section-header h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.section-link {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
  flex-shrink: 0;
}

.section-link:hover { gap: 14px; }

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

.category-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}

.category-card:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.category-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.7s ease;
}

.category-card:hover .category-bg { transform: scale(1); }

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,7,10,0.9) 0%, rgba(9,7,10,0.1) 60%);
  transition: background 0.4s ease;
}

.category-card:hover .category-overlay {
  background: linear-gradient(to top, rgba(9,7,10,0.96) 0%, rgba(9,7,10,0.3) 60%);
}

.category-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 28px;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.category-num {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
}

.category-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--blush);
  margin-bottom: 6px;
  line-height: 1.2;
}

.category-desc {
  font-size: 13px;
  color: var(--muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.category-card:hover .category-desc {
  max-height: 60px;
  opacity: 1;
}

.category-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 14px;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.category-card:hover .category-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ─── FEATURED PRODUCTS ───────────────────────────────── */
.products {
  padding: 100px 0;
  background: var(--deep);
  position: relative;
  overflow: hidden;
}

.products::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,164,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.product-card {
  background: var(--card);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
  position: relative;
}

.product-card:hover { transform: translateY(-6px); }

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--surface);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--obsidian);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 10px;
}

.product-actions {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-action-btn {
  width: 36px;
  height: 36px;
  background: rgba(9,7,10,0.8);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.25s;
}

.product-action-btn:hover { background: var(--gold); color: var(--obsidian); }

.product-info {
  padding: 20px;
}

.product-category {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--blush);
  margin-bottom: 10px;
  line-height: 1.2;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold-light);
}

.product-old-price {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 8px;
}

.add-to-cart {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--obsidian);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.25s;
}

.add-to-cart:hover { background: var(--gold-light); }

.product-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 4px;
}

.star { color: var(--gold); font-size: 11px; }

/* ─── TRAINING SECTION ────────────────────────────────── */
.training {
  padding: 120px 0;
  position: relative;
}

.training-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 80px;
  align-items: center;
}

.training-image-wrap {
  position: relative;
}

.training-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 15%;
}

.training-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--obsidian);
  padding: 28px 32px;
  text-align: center;
}

.training-img-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}

.training-img-badge span {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.training-content h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--blush);
  margin-bottom: 24px;
}

.training-content h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.training-content p {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.training-courses {
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.course-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: var(--surface);
  border-left: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  cursor: pointer;
}

.course-item:hover {
  border-left-color: var(--gold);
  background: var(--card);
}

.course-left { display: flex; align-items: center; gap: 16px; }

.course-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: 1px solid var(--gold);
}

.course-name {
  font-size: 14px;
  font-weight: 400;
  color: var(--blush);
}

.course-price {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold-light);
}

/* ─── TESTIMONIALS ────────────────────────────────────── */
.testimonials {
  padding: 100px 0;
  background: var(--deep);
  position: relative;
  overflow: hidden;
}

.testimonials::after {
  content: '"';
  position: absolute;
  top: -20px;
  right: 5%;
  font-family: var(--font-display);
  font-size: 400px;
  color: rgba(201,164,110,0.04);
  line-height: 1;
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 70px;
}

.testimonials-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  color: var(--blush);
}

.testimonials-header h2 em {
  font-style: italic;
  color: var(--gold-light);
}

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

.testimonial-card {
  background: var(--card);
  padding: 36px 32px;
  border: 1px solid transparent;
  transition: border-color 0.3s;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(201,164,110,0.12);
  line-height: 1;
}

.testimonial-card:hover { border-color: var(--border); }

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--gold);
}

.author-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--blush);
}

.author-role {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* ─── INSTAGRAM ───────────────────────────────────────── */
.instagram {
  padding: 100px 0;
}

.instagram-header {
  text-align: center;
  margin-bottom: 50px;
}

.instagram-handle {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  color: var(--gold-light);
  font-style: italic;
}

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

.instagram-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.instagram-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.instagram-item:hover .instagram-img { transform: scale(1.08); }

.instagram-hover {
  position: absolute;
  inset: 0;
  background: rgba(9,7,10,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-hover { opacity: 1; }

.insta-icon { font-size: 28px; color: var(--gold-light); }

/* ─── NEWSLETTER ──────────────────────────────────────── */
.newsletter {
  padding: 90px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--blush);
  margin-bottom: 14px;
}

.newsletter h2 em { font-style: italic; color: var(--gold-light); }

.newsletter p {
  color: var(--muted);
  margin-bottom: 40px;
  font-size: 15px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 0;
}

.newsletter-input {
  flex: 1;
  padding: 16px 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-input::placeholder { color: var(--muted); }
.newsletter-input:focus { border-color: var(--gold); }

.newsletter-btn {
  padding: 16px 30px;
  background: var(--gold);
  color: var(--obsidian);
  border: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.newsletter-btn:hover { background: var(--gold-light); }

/* ─── FOOTER ─────────────────────────────────────────── */
.site-footer {
  background: var(--obsidian);
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo-text {
  font-size: 18px;
  display: block;
  margin-bottom: 18px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  transition: all 0.3s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Footer WordPress nav menu */
.footer-col .menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col .menu li a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.25s;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-col .menu li a::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
  transition: background 0.25s, width 0.25s;
}

.footer-col .menu li a:hover { color: var(--gold-light); }
.footer-col .menu li a:hover::before { background: var(--gold); width: 18px; }

.footer-link {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.25s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
  transition: background 0.25s, width 0.25s;
}

.footer-link:hover { color: var(--gold-light); }
.footer-link:hover::before { background: var(--gold); width: 18px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-detail strong {
  display: block;
  color: var(--blush);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.footer-hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  font-size: 13px;
  color: var(--muted);
}

.footer-hours .day { color: var(--blush); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-link {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  transition: color 0.25s;
}

.footer-bottom-link:hover { color: var(--gold); }

/* ─── MOBILE NAV HAMBURGER ────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--muted);
  transition: all 0.3s;
}

/* ─── ANIMATIONS ──────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* Cursor glow effect */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,164,110,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .about-grid,
  .training-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-images { height: 400px; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .categories-grid .category-card:first-child { grid-row: auto; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-inner { grid-template-columns: 1fr auto 1fr; padding: 0 20px; height: 65px; }
  .nav-left { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 24px; }
  .hero h1 { font-size: clamp(42px, 9vw, 70px); }
  .hero-badge { display: none; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid var(--border); border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ═══════════════════════════════════════════════════════
   WORDPRESS-SPECIFIC STYLES
═══════════════════════════════════════════════════════ */

/* Screen reader text */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: var(--card);
  border-radius: 0;
  box-shadow: 0 0 2px 2px rgba(201,164,110,0.6);
  clip: auto !important;
  clip-path: none;
  color: var(--gold-light);
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999rem;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  display: block;
  position: fixed;
  top: 5px;
  left: 5px;
  width: auto;
  height: auto;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--obsidian);
  font-size: 14px;
  font-weight: 600;
  z-index: 999999;
  outline: none;
}

/* Alignment classes */
.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1em;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
}

.alignwide {
  margin-left: calc(-1 * (100vw - 100%) / 2);
  margin-right: calc(-1 * (100vw - 100%) / 2);
  max-width: 100vw;
}

.alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
}

/* WordPress block styles */
.wp-block-image img {
  max-width: 100%;
  height: auto;
}

.wp-block-image figcaption {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

.wp-block-quote {
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  margin: 32px 0;
  background: var(--surface);
}

.wp-block-quote p {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--blush);
  line-height: 1.6;
  margin-bottom: 0;
}

.wp-block-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-style: normal;
}

.wp-block-separator {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

.wp-block-code,
pre {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 20px 24px;
  border-radius: 0;
  overflow-x: auto;
  font-size: 13px;
  color: var(--gold-light);
  margin: 24px 0;
}

.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.wp-block-table th,
.wp-block-table td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  text-align: left;
  font-size: 14px;
}

.wp-block-table th {
  background: var(--surface);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.wp-block-table td {
  color: var(--muted);
}

.wp-block-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--obsidian);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
  border: 1px solid var(--gold);
  text-decoration: none;
}

.wp-block-button__link:hover {
  background: var(--gold-light);
  color: var(--obsidian);
}

.is-style-outline .wp-block-button__link {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold);
}

.is-style-outline .wp-block-button__link:hover {
  background: var(--gold);
  color: var(--obsidian);
}

/* WordPress gallery block */
.wp-block-gallery {
  margin: 24px 0;
}

.wp-block-gallery .blocks-gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Embeds */
.wp-block-embed {
  margin: 32px 0;
}

.wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ═══════════════════════════════════════════════════════
   BLOG / ARCHIVE STYLES
═══════════════════════════════════════════════════════ */

.page-header {
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: 60px;
}

.page-header .page-title,
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: var(--blush);
  margin-bottom: 16px;
}

.page-header .archive-description {
  color: var(--muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  padding: 0 0 80px;
}

.blog-layout.no-sidebar {
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
}

.posts-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.post-card {
  border-bottom: 1px solid var(--border);
  padding-bottom: 48px;
}

.post-card:last-child {
  border-bottom: none;
}

.post-thumbnail {
  overflow: hidden;
  margin-bottom: 28px;
  aspect-ratio: 16/9;
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.post-thumbnail:hover img { transform: scale(1.04); }

.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.post-meta .cat-link {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.post-meta .post-date {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.post-meta .post-author {
  font-size: 12px;
  color: var(--muted);
}

.post-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--blush);
  line-height: 1.2;
  margin-bottom: 16px;
  transition: color 0.25s;
}

.post-title a {
  color: inherit;
  text-decoration: none;
}

.post-title a:hover { color: var(--gold-light); }

.post-excerpt {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s ease;
}

.read-more-link:hover { gap: 14px; }

/* ─── SINGLE POST ─────────────────────────────────────── */
.single-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  padding: 60px 0 80px;
}

.single-layout.no-sidebar {
  grid-template-columns: 1fr;
  max-width: 860px;
  margin: 0 auto;
}

.single-post-header {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

.single-post-header .post-meta {
  margin-bottom: 20px;
}

.single-post-header h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  color: var(--blush);
  line-height: 1.1;
  margin-bottom: 20px;
}

.single-featured-image {
  margin-bottom: 48px;
  overflow: hidden;
}

.single-featured-image img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
}

.entry-content {
  color: var(--text);
  font-size: 16px;
  line-height: 1.85;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--blush);
  margin: 36px 0 16px;
  line-height: 1.2;
}

.entry-content h2 { font-size: clamp(26px, 3vw, 38px); }
.entry-content h3 { font-size: clamp(22px, 2.5vw, 30px); }
.entry-content h4 { font-size: 22px; }

.entry-content p { margin-bottom: 24px; color: var(--muted); }

.entry-content a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(201,164,110,0.3);
  transition: text-decoration-color 0.25s;
}

.entry-content a:hover { text-decoration-color: var(--gold); }

.entry-content ul,
.entry-content ol {
  margin: 20px 0 24px 20px;
  color: var(--muted);
}

.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }

.entry-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.entry-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  margin: 32px 0;
  background: var(--surface);
}

.entry-content blockquote p {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--blush);
  margin-bottom: 0;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  margin: 24px 0;
}

.entry-content iframe {
  max-width: 100%;
}

/* Post tags/categories footer */
.entry-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.entry-footer .cat-label,
.entry-footer .tags-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.entry-footer a {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 4px 12px;
  transition: all 0.25s;
}

.entry-footer a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Post navigation */
.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 48px 0;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.nav-previous,
.nav-next {
  padding: 24px;
  background: var(--card);
  transition: background 0.3s;
}

.nav-previous:hover,
.nav-next:hover { background: var(--surface); }

.nav-next { text-align: right; }

.nav-direction {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.nav-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--blush);
  transition: color 0.25s;
}

.nav-previous:hover .nav-title,
.nav-next:hover .nav-title { color: var(--gold-light); }

/* ─── COMMENTS ────────────────────────────────────────── */
.comments-area {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.comments-title,
.comment-reply-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--blush);
  margin-bottom: 36px;
}

.comment-list {
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
}

.comment {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.comment:last-child { border-bottom: none; }

.comment-body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
}

.comment-author .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.comment-author .fn {
  font-weight: 500;
  color: var(--blush);
  font-size: 14px;
}

.comment-metadata {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.comment-metadata a { color: var(--muted); }

.comment-content p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 12px;
}

.reply a {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.25s;
}

.reply a:hover { color: var(--gold-light); }

/* Comment form */
.comment-form {
  background: var(--card);
  padding: 40px;
}

.comment-form label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  margin-bottom: 20px;
}

.comment-form input:focus,
.comment-form textarea:focus { border-color: var(--gold); }

.comment-form textarea { min-height: 140px; resize: vertical; }

.comment-form .form-submit {
  margin: 0;
}

.comment-form .submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--obsidian);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.35s ease;
  border: 1px solid var(--gold);
}

.comment-form .submit:hover { background: var(--gold-light); }

/* ─── PAGINATION ──────────────────────────────────────── */
.pagination,
.nav-links,
.posts-navigation {
  margin: 48px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.page-numbers,
.nav-links a,
.nav-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  transition: all 0.25s;
  text-decoration: none;
}

.page-numbers:hover,
.nav-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.page-numbers.current,
.nav-links .current {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--obsidian);
  font-weight: 600;
}

.page-numbers.dots {
  border: none;
  width: auto;
  padding: 0 4px;
}

/* ─── SIDEBAR ─────────────────────────────────────────── */
.sidebar {
  position: relative;
}

.widget {
  background: var(--card);
  padding: 28px 24px;
  margin-bottom: 28px;
  border: 1px solid var(--border);
}

.widget-title {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,164,110,0.08);
  font-size: 14px;
  color: var(--muted);
}

.widget ul li:last-child { border-bottom: none; }

.widget ul li a {
  color: var(--muted);
  transition: color 0.25s;
}

.widget ul li a:hover { color: var(--gold-light); }

.widget_search .search-form {
  display: flex;
}

.widget_search .search-field {
  flex: 1;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
}

.widget_search .search-field:focus { border-color: var(--gold); }

.widget_search .search-submit {
  padding: 12px 16px;
  background: var(--gold);
  color: var(--obsidian);
  border: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.25s;
}

.widget_search .search-submit:hover { background: var(--gold-light); }

.widget_recent_entries ul li a {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  color: var(--blush);
  line-height: 1.3;
  display: block;
  margin-bottom: 4px;
}

.widget_recent_entries ul li .post-date {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.widget_tag_cloud .tag-cloud-link {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px !important;
  margin: 3px;
  transition: all 0.25s;
}

.widget_tag_cloud .tag-cloud-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── 404 PAGE ────────────────────────────────────────── */
.error-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 0;
}

.error-404 .error-num {
  font-family: var(--font-display);
  font-size: clamp(100px, 20vw, 200px);
  font-weight: 300;
  color: rgba(201,164,110,0.15);
  line-height: 1;
  margin-bottom: 0;
}

.error-404 h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  color: var(--blush);
  margin-bottom: 20px;
}

.error-404 p {
  color: var(--muted);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.error-404 .search-form {
  display: flex;
  max-width: 400px;
  margin: 0 auto 36px;
}

.error-404 .search-field {
  flex: 1;
  padding: 14px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
}

.error-404 .search-field:focus { border-color: var(--gold); }

.error-404 .search-submit {
  padding: 14px 20px;
  background: var(--gold);
  color: var(--obsidian);
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.25s;
}

.error-404 .search-submit:hover { background: var(--gold-light); }

/* ─── GENERIC PAGE ────────────────────────────────────── */
.page-content-wrapper {
  padding: 60px 0 100px;
}

.page-content-wrapper .entry-header {
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.page-content-wrapper .entry-title,
.page-content-wrapper h1.entry-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: var(--blush);
  line-height: 1.1;
}

/* ═══════════════════════════════════════════════════════
   WOOCOMMERCE STYLES
═══════════════════════════════════════════════════════ */

/* WC global wrapper */
.woocommerce,
.woocommerce-page {
  background: var(--obsidian);
  color: var(--text);
}

/* WC page header */
.woocommerce-products-header,
.woocommerce .page-title,
.woocommerce-page .page-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  color: var(--blush);
  margin-bottom: 40px;
}

/* Breadcrumb */
.woocommerce .woocommerce-breadcrumb {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.woocommerce .woocommerce-breadcrumb a {
  color: var(--muted);
  transition: color 0.25s;
}

.woocommerce .woocommerce-breadcrumb a:hover { color: var(--gold); }

/* WC notices */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  padding: 16px 20px;
  margin-bottom: 24px;
  border-radius: 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}

.woocommerce-message {
  background: rgba(201,164,110,0.12);
  border-left: 3px solid var(--gold);
  color: var(--gold-light);
}

.woocommerce-error {
  background: rgba(201,110,110,0.12);
  border-left: 3px solid #c96e6e;
  color: #e8a0a0;
}

.woocommerce-info {
  background: rgba(110,150,201,0.12);
  border-left: 3px solid #6e96c9;
  color: #a0c0e8;
}

.woocommerce-message a,
.woocommerce-error a,
.woocommerce-info a {
  color: inherit;
  text-decoration: underline;
}

/* Product grid (archive) */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 1100px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: 1fr;
  }
}

/* WC product item */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: var(--card);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
  position: relative;
  margin: 0;
  padding: 0;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  transform: translateY(-6px);
}

.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.woocommerce ul.products li.product:hover a img,
.woocommerce-page ul.products li.product:hover a img {
  transform: scale(1.06);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--blush);
  line-height: 1.2;
  padding: 16px 20px 8px;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--gold-light);
  padding: 0 20px;
  display: block;
}

.woocommerce ul.products li.product .price del,
.woocommerce-page ul.products li.product .price del {
  font-size: 14px;
  color: var(--muted);
  margin-right: 6px;
  opacity: 1;
}

.woocommerce ul.products li.product .price ins,
.woocommerce-page ul.products li.product .price ins {
  text-decoration: none;
  color: var(--gold-light);
}

/* WC product onsale badge */
.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale {
  background: var(--gold);
  color: var(--obsidian);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 0;
  min-height: auto;
  min-width: auto;
  line-height: 1.4;
  top: 14px;
  left: 14px;
}

/* WC add to cart button */
.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce #payment .place-order .button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
  text-decoration: none;
  margin: 12px 20px 20px;
  border-radius: 0;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--gold);
  color: var(--obsidian);
}

/* Alt button (add to cart, etc.) */
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #payment .place-order .button {
  background: var(--gold);
  color: var(--obsidian);
  font-weight: 600;
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background: var(--gold-light);
  color: var(--obsidian);
}

/* Single product */
.woocommerce div.product {
  padding: 60px 0;
}

.woocommerce div.product div.images {
  width: 55%;
  float: left;
}

.woocommerce div.product div.summary {
  width: 40%;
  float: right;
}

.woocommerce div.product .product_title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--blush);
  line-height: 1.1;
  margin-bottom: 16px;
}

.woocommerce div.product .price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 24px;
  display: block;
}

.woocommerce div.product .price del {
  color: var(--muted);
  font-size: 20px;
  opacity: 1;
}

.woocommerce div.product .price ins {
  text-decoration: none;
}

.woocommerce div.product p.stock {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.woocommerce div.product p.stock.in-stock {
  color: #7dbf7d;
}

.woocommerce div.product p.stock.out-of-stock {
  color: #c96e6e;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.woocommerce div.product form.cart {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.woocommerce div.product form.cart .qty {
  width: 64px;
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  text-align: center;
  outline: none;
  border-radius: 0;
}

.woocommerce div.product form.cart .qty:focus {
  border-color: var(--gold);
}

.woocommerce div.product form.cart .button {
  margin: 0;
  padding: 14px 36px;
  font-size: 11px;
}

/* Product meta */
.woocommerce div.product .product_meta {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}

.woocommerce div.product .product_meta span {
  display: block;
  margin-bottom: 6px;
}

.woocommerce div.product .product_meta a {
  color: var(--gold);
  transition: color 0.25s;
}

.woocommerce div.product .product_meta a:hover { color: var(--gold-light); }

/* Product tabs */
.woocommerce div.product .woocommerce-tabs {
  clear: both;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 0;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  border-bottom: 1px solid var(--border);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 14px 24px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: all 0.25s;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

.woocommerce div.product .woocommerce-tabs .panel {
  padding: 36px 0;
  color: var(--muted);
  line-height: 1.8;
}

/* Related products */
.related.products h2,
.upsells.products h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--blush);
  margin-bottom: 36px;
}

/* Cart */
.woocommerce-cart .cart-collaterals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}

.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
}

.woocommerce table.shop_table th {
  padding: 16px 20px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  text-align: left;
}

.woocommerce table.shop_table td {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  vertical-align: middle;
}

.woocommerce table.shop_table td.product-name a {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--blush);
  transition: color 0.25s;
}

.woocommerce table.shop_table td.product-name a:hover { color: var(--gold-light); }

.woocommerce table.shop_table td .amount {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold-light);
}

.woocommerce table.shop_table tfoot tr th,
.woocommerce table.shop_table tfoot tr td {
  font-weight: 600;
}

.woocommerce .cart-collaterals .cart_totals h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--blush);
  margin-bottom: 20px;
}

/* Checkout */
.woocommerce-checkout .woocommerce h3,
.woocommerce-checkout h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--blush);
  margin-bottom: 24px;
}

.woocommerce form .form-row label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  width: 100%;
  padding: 14px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  appearance: none;
}

.woocommerce form .form-row input:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  border-color: var(--gold);
}

/* Product rating */
.woocommerce .star-rating {
  color: var(--gold);
  font-size: 12px;
}

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

.woocommerce p.stars a {
  color: var(--gold);
}

/* WC block styles */
.wc-block-grid__product {
  background: var(--card);
  border: 1px solid var(--border);
}

.wc-block-grid__product-title {
  font-family: var(--font-display);
  color: var(--blush);
}

.wc-block-grid__product-price {
  color: var(--gold-light);
}

/* Shop toolbar */
.woocommerce .woocommerce-ordering select {
  padding: 10px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 12px;
  outline: none;
  border-radius: 0;
  cursor: pointer;
  appearance: none;
}

.woocommerce .woocommerce-result-count {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin: 0;
}

/* Quantity controls */
.woocommerce .quantity .qty {
  width: 64px;
  padding: 10px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 16px;
  text-align: center;
  border-radius: 0;
}

/* Remove button */
.woocommerce table.cart a.remove {
  color: var(--muted) !important;
  font-size: 18px;
  transition: color 0.25s;
}

.woocommerce table.cart a.remove:hover {
  background: none;
  color: #c96e6e !important;
}

/* WC shop layout override */
.woocommerce .shop-layout,
.woocommerce-page .shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

/* WC widget (shop sidebar) */
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
  background: var(--surface);
}

.woocommerce .widget_price_filter .price_slider_amount {
  color: var(--muted);
  font-size: 13px;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  background: var(--gold);
  border: none;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
  background: rgba(201,164,110,0.4);
}

/* ═══════════════════════════════════════════════════════
   MOBILE RESPONSIVE ADDITIONS
═══════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .blog-layout,
  .single-layout {
    grid-template-columns: 1fr;
  }

  .woocommerce div.product div.images,
  .woocommerce div.product div.summary {
    width: 100%;
    float: none;
  }

  .woocommerce-cart .cart-collaterals {
    grid-template-columns: 1fr;
  }

  .woocommerce .shop-layout,
  .woocommerce-page .shop-layout {
    grid-template-columns: 1fr;
  }

  .post-navigation {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .comment-body {
    grid-template-columns: 1fr;
  }

  .comment-form {
    padding: 24px 20px;
  }
}
/* Fix logo size on shop/WooCommerce pages */
  .woocommerce .logo-img,
  .woocommerce-page .logo-img {
      height: 52px !important;
      width: auto !important;
      max-width: 160px !important;
  }

  .woocommerce .site-logo img,
  .woocommerce-page .site-logo img {
      height: 52px !important;
      width: auto !important;
  }
/* Fix WooCommerce product grid */
  .woocommerce ul.products {
      display: grid !important;
      grid-template-columns: repeat(4, 1fr) !important;
      gap: 20px !important;
      float: none !important;
      width: 100% !important;
  }

  .woocommerce ul.products li.product {
      width: 100% !important;
      float: none !important;
      margin: 0 !important;
      padding: 0 !important;
  }

  .woocommerce .woo-archive-layout {
      padding: 60px 40px 80px !important;
      max-width: 1260px !important;
      margin: 0 auto !important;
  }

  @media (max-width: 900px) {
      .woocommerce ul.products {
          grid-template-columns: repeat(2, 1fr) !important;
      }
  }

  @media (max-width: 480px) {
      .woocommerce ul.products {
          grid-template-columns: 1fr !important;
      }
  }
/* Fix decorative watermark overflow on mobile */
  .about::before {
      display: none;
  }

  .hero {
      overflow: hidden;
  }
@media(max-width:768px){.hero-badge,.about::before{display:none!important}body{overflow-x:hidden!important}} 
@media (max-width: 768px) {
  .nav-left, .nav-left * { display:none!important; }
  .menu-item a { white-space:nowrap; }
  ul.nav-left { display:none!important; }
  }
.mobile-nav-backdrop{position:fixed;inset:0;background:rgba(0,0,0,0.7);z-index:499;opacity:0;pointer-events:none;transition:opacity 0.4s
  ease}.mobile-nav-backdrop.is-open{opacity:1;pointer-events:all}
