/*
Theme Name: Lé Mat
Theme URI: https://le-maitre.eu
Description: Full native WordPress theme for Lé Mat e-commerce. Dark luxury design. WooCommerce integrated.
Version: 2.0.0
Author: Lé Mat
*/

/* ═══════════════════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg:           #141414;
  --bg-card:      #1f1f1f;
  --bg-secondary: #292929;
  --bg-elevated:  #242424;
  --border:       #333333;
  --fg:           #f2f2f2;
  --fg-muted:     #b8b8b8;
  --primary:      hsl(145, 45%, 48%);
  --primary-dark: hsl(145, 50%, 35%);
  --primary-glow: hsl(145 45% 48% / 0.4);
  --gold:         hsl(45, 80%, 50%);
  --gold-light:   hsl(45, 70%, 65%);
  --gold-dark:    hsl(45, 90%, 35%);
  --destructive:  hsl(0, 84%, 60%);
  --radius:       4px;
  --container-max: 1280px;
  --container-pad: 24px;
}

/* ═══════════════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--fg);
  line-height: 1.25;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--gold); }

p { margin-top: 0; }

img { max-width: 100%; height: auto; display: block; }

ul, ol { list-style: none; }

button { cursor: pointer; font-family: inherit; }

/* ═══════════════════════════════════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════════════════════════════════ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section-py { padding: 60px 0; }
.section-py-sm { padding: 40px 0; }

.lemat-wc-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px var(--container-pad) 60px;
}

.lemat-main {
  min-height: calc(100vh - 70px);
}

/* ═══════════════════════════════════════════════════════════════════
   TYPOGRAPHY UTILITIES
═══════════════════════════════════════════════════════════════════ */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
}

.gold-gradient-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold { color: var(--gold); }
.text-gold-light { color: var(--gold-light); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--fg-muted); }
.text-center { text-align: center; }

.font-display { font-family: 'Playfair Display', serif; }
.font-body { font-family: 'Inter', sans-serif; }
.italic { font-style: italic; }

/* ═══════════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: #0a0a0a;
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  color: #0a0a0a;
  box-shadow: 0 0 40px var(--primary-glow);
  transform: scale(1.02);
}

.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(242, 242, 242, 0.2);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-lg {
  padding: 16px 48px;
  font-size: 15px;
}

/* ═══════════════════════════════════════════════════════════════════
   HEADER / NAVBAR
═══════════════════════════════════════════════════════════════════ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: background-color 0.3s;
}

#site-header.scrolled {
  background-color: rgba(20, 20, 20, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.site-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Logo centered */
.site-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.site-logo img {
  height: 48px;
  width: auto;
}

/* Desktop nav */
.nav-left,
.nav-right {
  display: none;
  align-items: center;
  gap: 28px;
  flex: 1;
}

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

@media (min-width: 768px) {
  .nav-left,
  .nav-right { display: flex; }
  .site-logo img { height: 56px; }
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: capitalize;
  color: var(--fg);
  transition: color 0.2s;
}

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

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--fg);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}

.nav-dropdown-btn:hover { color: var(--gold); }

.nav-dropdown-btn svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}

.nav-dropdown-panel {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  padding-top: 8px;
  z-index: 200;
  min-width: 200px;
}

.nav-dropdown-panel-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  padding: 6px 0;
}

.nav-dropdown:hover .nav-dropdown-panel { display: block; }

.nav-dropdown-panel a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  color: var(--fg);
  transition: color 0.15s, background 0.15s;
}

.nav-dropdown-panel a:hover {
  color: var(--gold);
  background: var(--bg-secondary);
}

.nav-dropdown-label {
  display: block;
  padding: 8px 18px 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(184, 184, 184, 0.5);
}

.nav-divider {
  height: 1px;
  background: var(--border);
  margin: 5px 0;
}

/* Cart & account icons */
.nav-cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--fg);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}

.nav-cart-btn:hover,
.nav-cart-btn:hover .cart-count-badge { color: var(--gold); }

.cart-count-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 700;
}

.cart-total-display {
  font-size: 13px;
  font-weight: 500;
}

.nav-account-link {
  color: var(--fg);
  transition: color 0.2s;
}

.nav-account-link:hover { color: var(--gold); }

.nav-account-link svg {
  width: 20px;
  height: 20px;
}

/* Mobile right icons */
.nav-mobile-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .nav-mobile-right { display: none; }
}

.mobile-cart-btn {
  position: relative;
  color: var(--fg);
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.mobile-cart-btn svg { width: 22px; height: 22px; }

.mobile-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  color: #0a0a0a;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

#mobile-menu-btn {
  background: none;
  border: none;
  color: var(--fg);
  padding: 4px;
}

#mobile-menu-btn svg { width: 24px; height: 24px; }

/* Mobile menu */
#mobile-menu {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

#mobile-menu.is-open { }

.mobile-menu-inner {
  padding: 16px var(--container-pad) 24px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg);
  transition: background 0.15s, color 0.15s;
}

.mobile-nav-link:hover {
  background: var(--bg-secondary);
  color: var(--gold);
}

.mobile-nav-link svg {
  width: 18px;
  height: 18px;
  color: var(--fg-muted);
  flex-shrink: 0;
}

.mobile-submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg);
  background: none;
  border: none;
  text-align: left;
  transition: background 0.15s, color 0.15s;
}

.mobile-submenu-toggle:hover {
  background: var(--bg-secondary);
  color: var(--gold);
}

.mobile-submenu-toggle .toggle-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-submenu-toggle .toggle-left svg {
  width: 18px;
  height: 18px;
  color: var(--fg-muted);
}

.submenu-chevron {
  width: 16px;
  height: 16px;
  color: var(--fg-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.submenu-chevron.rotated { transform: rotate(90deg); }

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  margin-left: 30px;
  padding-left: 12px;
  border-left: 1px solid var(--border);
}

.mobile-submenu-link {
  display: block;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--fg-muted);
  transition: color 0.15s;
}

.mobile-submenu-link:hover { color: var(--gold); }

.mobile-submenu-label {
  display: block;
  padding: 10px 12px 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(184, 184, 184, 0.4);
}

.mobile-divider {
  height: 1px;
  background: var(--border);
  margin: 10px 0;
}

.mobile-account-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--bg-secondary);
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.15s;
}

.mobile-account-link:hover {
  background: var(--bg-elevated);
  color: var(--gold);
}

.mobile-account-link svg {
  width: 20px;
  height: 20px;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 40px; }
}

.footer-logo {
  display: block;
  margin-bottom: 16px;
}

.footer-logo img { height: 40px; width: auto; }

.footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-muted);
}

.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 13px;
  color: var(--fg-muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid var(--border);
  padding: 20px var(--container-pad);
  text-align: center;
  font-size: 13px;
  color: var(--fg-muted);
}

/* ═══════════════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 420px;
}

@media (min-width: 768px) { .hero-section { min-height: 600px; } }

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,20,20,0.8) 0%, rgba(20,20,20,0.55) 50%, rgba(20,20,20,1) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px var(--container-pad) 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.4rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-desc {
  max-width: 480px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

@media (min-width: 500px) {
  .hero-ctas { flex-direction: row; }
}

/* ═══════════════════════════════════════════════════════════════════
   TRUST BADGES
═══════════════════════════════════════════════════════════════════ */
.trust-badges {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(31, 31, 31, 0.5);
  padding: 40px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    divide-x: 1px solid var(--border);
  }
  .trust-item:not(:last-child) {
    border-right: 1px solid var(--border);
  }
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.trust-icon {
  width: 22px;
  height: 22px;
  color: rgba(66, 168, 104, 0.6);
}

.trust-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.trust-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ═══════════════════════════════════════════════════════════════════
   BRAND PHILOSOPHY
═══════════════════════════════════════════════════════════════════ */
.brand-philosophy { padding: 60px 0; }

.manifesto {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.manifesto-title {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
}

.philosophy-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .philosophy-grid { grid-template-columns: 7fr 5fr; gap: 48px; }
}

.philosophy-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.philosophy-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

@media (min-width: 768px) { .philosophy-img-wrap img { height: 520px; } }

.philosophy-img-wrap:hover img { transform: scale(1.05); }

.philosophy-corner-v {
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 1px;
  height: 90px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  display: none;
}

.philosophy-corner-h {
  position: absolute;
  bottom: -10px;
  left: -10px;
  height: 1px;
  width: 90px;
  background: linear-gradient(to right, var(--primary), transparent);
  display: none;
}

@media (min-width: 768px) {
  .philosophy-corner-v,
  .philosophy-corner-h { display: block; }
}

.philosophy-text-wrap { }

.philosophy-text p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.philosophy-text em { color: var(--fg); font-style: italic; font-weight: 500; }

.philosophy-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--primary);
  margin-top: 28px;
  transition: color 0.2s;
}

.philosophy-link:hover { color: var(--gold-light); }

.philosophy-link .arrow {
  font-size: 18px;
  transition: transform 0.2s;
}

.philosophy-link:hover .arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════════════
   PRODUCT CATEGORIES
═══════════════════════════════════════════════════════════════════ */
.product-categories {
  padding: 60px 0;
  background: var(--bg-card);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
}

.categories-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) { .categories-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }

.category-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
}

.category-card-img {
  position: relative;
  height: 420px;
  overflow: hidden;
}

@media (min-width: 768px) { .category-card-img { height: 520px; } }

.category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.category-card:hover .category-card-img img { transform: scale(1.1); }

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,1) 0%, rgba(20,20,20,0.5) 50%, rgba(20,20,20,0.1) 100%);
}

.category-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 36px;
}

.category-card-tagline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.category-card-title {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.category-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 320px;
  margin-bottom: 20px;
}

.category-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--primary);
  transition: gap 0.2s;
}

.category-card:hover .category-card-link { gap: 12px; }

/* ═══════════════════════════════════════════════════════════════════
   PRODUCT LINES
═══════════════════════════════════════════════════════════════════ */
.product-lines { padding: 60px 0; overflow: hidden; }

.product-lines-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.product-lines-view-all {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--primary);
  transition: color 0.2s;
}

.product-lines-view-all:hover { color: var(--gold-light); }

@media (min-width: 768px) { .product-lines-view-all { display: flex; } }

/* Scroll on mobile, grid on desktop */
.lines-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.lines-scroll::-webkit-scrollbar { display: none; }

@media (min-width: 768px) {
  .lines-scroll {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    overflow: visible;
    padding-bottom: 0;
  }
}

.line-card {
  flex-shrink: 0;
  width: 260px;
  scroll-snap-align: start;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
}

@media (min-width: 768px) { .line-card { width: auto; } }

.line-card-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}

@media (min-width: 768px) { .line-card-img { height: 380px; } }

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

.line-card:hover .line-card-img img { transform: scale(1.1); }

.line-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,1) 0%, rgba(20,20,20,0.55) 50%, rgba(20,20,20,0.1) 100%);
}

.line-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
}

.line-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}

.line-card-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

.line-card-explore {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}

.line-card:hover .line-card-explore {
  opacity: 1;
  transform: translateY(0);
}

.lines-mobile-link {
  text-align: center;
  margin-top: 24px;
  display: block;
  font-size: 13px;
  color: var(--primary);
}

@media (min-width: 768px) { .lines-mobile-link { display: none; } }

/* ═══════════════════════════════════════════════════════════════════
   NEW ARRIVALS
═══════════════════════════════════════════════════════════════════ */
.new-arrivals {
  position: relative;
  padding: 60px 0;
  background: var(--bg-card);
  overflow: hidden;
}

.new-arrivals-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(66, 168, 104, 0.03);
  filter: blur(120px);
  pointer-events: none;
}

.new-arrivals-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .new-arrivals-grid { grid-template-columns: 1fr 1fr; gap: 72px; }
}

.new-arrivals-text { order: 2; }
@media (min-width: 768px) { .new-arrivals-text { order: 1; } }

.new-arrivals-badge {
  display: inline-block;
  border: 1px solid rgba(66, 168, 104, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.new-arrivals-badge .eyebrow { color: var(--primary); }

.new-arrivals-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}

.new-arrivals-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

.new-arrivals-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--fg-muted);
  margin-bottom: 36px;
}

.new-arrivals-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.new-arrivals-images { position: relative; order: 1; }
@media (min-width: 768px) { .new-arrivals-images { order: 2; } }

.new-arrivals-img-main {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.new-arrivals-img-float {
  display: none;
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 160px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--bg-card);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

@media (min-width: 768px) { .new-arrivals-img-float { display: block; } }

.new-arrivals-img-float img { width: 100%; }

/* ═══════════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════════ */
.testimonials { padding: 60px 0; }

.featured-quote {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.quote-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}

.star {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  color: var(--gold);
}

.star-sm {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  color: var(--gold);
}

.quote-icon {
  width: 40px;
  height: 40px;
  color: rgba(66, 168, 104, 0.2);
  margin: 0 auto 24px;
}

.featured-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 20px;
}

.featured-source {
  font-size: 13px;
  color: var(--primary);
}

.reviews-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  padding: 28px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  border-color: rgba(66, 168, 104, 0.4);
  box-shadow: 0 0 30px rgba(66, 168, 104, 0.06);
}

.review-card-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.review-card-text {
  font-size: 13px;
  line-height: 1.8;
  color: var(--fg-muted);
  flex: 1;
  margin-bottom: 20px;
}

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

.review-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}

.review-logo { height: 18px; width: auto; }

/* ═══════════════════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════════════════ */
.cta-section { padding: 60px 0; background: var(--bg-card); }

.cta-box {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 60px 40px;
  text-align: center;
  overflow: hidden;
}

@media (min-width: 768px) { .cta-box { padding: 80px 80px; } }

.cta-corner { position: absolute; }
.cta-corner-tl-v {
  top: 0; left: 0;
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, var(--primary), transparent);
}
.cta-corner-tl-h {
  top: 0; left: 0;
  height: 1px; width: 80px;
  background: linear-gradient(to right, var(--primary), transparent);
}
.cta-corner-br-v {
  bottom: 0; right: 0;
  width: 1px; height: 80px;
  background: linear-gradient(to top, var(--primary), transparent);
}
.cta-corner-br-h {
  bottom: 0; right: 0;
  height: 1px; width: 80px;
  background: linear-gradient(to left, var(--primary), transparent);
}

.cta-title {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 380px;
  margin: 0 auto 36px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto 16px;
}

@media (min-width: 480px) { .newsletter-form { flex-direction: row; } }

.newsletter-input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 14px 20px;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
}

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

.newsletter-disclaimer {
  font-size: 12px;
  color: var(--fg-muted);
}

.newsletter-msg {
  margin-top: 10px;
  font-size: 13px;
}

.newsletter-msg.success { color: var(--primary); }
.newsletter-msg.error { color: var(--destructive); }

/* ═══════════════════════════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════════════════════════ */
.faq-section { padding: 60px 0; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 22px;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-trigger:hover { color: var(--primary); }

.faq-chevron {
  width: 18px;
  height: 18px;
  color: var(--fg-muted);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-chevron.rotated { transform: rotate(180deg); }

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-content-inner {
  padding: 0 22px 18px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--fg-muted);
}

/* ═══════════════════════════════════════════════════════════════════
   PAGE HERO (category/about/contact pages)
═══════════════════════════════════════════════════════════════════ */
.page-hero {
  padding: 60px 0 40px;
  background: linear-gradient(to bottom, rgba(31,31,31,0.8), transparent);
  border-bottom: 1px solid var(--border);
}

.page-hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════════════════════
   WOOCOMMERCE — GLOBAL
═══════════════════════════════════════════════════════════════════ */
.woocommerce-breadcrumb { display: none !important; }

.woocommerce h1.entry-title,
.woocommerce-page h1,
.woocommerce h2 {
  font-family: 'Playfair Display', serif;
  color: var(--fg);
  margin-bottom: 24px;
}

.woocommerce-message,
.woocommerce-info {
  background: var(--bg-card) !important;
  border-top-color: var(--primary) !important;
  color: var(--fg) !important;
  border-radius: var(--radius);
}

.woocommerce-error {
  background: rgba(220, 38, 38, 0.1) !important;
  border-top-color: var(--destructive) !important;
  color: var(--fg) !important;
}

.woocommerce-message a,
.woocommerce-info a { color: var(--primary); }

/* Buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background-color: var(--primary) !important;
  color: #0a0a0a !important;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: none !important;
  border-radius: var(--radius) !important;
  padding: 12px 24px !important;
  cursor: pointer;
  transition: background-color 0.2s, opacity 0.2s;
  letter-spacing: 0.3px;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background-color: var(--primary-dark) !important;
  color: #0a0a0a !important;
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce #place_order {
  background-color: var(--primary) !important;
  color: #0a0a0a !important;
}

/* Form inputs */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  background-color: var(--bg-secondary) !important;
  border: 1px solid var(--border) !important;
  color: var(--fg) !important;
  border-radius: var(--radius) !important;
  padding: 10px 14px !important;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  border-color: var(--primary) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(66, 168, 104, 0.2) !important;
}

.woocommerce form .form-row label {
  color: var(--fg-muted);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  margin-bottom: 6px;
  display: block;
}

.woocommerce form .select2-container .select2-selection--single {
  background-color: var(--bg-secondary) !important;
  border: 1px solid var(--border) !important;
  color: var(--fg) !important;
  height: 42px !important;
  border-radius: var(--radius) !important;
}

.select2-dropdown {
  background-color: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  color: var(--fg) !important;
}

.select2-results__option { color: var(--fg) !important; }
.select2-results__option--highlighted {
  background-color: var(--primary) !important;
  color: #0a0a0a !important;
}

/* ═══════════════════════════════════════════════════════════════════
   WOOCOMMERCE — SHOP / PRODUCT ARCHIVE
═══════════════════════════════════════════════════════════════════ */
.shop-layout {
  display: grid;
  gap: 40px;
  padding: 40px 0;
}

@media (min-width: 768px) {
  .shop-layout { grid-template-columns: 220px 1fr; }
}

/* Filter sidebar */
.shop-sidebar {
  position: sticky;
  top: 90px;
  align-self: start;
}

.filter-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.filter-list { display: flex; flex-direction: column; gap: 4px; }

.filter-link {
  display: block;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--fg-muted);
  transition: color 0.15s, background 0.15s;
}

.filter-link:hover,
.filter-link.active {
  color: var(--fg);
  background: var(--bg-secondary);
}

.filter-link.active { color: var(--primary); }

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

/* Product card */
.wc-product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.wc-product-card:hover {
  border-color: rgba(66, 168, 104, 0.3);
  transform: translateY(-2px);
}

.wc-product-card-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-secondary);
}

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

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

.wc-product-card-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wc-product-line-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.line-excellent { color: var(--primary); }
.line-estetic { color: var(--primary); }
.line-bronze { color: var(--gold); }
.line-caprice { color: var(--gold-light); }
.line-standard { color: var(--fg-muted); }

.wc-product-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 8px;
  line-height: 1.4;
}

.wc-product-price {
  margin-top: auto;
}

.wc-product-price ins {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.wc-product-price del {
  font-size: 12px;
  color: var(--fg-muted);
  margin-left: 4px;
}

.wc-product-price .amount {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}

.wc-product-add-btn {
  margin-top: 10px;
  display: block;
  width: 100%;
  padding: 9px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  background: var(--primary);
  color: #0a0a0a;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
}

.wc-product-add-btn:hover { background: var(--primary-dark); }

/* Pagination */
.wc-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 40px 0;
}

.wc-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  transition: all 0.15s;
}

.wc-pagination .page-numbers:hover,
.wc-pagination .page-numbers.current {
  background: var(--primary);
  color: #0a0a0a;
  border-color: var(--primary);
}

/* ═══════════════════════════════════════════════════════════════════
   WOOCOMMERCE — SINGLE PRODUCT
═══════════════════════════════════════════════════════════════════ */
.single-product-layout {
  display: grid;
  gap: 40px;
  padding: 40px 0;
}

@media (min-width: 768px) { .single-product-layout { grid-template-columns: 1fr 1fr; } }

/* Gallery */
.woocommerce div.product div.images { }

.woocommerce div.product div.images img { border-radius: var(--radius); }

/* Product details */
.woocommerce div.product .product_title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--fg);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--primary);
}

.woocommerce div.product p.price del { color: var(--fg-muted); }

.woocommerce div.product div.summary { }

/* Variant selects */
.woocommerce div.product .variations select {
  background: var(--bg-secondary) !important;
  border: 1px solid var(--border) !important;
  color: var(--fg) !important;
  border-radius: var(--radius) !important;
  padding: 8px 12px !important;
  font-family: 'Inter', sans-serif !important;
}

/* Quantity */
.woocommerce .quantity .qty {
  background: var(--bg-secondary) !important;
  border: 1px solid var(--border) !important;
  color: var(--fg) !important;
  border-radius: var(--radius) !important;
  padding: 8px 12px !important;
  font-family: 'Inter', sans-serif !important;
  width: 80px !important;
}

/* Tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  border-bottom: 1px solid var(--border);
  padding: 0;
  margin-bottom: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border-bottom: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin: 0;
  padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-bottom-color: var(--primary);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  padding: 12px 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--fg); }

.woocommerce div.product .woocommerce-tabs .panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: none;
  padding: 28px;
  border-radius: 0 0 var(--radius) var(--radius);
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.8;
}

/* Related products */
.related.products h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--fg);
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════════════════════════
   WOOCOMMERCE — CART
═══════════════════════════════════════════════════════════════════ */
.woocommerce table.shop_table {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  border-collapse: separate !important;
  width: 100%;
}

.woocommerce table.shop_table th {
  background: var(--bg-secondary) !important;
  color: var(--fg-muted) !important;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08px;
  padding: 12px 16px !important;
  border-bottom: 1px solid var(--border) !important;
}

.woocommerce table.shop_table td {
  background: var(--bg-card) !important;
  color: var(--fg) !important;
  border-bottom: 1px solid var(--border) !important;
  padding: 14px 16px !important;
  vertical-align: middle;
}

.woocommerce table.shop_table .product-name a { color: var(--fg) !important; }
.woocommerce table.shop_table .product-name a:hover { color: var(--primary) !important; }

.woocommerce .cart_totals,
.woocommerce .cart-collaterals .cart_totals {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  padding: 24px !important;
}

.woocommerce .cart_totals h2 {
  font-size: 18px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.woocommerce .cart_totals table th,
.woocommerce .cart_totals table td {
  background: transparent !important;
  border-bottom: 1px solid var(--border) !important;
  color: var(--fg) !important;
  padding: 10px 0 !important;
}

.woocommerce .cart_totals .order-total th,
.woocommerce .cart_totals .order-total td {
  font-weight: 700;
  border-bottom: none !important;
}

.woocommerce .coupon input.input-text {
  background: var(--bg-secondary) !important;
  border: 1px solid var(--border) !important;
  color: var(--fg) !important;
  border-radius: var(--radius) !important;
  padding: 10px 14px !important;
}

/* ═══════════════════════════════════════════════════════════════════
   WOOCOMMERCE — CLASSIC CHECKOUT
═══════════════════════════════════════════════════════════════════ */
.woocommerce-checkout #customer_details h3,
.woocommerce-checkout #order_review_heading {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.woocommerce-checkout-review-order-table {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  background: transparent !important;
  color: var(--fg) !important;
  border-bottom: 1px solid var(--border) !important;
  padding: 10px 16px !important;
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
  font-weight: 700;
  font-size: 16px;
  border-bottom: none !important;
}

#payment {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
}

#payment .payment_methods { border-bottom: 1px solid var(--border) !important; }

#payment .payment_methods li {
  background: transparent !important;
  border-bottom: 1px solid var(--border) !important;
  padding: 14px 16px !important;
}

#payment .payment_methods li label { color: var(--fg) !important; }
#payment .payment_box {
  background: var(--bg-secondary) !important;
  color: var(--fg-muted) !important;
}

#payment #place_order { width: 100%; padding: 14px !important; font-size: 16px !important; margin-top: 16px; }

/* ═══════════════════════════════════════════════════════════════════
   WOOCOMMERCE — WC BLOCKS CHECKOUT
═══════════════════════════════════════════════════════════════════ */
.wp-block-woocommerce-checkout,
.wp-block-woocommerce-cart {
  background: var(--bg) !important;
  color: var(--fg) !important;
}

.wc-block-components-checkout-step__title {
  font-family: 'Playfair Display', serif !important;
  color: var(--fg) !important;
  font-size: 18px !important;
}

.wc-block-components-checkout-step__index {
  background: var(--primary) !important;
  color: #0a0a0a !important;
}

.wc-block-components-text-input input,
.wc-block-components-text-input textarea,
.wc-block-components-country-input input,
.wc-block-components-select select {
  background-color: var(--bg-secondary) !important;
  border: 1px solid var(--border) !important;
  color: var(--fg) !important;
  border-radius: var(--radius) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
}

.wc-block-components-text-input input:focus,
.wc-block-components-country-input input:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(66, 168, 104, 0.2) !important;
  outline: none !important;
}

.wc-block-components-text-input label,
.wc-block-components-country-input label,
.wc-block-components-select label {
  color: var(--fg-muted) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
}

.wc-block-components-checkbox input[type="checkbox"]:checked {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.wc-block-components-order-summary,
.wc-block-checkout__sidebar .wc-block-components-totals-wrapper {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
}

.wc-block-components-order-summary-item__description,
.wc-block-components-order-summary-item__individual-price { color: var(--fg-muted) !important; }
.wc-block-components-order-summary-item__name { color: var(--fg) !important; }

.wc-block-components-totals-item { border-color: var(--border) !important; }
.wc-block-components-totals-item__label,
.wc-block-components-totals-item__value { color: var(--fg) !important; }

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  color: var(--fg) !important;
  font-weight: 700 !important;
  font-size: 17px !important;
}

.wc-block-components-payment-method-label,
.wc-block-components-payment-method-label__name { color: var(--fg) !important; }

.wc-block-components-radio-control__option {
  border-bottom: 1px solid var(--border) !important;
  padding: 12px 0 !important;
}

.wc-block-components-checkout-place-order-button {
  background-color: var(--primary) !important;
  color: #0a0a0a !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  border: none !important;
  border-radius: var(--radius) !important;
  padding: 14px 24px !important;
  width: 100% !important;
  transition: background-color 0.2s !important;
}

.wc-block-components-checkout-place-order-button:hover { background-color: var(--primary-dark) !important; }

.wc-block-components-validation-error { color: var(--destructive) !important; font-size: 12px !important; }

.wc-block-components-notice-banner {
  background: var(--bg-card) !important;
  border-left-color: var(--primary) !important;
  color: var(--fg) !important;
  border-radius: var(--radius) !important;
}

.wc-block-components-totals-coupon__form input {
  background: var(--bg-secondary) !important;
  border: 1px solid var(--border) !important;
  color: var(--fg) !important;
  border-radius: var(--radius) !important;
}

.wc-block-components-totals-coupon__button {
  background: var(--bg-secondary) !important;
  color: var(--fg) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
}

.wc-block-components-express-payment-continue-rule::before { background: var(--border) !important; }
.wc-block-components-express-payment-continue-rule { color: var(--fg-muted) !important; }

/* ═══════════════════════════════════════════════════════════════════
   WOOCOMMERCE — MY ACCOUNT
═══════════════════════════════════════════════════════════════════ */
.woocommerce-account .woocommerce-MyAccount-navigation {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 0;
  margin-bottom: 24px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; }

.woocommerce-account .woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 10px 20px;
  color: var(--fg-muted);
  font-size: 14px;
  transition: color 0.2s, background 0.2s;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
  color: var(--fg);
  background: var(--bg-secondary);
}

.woocommerce-account .woocommerce-MyAccount-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

/* ═══════════════════════════════════════════════════════════════════
   WOOCOMMERCE — ORDER CONFIRMATION
═══════════════════════════════════════════════════════════════════ */
.woocommerce-order-received h2,
.woocommerce-order-received h3 {
  margin-top: 32px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.woocommerce-order-overview {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  padding: 20px !important;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.woocommerce-order-overview li { color: var(--fg-muted); font-size: 13px; }
.woocommerce-order-overview li strong { color: var(--fg); display: block; font-size: 15px; }

/* ═══════════════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════════════ */
.about-timeline {
  position: relative;
  padding-left: 40px;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.timeline-item { position: relative; }

.timeline-dot {
  position: absolute;
  left: -49px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--bg);
}

.timeline-year {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.timeline-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-muted);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.value-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.value-card-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-muted);
}

/* ═══════════════════════════════════════════════════════════════════
   DELIVERY TABLE
═══════════════════════════════════════════════════════════════════ */
.delivery-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.delivery-table th {
  background: var(--bg-secondary);
  color: var(--fg-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.delivery-table td {
  background: var(--bg-card);
  color: var(--fg);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.delivery-table tr:last-child td { border-bottom: none; }

.delivery-table .free-tag {
  display: inline-block;
  background: rgba(66, 168, 104, 0.15);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  gap: 48px;
  padding: 60px 0;
}

@media (min-width: 768px) { .contact-layout { grid-template-columns: 1fr 1.5fr; } }

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}

.contact-info-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.contact-info-value {
  font-size: 15px;
  color: var(--fg);
}

/* Generic form styles */
.lemat-form-field { margin-bottom: 20px; }

.lemat-form-label {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.lemat-form-input,
.lemat-form-textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
}

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

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

/* ═══════════════════════════════════════════════════════════════════
   PRODUCT LINE LANDING PAGES
═══════════════════════════════════════════════════════════════════ */
.line-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.line-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.line-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,1) 0%, rgba(20,20,20,0.5) 60%, rgba(20,20,20,0.1) 100%);
}

.line-hero-content {
  position: relative;
  z-index: 10;
  padding: 60px var(--container-pad);
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════
   404 PAGE
═══════════════════════════════════════════════════════════════════ */
.not-found-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100vh - 200px);
  padding: 60px var(--container-pad);
}

.not-found-code {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════════════════════════════ */
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
