/*
Theme Name: Luxelle Hair
Theme URI: https://luxellehair.com
Author: Luxelle Hair
Description: Premium human hair wigs & extensions — made to order with worldwide delivery. Built on WooCommerce.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: luxelle
Tags: e-commerce, woocommerce, beauty, fashion, custom-logo, custom-menu, featured-images
*/

/* ================================================================
   LUXELLE HAIR — MASTER STYLESHEET
   Brand palette: Rose Gold + Champagne + Deep Charcoal
   ================================================================ */

/* Fonts loaded via wp_enqueue_style in functions.php */

:root {
  /* Brand */
  --lx-rose:         #c9967a;
  --lx-rose-light:   #e8bfaa;
  --lx-rose-dark:    #a87558;
  --lx-rose-pale:    #fdf5f0;
  --lx-gold:         #c9a96e;
  --lx-gold-light:   #e8cfa0;
  --lx-charcoal:     #1c1c1c;
  --lx-charcoal-2:   #2a2a2a;
  --lx-white:        #ffffff;
  --lx-cream:        #faf8f5;
  --lx-red:          #a93226;
  --lx-green:        #1a7a40;
  --lx-gray:         #f5f4f2;
  --lx-gray-mid:     #e2e0dd;
  --lx-gray-dark:    #767370;
  --lx-text:         #1c1c1c;
  --lx-border:       #eceae6;

  /* Typography */
  --lx-font-display: 'Cormorant Garamond', Georgia, serif;
  --lx-font-body:    'Jost', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --lx-header-h:   60px;
  --lx-promo-h:    36px;
  --lx-radius:     4px;
  --lx-radius-md:  8px;
  --lx-radius-lg:  14px;
  --lx-shadow:     0 2px 18px rgba(0,0,0,0.07);
  --lx-shadow-lg:  0 10px 40px rgba(0,0,0,0.13);
  --lx-trans:      0.24s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--lx-font-body);
  color: var(--lx-text);
  background: var(--lx-white);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--lx-font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--lx-charcoal);
}

/* ── Container ──────────────────────────────────────────── */
.lx-container { width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ────────────────────────────────────────────── */
.lx-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 11px 28px;
  font-family: var(--lx-font-body);
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; border-radius: var(--lx-radius);
  cursor: pointer; transition: all var(--lx-trans); white-space: nowrap;
}
.lx-btn-primary   { background: var(--lx-charcoal); color: var(--lx-white); }
.lx-btn-primary:hover { background: var(--lx-charcoal-2); transform: translateY(-1px); box-shadow: var(--lx-shadow-lg); }
.lx-btn-rose      { background: var(--lx-rose); color: var(--lx-white); }
.lx-btn-rose:hover { background: var(--lx-rose-dark); transform: translateY(-1px); box-shadow: var(--lx-shadow); }
.lx-btn-outline   { background: transparent; color: var(--lx-charcoal); border: 1.5px solid var(--lx-charcoal); }
.lx-btn-outline:hover { background: var(--lx-charcoal); color: var(--lx-white); }
.lx-btn-gold      { background: var(--lx-gold); color: var(--lx-white); }
.lx-btn-gold:hover { background: var(--lx-gold-light); color: var(--lx-charcoal); }

/* ================================================================
   PROMO BAR
   ================================================================ */
#lx-promo-bar {
  height: var(--lx-promo-h);
  background: var(--lx-charcoal);
  display: flex; align-items: center; overflow: hidden;
}
.lx-promo-track {
  display: flex; gap: 80px; white-space: nowrap;
  animation: lx-scroll 32s linear infinite;
}
.lx-promo-track span {
  font-size: 0.7rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--lx-rose-light);
}
.lx-promo-track span strong { color: var(--lx-white); }
@keyframes lx-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================================================
   HEADER
   ================================================================ */
#lx-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--lx-white);
  border-bottom: 1px solid var(--lx-border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: box-shadow var(--lx-trans);
}
#lx-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.1); }

.lx-header-inner {
  height: var(--lx-header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

/* Logo */
.lx-logo { flex-shrink: 0; display: flex; align-items: center; }
.lx-logo img { height: 44px; width: auto; }

/* Nav */
.lx-nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.lx-nav > li { position: relative; }
.lx-nav > li > a {
  display: block; padding: 8px 13px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--lx-charcoal); transition: color var(--lx-trans);
}
.lx-nav > li > a:hover,
.lx-nav > li.current > a { color: var(--lx-rose); }

/* Dropdown */
.lx-dropdown {
  display: none; position: absolute; top: calc(100% + 4px); left: 50%;
  transform: translateX(-50%);
  min-width: 210px; background: var(--lx-white);
  border: 1px solid var(--lx-border); border-radius: var(--lx-radius-md);
  box-shadow: var(--lx-shadow-lg); padding: 8px 0; z-index: 300;
}
.lx-nav > li:hover .lx-dropdown { display: block; animation: lx-fade-in 0.15s ease; }
@keyframes lx-fade-in { from { opacity:0; transform: translateX(-50%) translateY(-4px); } to { opacity:1; transform: translateX(-50%) translateY(0); } }
.lx-dropdown a {
  display: block; padding: 9px 20px;
  font-size: 0.79rem; color: var(--lx-gray-dark);
  transition: all var(--lx-trans);
}
.lx-dropdown a:hover { color: var(--lx-rose); background: var(--lx-rose-pale); padding-left: 26px; }

/* Header Actions */
.lx-header-actions { display: flex; align-items: center; gap: 12px; }
.lx-search-form {
  display: flex; align-items: center;
  background: var(--lx-gray); border-radius: 20px;
  padding: 0 14px; gap: 8px; height: 36px;
  border: 1.5px solid transparent; transition: border-color var(--lx-trans);
}
.lx-search-form:focus-within { border-color: var(--lx-rose-light); }
.lx-search-form input {
  background: none; border: none; outline: none;
  font-size: 0.8rem; width: 170px; color: var(--lx-text);
}
.lx-search-form input::placeholder { color: var(--lx-gray-dark); }
.lx-search-form button { background: none; border: none; cursor: pointer; color: var(--lx-gray-dark); }
.lx-icon-btn {
  background: none; border: none; cursor: pointer;
  padding: 6px; color: var(--lx-charcoal); position: relative;
  transition: color var(--lx-trans);
}
.lx-icon-btn:hover { color: var(--lx-rose); }
.lx-icon-btn svg { width: 20px; height: 20px; display: block; }
.lx-cart-badge {
  position: absolute; top: 0; right: 0;
  background: var(--lx-rose); color: #fff;
  font-size: 0.52rem; font-weight: 700;
  width: 15px; height: 15px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.lx-menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.lx-menu-toggle span { width: 22px; height: 2px; background: var(--lx-charcoal); display: block; transition: all var(--lx-trans); }

/* ================================================================
   HERO SLIDER
   ================================================================ */
#lx-hero { position: relative; overflow: hidden; background: var(--lx-rose-pale); }
.lx-slider { position: relative; width: 100%; }
/* Legacy slider — only used outside #lx-hero carousel */
.lx-slider .lx-slide {
  display: none; position: relative;
  width: 100%; min-height: 520px;
  align-items: center; overflow: hidden;
}
.lx-slider .lx-slide.active { display: flex; animation: lx-slide-in 0.65s ease; }
@keyframes lx-slide-in { from { opacity:0; transform: scale(1.025); } to { opacity:1; transform: scale(1); } }
.lx-slide-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.lx-slide-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.18) 55%, transparent 100%); }
.lx-slide-content { position: relative; z-index: 2; padding: 70px 64px; max-width: 580px; color: var(--lx-white); }
.lx-slide-tag {
  display: inline-block; background: var(--lx-rose); color: #fff;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 4px 13px; border-radius: 2px; margin-bottom: 18px;
}
.lx-slide-content h2 {
  font-family: var(--lx-font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 700;
  color: var(--lx-white); line-height: 1.08; margin-bottom: 14px;
}
.lx-slide-content p { font-size: 0.95rem; opacity: 0.88; margin-bottom: 28px; max-width: 380px; line-height: 1.7; }
.lx-slide-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 28px; }
.lx-slide-price .from { font-size: 0.75rem; opacity: 0.75; }
.lx-slide-price .amount { font-family: var(--lx-font-display); font-size: 2.6rem; font-weight: 700; color: var(--lx-rose-light); }
.lx-slider-prev, .lx-slider-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  background: rgba(255,255,255,0.88); border: none;
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--lx-charcoal); box-shadow: var(--lx-shadow);
  transition: all var(--lx-trans);
}
.lx-slider-prev { left: 20px; }
.lx-slider-next { right: 20px; }
.lx-slider-prev:hover, .lx-slider-next:hover { background: var(--lx-white); box-shadow: var(--lx-shadow-lg); }
.lx-slider-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.lx-slider-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.45); cursor: pointer; transition: all var(--lx-trans);
}
.lx-slider-dots button.active { background: var(--lx-white); width: 26px; border-radius: 4px; }

/* ================================================================
   TRUST BAR
   ================================================================ */
#lx-trust-bar { background: var(--lx-charcoal); padding: 13px 0; }
.lx-trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
}
.lx-trust-item { display: flex; align-items: center; gap: 8px; color: var(--lx-white); font-size: 0.71rem; letter-spacing: 0.07em; }
.lx-trust-item svg { color: var(--lx-rose-light); flex-shrink: 0; }
.lx-trust-sep { color: rgba(255,255,255,0.18); font-size: 1.1rem; }

/* ================================================================
   SECTION COMMONS
   ================================================================ */
.lx-section { padding: 20px 0; }
.lx-section-header { text-align: center; margin-bottom: 16px; }
.lx-eyebrow {
  display: block; font-family: var(--lx-font-body);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--lx-rose); margin-bottom: 8px;
}
.lx-section-header h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 10px; }
.lx-section-header p { color: var(--lx-gray-dark); font-size: 0.88rem; max-width: 460px; margin: 0 auto; }

/* ================================================================
   CATEGORY TILES  —  BeautyForever-style mosaic grid
   ================================================================ */
#lx-categories {
  background: var(--lx-white);
  padding: 20px 0 0 0;
}

/* ── Mosaic wrapper ── */
.lx-cat-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 340px 340px;
  gap: 10px;
}

/* Row 1: 2 large featured tiles */
.lx-cat-mosaic .lx-cat-tile:nth-child(1) { grid-column: 1 / 7;  grid-row: 1; }
.lx-cat-mosaic .lx-cat-tile:nth-child(2) { grid-column: 7 / 13; grid-row: 1; }

/* Row 2: 4 equal tiles */
.lx-cat-mosaic .lx-cat-tile:nth-child(3) { grid-column: 1 / 4;  grid-row: 2; }
.lx-cat-mosaic .lx-cat-tile:nth-child(4) { grid-column: 4 / 7;  grid-row: 2; }
.lx-cat-mosaic .lx-cat-tile:nth-child(5) { grid-column: 7 / 10; grid-row: 2; }
.lx-cat-mosaic .lx-cat-tile:nth-child(6) { grid-column: 10 / 13;grid-row: 2; }

/* Extra tiles hidden by default, shown at wider layouts */
.lx-cat-mosaic .lx-cat-tile:nth-child(n+7) { display: none; }

/* ── Individual tile ── */
.lx-cat-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: var(--lx-gray-mid);
  cursor: pointer;
  text-decoration: none;
}

/* Image — covers full tile, zooms on hover */
.lx-cat-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}
.lx-cat-tile:hover img { transform: scale(1.08); }

/* Dark gradient overlay — stronger at bottom */
.lx-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 8, 6, 0.82) 0%,
    rgba(10, 8, 6, 0.30) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 20px;
  transition: background 0.4s ease;
  opacity: 1 !important;
  visibility: visible !important;
}
.lx-cat-tile:hover .lx-cat-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 8, 6, 0.88) 0%,
    rgba(10, 8, 6, 0.35) 55%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

/* Category name */
.lx-cat-overlay h3 {
  font-family: var(--lx-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 5px 0;
  line-height: 1.2;
  letter-spacing: 0.01em;
  transition: transform 0.35s ease;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}
/* Large tiles get bigger text */
.lx-cat-mosaic .lx-cat-tile:nth-child(1) .lx-cat-overlay h3,
.lx-cat-mosaic .lx-cat-tile:nth-child(2) .lx-cat-overlay h3 {
  font-size: 1.45rem;
}
.lx-cat-tile:hover .lx-cat-overlay h3 { transform: translateY(-3px); }

/* Product count line */
.lx-cat-count {
  font-family: var(--lx-font-body);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.08em;
  margin-bottom: 0;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: all 0.35s ease;
}

/* "Shop Now" CTA — slides up on hover */
.lx-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-family: var(--lx-font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lx-rose-light);
  transition: all 0.35s ease;
  pointer-events: none;
}
.lx-cat-btn::after {
  content: '→';
  transition: transform 0.3s ease;
}
.lx-cat-tile:hover .lx-cat-btn {
  max-height: 28px;
  opacity: 1;
  margin-top: 8px;
}
.lx-cat-tile:hover .lx-cat-btn::after { transform: translateX(4px); }

/* Top label badge (optional on featured tiles) */
.lx-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--lx-rose);
  color: #fff;
  font-family: var(--lx-font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 2;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .lx-cat-mosaic {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 280px 200px 200px;
  }
  .lx-cat-mosaic .lx-cat-tile:nth-child(1) { grid-column: 1 / 4; grid-row: 1; }
  .lx-cat-mosaic .lx-cat-tile:nth-child(2) { grid-column: 4 / 7; grid-row: 1; }
  .lx-cat-mosaic .lx-cat-tile:nth-child(3) { grid-column: 1 / 3; grid-row: 2; }
  .lx-cat-mosaic .lx-cat-tile:nth-child(4) { grid-column: 3 / 5; grid-row: 2; }
  .lx-cat-mosaic .lx-cat-tile:nth-child(5) { grid-column: 5 / 7; grid-row: 2; }
  .lx-cat-mosaic .lx-cat-tile:nth-child(6) { grid-column: 1 / 3; grid-row: 3; }
  .lx-cat-mosaic .lx-cat-tile:nth-child(7) { grid-column: 3 / 5; grid-row: 3; display: block; }
  .lx-cat-mosaic .lx-cat-tile:nth-child(8) { grid-column: 5 / 7; grid-row: 3; display: block; }
}
@media (max-width: 680px) {
  .lx-cat-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 200px);
  }
  .lx-cat-mosaic .lx-cat-tile:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .lx-cat-mosaic .lx-cat-tile:nth-child(2) { grid-column: 1 / 2; grid-row: 2; }
  .lx-cat-mosaic .lx-cat-tile:nth-child(3) { grid-column: 2 / 3; grid-row: 2; }
  .lx-cat-mosaic .lx-cat-tile:nth-child(4) { grid-column: 1 / 2; grid-row: 3; }
  .lx-cat-mosaic .lx-cat-tile:nth-child(5) { grid-column: 2 / 3; grid-row: 3; }
  .lx-cat-mosaic .lx-cat-tile:nth-child(6) { grid-column: 1 / 3; grid-row: 4; display: block; }
  .lx-cat-mosaic .lx-cat-tile:nth-child(n+7) { display: none; }
}

/* ================================================================
   PRODUCT GRID & CARDS
   ================================================================ */
.lx-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lx-product-card {
  position: relative; background: var(--lx-white);
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--lx-border);
  transition: box-shadow var(--lx-trans), transform var(--lx-trans);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.lx-product-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.13); transform: translateY(-4px); }
.lx-product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 2/3; background: var(--lx-gray); min-height: 280px; }
.lx-product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.lx-product-card:hover .lx-product-img-wrap img { transform: scale(1.06); }
.lx-product-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  padding: 3px 9px; font-size: 0.59rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; border-radius: 2px;
}
.lx-badge-sale { background: var(--lx-red); color: #fff; }
.lx-badge-new  { background: var(--lx-charcoal); color: #fff; }
.lx-badge-hot  { background: var(--lx-rose); color: #fff; }
.lx-product-wishlist {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  background: rgba(255,255,255,0.92); border: none;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transition: all var(--lx-trans);
}
.lx-product-card:hover .lx-product-wishlist { opacity: 1; }
.lx-product-wishlist:hover { background: var(--lx-rose); color: #fff; }
.lx-product-wishlist svg { width: 14px; height: 14px; }
.lx-quick-add {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(28,28,28,0.93); color: #fff; text-align: center;
  padding: 11px; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  transform: translateY(100%); transition: transform var(--lx-trans);
}
.lx-product-card:hover .lx-quick-add { transform: translateY(0); }
.lx-product-info { padding: 16px 18px 20px; }
.lx-product-info h4 {
  font-family: var(--lx-font-body); font-size: 0.88rem; font-weight: 600;
  color: var(--lx-text); margin-bottom: 8px; line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.lx-product-info h4 a:hover { color: var(--lx-rose); }
.lx-product-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 7px; }
.lx-stars { color: var(--lx-gold); font-size: 0.72rem; letter-spacing: 1px; }
.lx-review-count { font-size: 0.68rem; color: var(--lx-gray-dark); }
.lx-product-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.lx-price-now { font-size: 1rem; font-weight: 700; color: var(--lx-charcoal); }
.lx-price-was { font-size: 0.8rem; color: var(--lx-gray-dark); text-decoration: line-through; margin-left: 4px; }
.lx-price-save { font-size: 0.63rem; font-weight: 700; color: var(--lx-red); background: #fceaea; padding: 1px 5px; border-radius: 2px; }

/* Tabs */
.lx-tabs { display: flex; justify-content: center; gap: 6px; margin-bottom: 38px; flex-wrap: wrap; }
.lx-tab {
  padding: 8px 22px; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--lx-gray); border: 1.5px solid var(--lx-border); border-radius: 20px;
  cursor: pointer; color: var(--lx-gray-dark); transition: all var(--lx-trans);
}
.lx-tab.active, .lx-tab:hover { background: var(--lx-charcoal); border-color: var(--lx-charcoal); color: var(--lx-white); }

/* ================================================================
   FLASH SALE
   ================================================================ */
#lx-flash-sale {
  background: linear-gradient(135deg, var(--lx-charcoal) 0%, #2e1a14 60%, #1c1108 100%);
  padding: 64px 0; position: relative; overflow: hidden;
}
#lx-flash-sale::before {
  content: ''; position: absolute; top: -40%; right: -5%;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,150,122,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.lx-sale-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.lx-sale-title .lx-eyebrow { color: var(--lx-rose-light); }
.lx-sale-title h2 { color: var(--lx-white); font-size: 2rem; }
.lx-countdown { display: flex; gap: 10px; align-items: center; }
.lx-cd-item {
  text-align: center; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,150,122,0.3); border-radius: 6px;
  padding: 8px 16px; min-width: 60px;
}
.lx-cd-item .num { display: block; font-family: var(--lx-font-display); font-size: 1.7rem; font-weight: 700; color: var(--lx-rose-light); line-height: 1; }
.lx-cd-item .lbl { display: block; font-size: 0.53rem; color: rgba(255,255,255,0.45); letter-spacing: 0.13em; text-transform: uppercase; margin-top: 3px; }
.lx-cd-sep { color: var(--lx-rose-light); font-size: 1.5rem; font-weight: 700; margin-top: -8px; }

/* ================================================================
   DELIVERY / SHIPPING INFO BAND
   ================================================================ */
#lx-delivery-band {
  background: var(--lx-rose-pale);
  border-top: 1px solid rgba(201,150,122,0.25);
  border-bottom: 1px solid rgba(201,150,122,0.25);
  padding: 48px 0;
}
.lx-delivery-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.lx-delivery-headline {
  font-family: var(--lx-font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: var(--lx-charcoal);
  line-height: 1.2;
  margin-bottom: 10px;
}
.lx-delivery-sub {
  font-size: 0.85rem;
  color: var(--lx-gray-dark);
  margin-bottom: 24px;
  line-height: 1.65;
}
.lx-delivery-note {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(201,150,122,0.12);
  border-left: 3px solid var(--lx-rose);
  padding: 12px 16px; border-radius: 0 var(--lx-radius) var(--lx-radius) 0;
  font-size: 0.8rem; color: var(--lx-charcoal); line-height: 1.55;
}
.lx-delivery-note svg { flex-shrink: 0; color: var(--lx-rose); margin-top: 2px; }
.lx-delivery-rows { display: flex; flex-direction: column; gap: 12px; }
.lx-delivery-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--lx-white); border: 1px solid var(--lx-border);
  border-radius: var(--lx-radius-md); padding: 16px 20px;
  transition: box-shadow var(--lx-trans);
}
.lx-delivery-row:hover { box-shadow: var(--lx-shadow); }
.lx-delivery-row-left { display: flex; align-items: center; gap: 14px; }
.lx-delivery-flag {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; background: var(--lx-gray);
  flex-shrink: 0;
}
.lx-delivery-country { font-size: 0.84rem; font-weight: 600; color: var(--lx-charcoal); line-height: 1.3; }
.lx-delivery-carrier { font-size: 0.71rem; color: var(--lx-gray-dark); margin-top: 2px; }
.lx-delivery-time {
  font-family: var(--lx-font-display); font-size: 1.05rem; font-weight: 600;
  color: var(--lx-rose-dark); text-align: right; white-space: nowrap;
}
.lx-delivery-time span { display: block; font-family: var(--lx-font-body); font-size: 0.65rem; font-weight: 400; color: var(--lx-gray-dark); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 1px; }

/* ================================================================
   PROMO BANNERS
   ================================================================ */
.lx-banner-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.lx-banner-card {
  position: relative; border-radius: var(--lx-radius-md);
  overflow: hidden; min-height: 300px;
  display: flex; align-items: flex-end; cursor: pointer;
}
.lx-banner-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.lx-banner-card:hover img { transform: scale(1.04); }
.lx-banner-content {
  position: relative; z-index: 2; padding: 28px 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 70%, transparent 100%);
  width: 100%;
}
.lx-banner-content .lx-eyebrow { color: var(--lx-rose-light); text-align: left; display: block; margin-bottom: 4px; }
.lx-banner-content h3 { font-family: var(--lx-font-display); font-size: 1.7rem; color: var(--lx-white); margin-bottom: 14px; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
#lx-testimonials { background: var(--lx-cream); }
.lx-reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.lx-review-card {
  background: var(--lx-white); border-radius: var(--lx-radius-md);
  padding: 26px; border: 1px solid var(--lx-border);
  transition: box-shadow var(--lx-trans);
}
.lx-review-card:hover { box-shadow: var(--lx-shadow); }
.lx-review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.lx-reviewer-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0; background: var(--lx-gray-mid);
}
.lx-reviewer-name { font-weight: 600; font-size: 0.86rem; margin-bottom: 2px; }
.lx-reviewer-loc  { font-size: 0.68rem; color: var(--lx-gray-dark); }
.lx-review-body   { font-size: 0.83rem; color: var(--lx-gray-dark); line-height: 1.7; margin-bottom: 14px; }
.lx-review-product { font-size: 0.7rem; color: var(--lx-rose); font-weight: 600; }
.lx-review-verified { font-size: 0.65rem; color: var(--lx-green); display: flex; align-items: center; gap: 4px; margin-top: 10px; }

/* ================================================================
   INSTAGRAM STRIP
   ================================================================ */
.lx-insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
@media (min-width: 768px) {
  .lx-insta-grid { grid-template-columns: repeat(6, 1fr); }
}
.lx-insta-item { aspect-ratio: 1; overflow: hidden; position: relative; cursor: pointer; background: var(--lx-gray-mid); }
.lx-insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.lx-insta-item:hover img { transform: scale(1.1); }
.lx-insta-overlay {
  position: absolute; inset: 0;
  background: rgba(201,150,122,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--lx-trans); color: #fff; font-size: 1.3rem;
}
.lx-insta-item:hover .lx-insta-overlay { opacity: 1; }

/* ================================================================
   FOOTER
   ================================================================ */
#lx-footer { background: #141414; color: rgba(255,255,255,0.65); }

/* Newsletter band */
.lx-footer-newsletter-band {
  background: linear-gradient(135deg, var(--lx-rose-dark) 0%, #7a4a38 100%);
  padding: 40px 0;
}
.lx-newsletter-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.lx-newsletter-text h3 { font-family: var(--lx-font-display); font-size: 1.6rem; color: #fff; margin-bottom: 5px; }
.lx-newsletter-text p  { font-size: 0.83rem; color: rgba(255,255,255,0.8); }
.lx-newsletter-form-row { display: flex; gap: 0; flex: 1; max-width: 460px; min-width: 280px; }
.lx-newsletter-form-row input {
  flex: 1; padding: 12px 18px;
  background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.25);
  border-right: none; border-radius: var(--lx-radius) 0 0 var(--lx-radius);
  font-size: 0.82rem; color: #fff; outline: none;
}
.lx-newsletter-form-row input::placeholder { color: rgba(255,255,255,0.5); }
.lx-newsletter-form-row button {
  padding: 12px 22px; background: var(--lx-charcoal); color: #fff;
  border: none; border-radius: 0 var(--lx-radius) var(--lx-radius) 0;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: background var(--lx-trans); white-space: nowrap;
}
.lx-newsletter-form-row button:hover { background: #000; }

/* Main footer grid */
.lx-footer-main { padding: 56px 0 40px; }
.lx-footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.lx-footer-logo { display: block; margin-bottom: 16px; }
.lx-footer-logo img { height: 52px; width: auto; filter: brightness(0) invert(1) opacity(0.9); }
.lx-footer-desc { font-size: 0.8rem; line-height: 1.75; max-width: 270px; margin-bottom: 22px; }
.lx-footer-email a { font-size: 0.78rem; color: var(--lx-rose-light); display: flex; align-items: center; gap: 6px; margin-bottom: 18px; }
.lx-footer-email a:hover { color: var(--lx-white); }
.lx-social-row { display: flex; gap: 9px; margin-bottom: 24px; }
.lx-social-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); transition: all var(--lx-trans);
}
.lx-social-btn:hover { background: var(--lx-rose); border-color: var(--lx-rose); color: #fff; }
.lx-pay-icons { display: flex; gap: 6px; flex-wrap: wrap; }
.lx-pay-icon {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px; padding: 4px 9px;
  font-size: 0.59rem; font-weight: 700; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5); text-transform: uppercase;
}

.lx-footer-col h5 {
  font-family: var(--lx-font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lx-white); margin-bottom: 18px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.lx-footer-col ul li { margin-bottom: 9px; }
.lx-footer-col ul li a { font-size: 0.79rem; color: rgba(255,255,255,0.5); transition: color var(--lx-trans); }
.lx-footer-col ul li a:hover { color: var(--lx-rose-light); }

/* Delivery summary in footer */
.lx-footer-delivery-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,150,122,0.2);
  border-radius: var(--lx-radius-md);
  padding: 18px;
  margin-top: 4px;
}
.lx-footer-delivery-box h6 {
  font-family: var(--lx-font-body); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--lx-rose-light); margin-bottom: 12px;
}
.lx-footer-delivery-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.77rem;
}
.lx-footer-delivery-row:last-child { border-bottom: none; }
.lx-footer-delivery-row .dest { color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 7px; }
.lx-footer-delivery-row .dest span { font-size: 1rem; }
.lx-footer-delivery-row .days { color: var(--lx-rose-light); font-weight: 600; font-size: 0.8rem; }

/* Footer bottom */
.lx-footer-bottom {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.72rem; color: rgba(255,255,255,0.28);
  flex-wrap: wrap; gap: 12px;
}
.lx-footer-bottom-links { display: flex; gap: 20px; }
.lx-footer-bottom-links a { color: rgba(255,255,255,0.28); transition: color var(--lx-trans); }
.lx-footer-bottom-links a:hover { color: var(--lx-rose-light); }

/* ================================================================
   MOBILE DRAWER
   ================================================================ */
.lx-drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.52); z-index: 1999; display: none; }
.lx-drawer-overlay.open { display: block; }
.lx-mobile-drawer {
  position: fixed; top: 0; left: -100%; width: 300px; height: 100vh;
  background: var(--lx-white); z-index: 2000;
  transition: left 0.32s ease; overflow-y: auto;
  box-shadow: 6px 0 30px rgba(0,0,0,0.18);
}
.lx-mobile-drawer.open { left: 0; }
.lx-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--lx-border);
}
.lx-drawer-header .lx-logo img { height: 36px; }
.lx-drawer-close {
  background: none; border: none; font-size: 1.2rem;
  cursor: pointer; color: var(--lx-charcoal); padding: 4px;
}
.lx-drawer-nav a {
  display: block; padding: 14px 20px;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase;
  border-bottom: 1px solid var(--lx-border); color: var(--lx-text);
  transition: all var(--lx-trans);
}
.lx-drawer-nav a:hover { color: var(--lx-rose); background: var(--lx-rose-pale); padding-left: 28px; }
.lx-drawer-footer-info {
  padding: 20px; font-size: 0.78rem; color: var(--lx-gray-dark);
  border-top: 1px solid var(--lx-border); line-height: 1.7;
}
.lx-drawer-footer-info strong { color: var(--lx-charcoal); display: block; margin-bottom: 4px; }

/* ================================================================
   BREADCRUMBS
   ================================================================ */
.lx-breadcrumbs { font-size: 0.76rem; color: var(--lx-gray-dark); display: flex; align-items: center; flex-wrap: wrap; gap: 4px; }
.lx-breadcrumbs a { color: var(--lx-gray-dark); }
.lx-breadcrumbs a:hover { color: var(--lx-rose); }
.lx-bc-sep { margin: 0 2px; opacity: 0.5; }

/* ================================================================
   SHOP LAYOUT
   ================================================================ */
.lx-shop-wrap { display: grid; grid-template-columns: 240px 1fr; gap: 32px; padding: 40px 0; }
.lx-filter-section { margin-bottom: 24px; }
.lx-filter-section h5 {
  font-family: var(--lx-font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 14px; color: var(--lx-charcoal);
  padding-bottom: 8px; border-bottom: 1px solid var(--lx-border);
}

/* ================================================================
   WOOCOMMERCE OVERRIDES
   ================================================================ */
.lx-woo-main .woocommerce-ordering select {
  border: 1px solid var(--lx-border); border-radius: var(--lx-radius);
  padding: 8px 14px; font-family: var(--lx-font-body); font-size: 0.8rem;
}
.woocommerce ul.products li.product .price { color: var(--lx-red); font-family: var(--lx-font-body); }
.woocommerce ul.products li.product .button,
.woocommerce .cart .button,
.woocommerce #respond input#submit,
.woocommerce a.button, .woocommerce button.button {
  background: var(--lx-charcoal); color: var(--lx-white);
  border-radius: var(--lx-radius); font-family: var(--lx-font-body);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover, .woocommerce button.button:hover { background: var(--lx-rose); }
.woocommerce span.onsale {
  background: var(--lx-red); border-radius: var(--lx-radius);
  font-family: var(--lx-font-body); font-size: 0.65rem; font-weight: 700;
}

/* ================================================================
   UTILITIES
   ================================================================ */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; } .mb-32 { margin-bottom: 32px; }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 0; z-index: 9999; padding: 8px 16px; background: var(--lx-charcoal); color: #fff; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .lx-footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .lx-product-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .lx-nav, .lx-search-form { display: none; }
  .lx-menu-toggle { display: flex; }
  .lx-product-grid { grid-template-columns: repeat(2,1fr); }
  .lx-reviews-grid { grid-template-columns: repeat(2,1fr); }
  .lx-banner-row { grid-template-columns: 1fr; }
  
  .lx-footer-grid { grid-template-columns: 1fr 1fr; }
  .lx-delivery-inner { grid-template-columns: 1fr; }
  .lx-newsletter-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .lx-cat-grid { grid-template-columns: repeat(2,1fr); }
  .lx-cat-grid .lx-cat-tile:nth-child(1),
  .lx-cat-grid .lx-cat-tile:nth-child(2) { grid-column: span 1; }
  .lx-product-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .lx-reviews-grid { grid-template-columns: 1fr; }
  
  .lx-slide-content { padding: 36px 24px; }
  .lx-sale-header { flex-direction: column; align-items: flex-start; }
  .lx-footer-grid { grid-template-columns: 1fr; }
  .lx-footer-bottom { flex-direction: column; text-align: center; }
  .lx-trust-inner { gap: 16px; }
  .lx-trust-sep { display: none; }
  .lx-shop-wrap { grid-template-columns: 1fr; }
}

/* ================================================================
   SHOP & CATEGORY PAGE LAYOUT
   ================================================================ */
.lx-shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: start;
}
.lx-shop-sidebar .lx-filter-section h5 {
  font-family: var(--lx-font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--lx-charcoal);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--lx-border);
}
.lx-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--lx-border);
  flex-wrap: wrap;
  gap: 12px;
}
.woocommerce-ordering select {
  border: 1.5px solid var(--lx-border);
  border-radius: var(--lx-radius);
  padding: 8px 14px;
  font-family: var(--lx-font-body);
  font-size: .8rem;
  background: var(--lx-white);
  color: var(--lx-text);
  cursor: pointer;
  outline: none;
}
.lx-pagination ul {
  display: flex;
  justify-content: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}
.lx-pagination ul li a,
.lx-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--lx-radius);
  font-size: .8rem;
  font-weight: 600;
  border: 1.5px solid var(--lx-border);
  color: var(--lx-text);
  transition: all var(--lx-trans);
}
.lx-pagination ul li a:hover,
.lx-pagination ul li span.current {
  background: var(--lx-rose);
  border-color: var(--lx-rose);
  color: #fff;
}
/* WooCommerce widget overrides */
.widget_price_filter .price_slider_wrapper .ui-widget-content { background: var(--lx-gray-mid); }
.widget_price_filter .ui-slider-range { background: var(--lx-rose); }
.widget_price_filter .ui-slider-handle { background: var(--lx-rose); border-color: var(--lx-rose); }
.widget_price_filter .price_slider_amount .button {
  background: var(--lx-charcoal); color: #fff; border: none;
  padding: 7px 16px; border-radius: var(--lx-radius);
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; cursor: pointer;
}

/* ================================================================
   SINGLE PRODUCT PAGE
   ================================================================ */
.lx-product-page-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.lx-product-gallery { position: sticky; top: calc(var(--lx-header-h) + var(--lx-promo-h) + 20px); }
.lx-product-main-img {
  position: relative;
  border-radius: var(--lx-radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--lx-gray);
  margin-bottom: 12px;
}
.lx-product-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.lx-thumb {
  width: 72px; height: 72px;
  border-radius: var(--lx-radius);
  overflow: hidden;
  border: 2px solid var(--lx-border);
  cursor: pointer;
  background: none;
  padding: 0;
  transition: border-color var(--lx-trans);
}
.lx-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lx-thumb.active,
.lx-thumb:hover { border-color: var(--lx-rose); }

.lx-product-title {
  font-family: var(--lx-font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--lx-charcoal);
}
.lx-product-page-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lx-red);
  margin-bottom: 16px;
}
.lx-product-page-price del { font-size: 1rem; color: var(--lx-gray-dark); font-weight: 400; }
.lx-product-page-price ins { text-decoration: none; }

.lx-product-short-desc {
  font-size: .86rem;
  color: var(--lx-gray-dark);
  line-height: 1.8;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--lx-border);
}
.lx-product-delivery-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--lx-rose-pale);
  border-left: 3px solid var(--lx-rose);
  padding: 12px 16px;
  border-radius: 0 var(--lx-radius) var(--lx-radius) 0;
  font-size: .78rem;
  color: var(--lx-charcoal);
  line-height: 1.6;
  margin-bottom: 24px;
}
.lx-product-delivery-note svg { flex-shrink: 0; color: var(--lx-rose); margin-top: 1px; }

/* Add to cart form */
.lx-product-atc-wrap { margin-bottom: 22px; }
.lx-cart-form .lx-qty-row {
  display: flex;
  gap: 12px;
  align-items: center;
}
.lx-cart-form .quantity input[type="number"] {
  width: 80px;
  height: 48px;
  border: 1.5px solid var(--lx-border);
  border-radius: var(--lx-radius);
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
  padding: 0 8px;
  outline: none;
  font-family: var(--lx-font-body);
}
.lx-cart-form .quantity input:focus { border-color: var(--lx-rose); }
.lx-atc-btn {
  flex: 1;
  height: 48px;
  font-size: .78rem !important;
}
/* WooCommerce native fallback */
.woocommerce div.product form.cart .button,
.woocommerce div.product .single_add_to_cart_button {
  background: var(--lx-rose) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--lx-radius) !important;
  font-family: var(--lx-font-body) !important;
  font-size: .78rem !important;
  font-weight: 700 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  padding: 14px 32px !important;
  cursor: pointer !important;
  transition: background var(--lx-trans) !important;
}
.woocommerce div.product form.cart .button:hover,
.woocommerce div.product .single_add_to_cart_button:hover {
  background: var(--lx-rose-dark) !important;
}
.woocommerce div.product form.cart {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.woocommerce div.product form.cart .quantity {
  display: inline-flex;
}

.lx-product-trust-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid var(--lx-border);
  border-bottom: 1px solid var(--lx-border);
  margin-bottom: 16px;
}
.lx-product-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  color: var(--lx-gray-dark);
  font-weight: 500;
}
.lx-product-trust-item svg { color: var(--lx-rose); flex-shrink: 0; }

/* Product tabs */
.lx-product-tabs { border-top: 2px solid var(--lx-border); padding-top: 40px; }
.lx-product-tabs .lx-tabs { justify-content: flex-start; border-bottom: 1px solid var(--lx-border); padding-bottom: 0; margin-bottom: 0; gap: 0; }
.lx-product-tabs .lx-tab {
  border-radius: 0; border: none; background: none;
  border-bottom: 3px solid transparent;
  padding: 12px 22px;
  color: var(--lx-gray-dark);
  margin-bottom: -1px;
}
.lx-product-tabs .lx-tab.active,
.lx-product-tabs .lx-tab:hover {
  background: none; color: var(--lx-rose);
  border-bottom-color: var(--lx-rose);
}
.lx-tab-panel { padding: 32px 0; }
.lx-product-desc-content { font-size: .88rem; color: var(--lx-gray-dark); line-height: 1.85; }
.lx-product-desc-content h4 { font-size: 1rem; color: var(--lx-charcoal); margin: 20px 0 10px; font-family: var(--lx-font-body); font-weight: 700; }
.lx-product-desc-content ul { padding-left: 20px; list-style: disc; display: flex; flex-direction: column; gap: 6px; margin: 10px 0; }
.lx-product-desc-content p { margin-bottom: 14px; }

/* WooCommerce reviews */
#reviews #comments { margin-bottom: 32px; }
#reviews .woocommerce-Reviews-title { font-family: var(--lx-font-display); font-size: 1.3rem; margin-bottom: 20px; }
#reviews .comment-form-rating label { font-size: .8rem; font-weight: 700; }
#review_form input, #review_form textarea {
  border: 1.5px solid var(--lx-border);
  border-radius: var(--lx-radius);
  padding: 10px 14px;
  font-size: .85rem;
  width: 100%;
  outline: none;
  font-family: var(--lx-font-body);
  margin-top: 6px;
}
#review_form input[type="submit"] {
  background: var(--lx-rose);
  color: #fff;
  border: none;
  width: auto;
  padding: 11px 28px;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--lx-radius);
}

/* ================================================================
   RESPONSIVE — PRODUCT + SHOP
   ================================================================ */
@media (max-width: 960px) {
  .lx-product-page-wrap { grid-template-columns: 1fr; gap: 32px; }
  .lx-product-gallery { position: static; }
  .lx-shop-layout { grid-template-columns: 1fr; }
  .lx-shop-sidebar { display: none; }
}
@media (max-width: 600px) {
  .lx-product-thumbs .lx-thumb { width: 56px; height: 56px; }
  .lx-product-trust-row { gap: 12px; }
}

/* ================================================================
   LINK & CLICK BUG FIXES
   ================================================================ */

/* Prevent cat-btn span from intercepting clicks on the parent <a> */
.lx-cat-btn {
  pointer-events: none;
}

/* Make sure product card links are always fully clickable */
.lx-product-card .lx-product-img-wrap a,
.lx-product-card .lx-product-info a {
  display: block;
}

/* Prevent wishlist / quick-add from bubbling up to product link */
.lx-product-wishlist,
.lx-quick-add {
  position: absolute;
  z-index: 5;
}

/* Nav items with javascript:void(0) — show pointer so user knows it's interactive */
.lx-nav a[href="javascript:void(0)"] {
  cursor: default;
}
.lx-nav a[href="javascript:void(0)"]:hover {
  color: var(--lx-rose);
}

/* Slider prev/next buttons — ensure they don't interfere with slide links */
.lx-slider-prev,
.lx-slider-next,
.lx-slider-dots button {
  position: absolute;
  z-index: 10;
  cursor: pointer;
}

/* Ensure all real anchor tags behave normally */
a:not([href="javascript:void(0)"]):not([href=""]) {
  cursor: pointer;
}

/* Category section spacing */

/* ================================================================
   SHOP PAGE HERO
   ================================================================ */
.lx-shop-page-hero {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
}
.lx-shop-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.15) 100%);
}
.lx-shop-hero-title {
  font-family: var(--lx-font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: #fff;
  margin: 12px 0 10px;
  font-weight: 700;
}
.lx-shop-hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: .88rem;
  max-width: 500px;
  line-height: 1.7;
  margin: 0;
}

/* ================================================================
   CATEGORY SELECTOR STRIP
   ================================================================ */
.lx-cat-strip-wrap {
  background: var(--lx-white);
  border-bottom: 2px solid var(--lx-border);
  position: sticky;
  top: var(--lx-header-h);
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.lx-cat-strip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.lx-cat-strip::-webkit-scrollbar { display: none; }

.lx-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: var(--lx-gray);
  border: 1.5px solid var(--lx-border);
  border-radius: 50px;
  font-family: var(--lx-font-body);
  font-size: .74rem;
  font-weight: 600;
  color: var(--lx-gray-dark);
  white-space: nowrap;
  text-decoration: none;
  transition: all var(--lx-trans);
  flex-shrink: 0;
}
.lx-cat-pill:hover {
  background: var(--lx-rose-pale);
  border-color: var(--lx-rose-light);
  color: var(--lx-rose-dark);
  transform: translateY(-1px);
}
.lx-cat-pill.active {
  background: var(--lx-charcoal);
  border-color: var(--lx-charcoal);
  color: var(--lx-white);
}
.lx-cat-pill.active:hover {
  background: var(--lx-rose);
  border-color: var(--lx-rose);
  color: var(--lx-white);
  transform: translateY(-1px);
}
.lx-cat-pill-img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.lx-cat-pill-icon {
  font-size: .8rem;
  opacity: .7;
}
.lx-cat-pill-count {
  background: rgba(0,0,0,0.12);
  color: inherit;
  font-size: .6rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 10px;
  min-width: 20px;
  text-align: center;
}
.lx-cat-pill.active .lx-cat-pill-count {
  background: rgba(255,255,255,0.2);
}

/* ================================================================
   SHOP BODY & SIDEBAR
   ================================================================ */
.lx-shop-body { padding-top: 36px; padding-bottom: 64px; }

.lx-sidebar-cat-card {
  background: linear-gradient(135deg,#1c1c1c,#3d2418);
  border-radius: var(--lx-radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  color: #fff;
  text-align: center;
  padding-bottom: 20px;
}
.lx-sidebar-cat-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  margin-bottom: 14px;
}
.lx-sidebar-cat-card h4 {
  font-family: var(--lx-font-display);
  font-size: 1.1rem;
  color: #fff;
  margin: 0 14px 6px;
}
.lx-sidebar-cat-card p {
  font-size: .75rem;
  color: rgba(255,255,255,0.6);
  margin: 0 14px 8px;
  line-height: 1.6;
}
.lx-sidebar-cat-count {
  display: inline-block;
  background: var(--lx-rose);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.lx-sidebar-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lx-sidebar-cat-list li { border-bottom: 1px solid var(--lx-border); }
.lx-sidebar-cat-list li:last-child { border-bottom: none; }
.lx-sidebar-cat-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 4px;
  font-size: .82rem;
  color: var(--lx-gray-dark);
  text-decoration: none;
  transition: all var(--lx-trans);
}
.lx-sidebar-cat-list a:hover,
.lx-sidebar-cat-list a.active {
  color: var(--lx-rose);
  padding-left: 8px;
}
.lx-sidebar-cat-list a.active { font-weight: 700; }
.lx-sidebar-cat-num {
  background: var(--lx-gray);
  font-size: .68rem;
  padding: 2px 8px;
  border-radius: 10px;
  color: var(--lx-gray-dark);
  min-width: 24px;
  text-align: center;
}

/* ================================================================
   MOSAIC — 10 categories (5+5 rows)
   ================================================================ */
.lx-cat-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 320px 240px;
  gap: 10px;
}
/* Row 1: 2 large */
.lx-cat-mosaic .lx-cat-tile:nth-child(1) { grid-column: 1 / 7;  grid-row: 1; }
.lx-cat-mosaic .lx-cat-tile:nth-child(2) { grid-column: 7 / 13; grid-row: 1; }
/* Row 2: 4 equal small */
.lx-cat-mosaic .lx-cat-tile:nth-child(3) { grid-column: 1 / 4;  grid-row: 2; }
.lx-cat-mosaic .lx-cat-tile:nth-child(4) { grid-column: 4 / 7;  grid-row: 2; }
.lx-cat-mosaic .lx-cat-tile:nth-child(5) { grid-column: 7 / 10; grid-row: 2; }
.lx-cat-mosaic .lx-cat-tile:nth-child(6) { grid-column: 10 / 13;grid-row: 2; }
/* Rows 3-4 for cats 7-10 */
.lx-cat-mosaic .lx-cat-tile:nth-child(n+7) {
  display: none;
}

@media (max-width: 1024px) {
  .lx-cat-mosaic {
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(5, 200px);
  }
  .lx-cat-mosaic .lx-cat-tile { grid-column: auto !important; grid-row: auto !important; display: block !important; }
}
@media (max-width: 600px) {
  .lx-cat-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(5, 160px);
  }
  .lx-cat-strip-wrap { top: 0; }
}

/* ================================================================
   CATEGORY PAGE HERO (taxonomy-product_cat.php)
   ================================================================ */
.lx-cat-page-hero {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg,#1c1c1c,#3d2418);
}

/* ================================================================
   BRAND PHOTO STRIP (homepage — your real model photos)
   ================================================================ */
.lx-brand-strip {
  width: 100%;
  overflow: hidden;
}
.lx-brand-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.lx-brand-photo-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.lx-brand-photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease;
}
.lx-brand-photo-card:hover img { transform: scale(1.04); }
.lx-brand-photo-card--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}
.lx-brand-photo-card--light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,18,10,0.85) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.05) 100%);
  z-index: 1;
}
.lx-brand-photo-overlay {
  position: relative;
  z-index: 2;
  padding: 44px 40px;
  color: #fff;
}
.lx-brand-photo-overlay h2 {
  font-family: var(--lx-font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
  margin: 10px 0 14px;
}
.lx-brand-photo-overlay p {
  font-size: .88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 320px;
}
.lx-brand-photo-overlay--right { text-align: right; }
.lx-brand-photo-overlay--right p { margin-left: auto; }

/* ================================================================
   INSTAGRAM GRID — new mosaic layout
   ================================================================ */
/* Instagram 6-tile grid — 3 cols x 2 rows, mobile friendly */
.lx-insta-six {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 4px;
  background: var(--lx-charcoal);
}
.lx-insta-six-tile {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--lx-gray-mid);
}
.lx-insta-six-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s ease;
  display: block;
}
.lx-insta-six-tile:hover img { transform: scale(1.07); }
.lx-insta-six-overlay {
  position: absolute;
  inset: 0;
  background: rgba(180,120,95,0.48);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.35s ease;
  color: #fff;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
}
.lx-insta-six-tile:hover .lx-insta-six-overlay { opacity: 1; }
.lx-insta-six-overlay svg { width: 24px; height: 24px; }
.lx-insta-six-overlay span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }

/* Mobile: still 3 cols but shorter rows */
@media (max-width: 600px) {
  .lx-insta-six {
    grid-template-rows: repeat(2, 160px);
    gap: 3px;
  }
}

/* ================================================================
   CATEGORY TILES — TEXT FIX (always visible, never clipped)
   ================================================================ */
.lx-cat-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: var(--lx-charcoal);
  cursor: pointer;
  text-decoration: none !important;
}
.lx-cat-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
  display: block;
}
.lx-cat-tile:hover img { transform: scale(1.08); }

/* Gradient — always strong enough for text to read */
.lx-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,6,4,0.88) 0%,
    rgba(10,6,4,0.45) 40%,
    rgba(0,0,0,0.06) 100%
  );
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 18px 18px;
  transition: background 0.4s ease;
  opacity: 1 !important;
  visibility: visible !important;
}
.lx-cat-tile:hover .lx-cat-overlay {
  background: linear-gradient(
    to top,
    rgba(10,6,4,0.94) 0%,
    rgba(10,6,4,0.55) 50%,
    rgba(0,0,0,0.1) 100%
  );
}

/* Category name — large, white, ALWAYS visible */
.lx-cat-overlay h3 {
  font-family: var(--lx-font-display) !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 0 5px 0 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  transform: none;
}
/* Large tiles get bigger text */
.lx-cat-mosaic .lx-cat-tile:nth-child(1) .lx-cat-overlay h3,
.lx-cat-mosaic .lx-cat-tile:nth-child(2) .lx-cat-overlay h3 {
  font-size: 1.5rem !important;
}
.lx-cat-tile:hover .lx-cat-overlay h3 { transform: translateY(-3px); }

/* Count text */
.lx-cat-count {
  display: block;
  font-family: var(--lx-font-body) !important;
  font-size: 0.7rem !important;
  color: rgba(255,255,255,0.75) !important;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  margin-bottom: 2px;
}

/* Shop Now CTA */
.lx-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--lx-font-body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lx-rose-light) !important;
  text-shadow: none;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.35s ease;
  pointer-events: none;
}
.lx-cat-btn::after { content: '→'; margin-left: 3px; transition: transform 0.3s ease; }
.lx-cat-tile:hover .lx-cat-btn {
  max-height: 28px;
  opacity: 1;
  margin-top: 8px;
}
.lx-cat-tile:hover .lx-cat-btn::after { transform: translateX(4px); }

/* Badge */
.lx-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--lx-rose);
  color: #fff;
  font-family: var(--lx-font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 3;
}

/* ================================================================
   FOOTER — Instagram handle update
   ================================================================ */
.lx-footer-ig-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  padding: 9px 18px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  border-radius: 6px;
  color: #fff !important;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  transition: opacity var(--lx-trans);
}
.lx-footer-ig-link:hover { opacity: 0.88; }

/* ════════════════════════════════════════════════════════════════
   LUXELLE STORY SECTION — Compact Tile Style
   ════════════════════════════════════════════════════════════════ */
#lx-story {
  background: var(--lx-white);
}
.lx-story-tile {
  background: var(--lx-cream);
  border-radius: 12px;
  padding: 40px;
  max-width: 100%;
}
.lx-story-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--lx-charcoal);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.lx-story-tile p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 14px;
  font-weight: 400;
  letter-spacing: 0.2px;
}
.lx-story-tile p:last-of-type {
  margin-bottom: 0;
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — Story Tile
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  #lx-story {
    padding: 32px 0;
  }
  .lx-story-tile {
    padding: 32px;
    border-radius: 8px;
  }
  .lx-story-intro {
    font-size: 20px;
    margin-bottom: 14px;
  }
  .lx-story-tile p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  #lx-story {
    padding: 24px 0;
  }
  .lx-story-tile {
    padding: 24px;
    border-radius: 8px;
  }
  .lx-story-intro {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .lx-story-tile p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 10px;
  }
}

/* ================================================================
   RESPONSIVE — brand strip + insta
   ================================================================ */
@media (max-width: 768px) {
  .lx-brand-strip-inner { grid-template-columns: 1fr; min-height: auto; }
  .lx-brand-photo-card  { min-height: 420px; }
  .lx-brand-photo-overlay { padding: 32px 24px; }
  .lx-insta-duo         { grid-template-columns: 1fr 1fr; } .lx-insta-duo-tile { height: 380px; }
  .lx-insta-tile--tall  { grid-row: span 2; }
}
@media (max-width: 480px) {
  .lx-brand-photo-card  { min-height: 320px; }
  .lx-insta-duo         { grid-template-columns: 1fr; } .lx-insta-duo-tile { height: 340px; }
}

/* ================================================================
   SHOP PAGE — FULL REDESIGN
   ================================================================ */

/* Hero */
.lx-shop-hero {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1c1208 0%, #3d2418 60%, #2a1a10 100%);
  background-size: cover;
  background-position: center top;
}
.lx-shop-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,6,3,0.82) 0%, rgba(10,6,3,0.48) 60%, rgba(0,0,0,0.22) 100%);
}
.lx-shop-hero-title {
  font-family: var(--lx-font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
  margin: 10px 0 10px;
}
.lx-shop-hero-desc {
  color: rgba(255,255,255,0.72);
  font-size: .88rem;
  max-width: 520px;
  line-height: 1.7;
  margin: 0;
}

/* Category strip */
.lx-cat-strip-wrap {
  background: var(--lx-white);
  border-bottom: 1.5px solid var(--lx-border);
  position: sticky;
  top: var(--lx-header-h);
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.lx-cat-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.lx-cat-strip::-webkit-scrollbar { display: none; }

/* Shop body */
.lx-shop-body {
  padding-top: 32px;
  padding-bottom: 64px;
}
.lx-shop-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}
.lx-shop-sidebar {
  position: sticky;
  top: calc(var(--lx-header-h) + 60px);
}

/* Sidebar */
.lx-filter-section {
  margin-bottom: 24px;
}
.lx-filter-section h5 {
  font-family: var(--lx-font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lx-charcoal);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--lx-border);
}
.lx-sidebar-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lx-sidebar-cat-list li {
  border-bottom: 1px solid var(--lx-border);
}
.lx-sidebar-cat-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 4px;
  font-size: .8rem;
  color: var(--lx-gray-dark);
  transition: all var(--lx-trans);
}
.lx-sidebar-cat-list a:hover,
.lx-sidebar-cat-list a.active {
  color: var(--lx-rose);
  padding-left: 6px;
  font-weight: 600;
}

/* Toolbar */
.lx-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1.5px solid var(--lx-border);
  margin-bottom: 24px;
  gap: 12px;
  flex-wrap: wrap;
}
.lx-result-count {
  font-size: .78rem;
  color: var(--lx-gray-dark);
  font-weight: 500;
}

/* WooCommerce product loop overrides */
.lx-shop-main .woocommerce,
.lx-shop-main .woocommerce-page {
  width: 100%;
}
.lx-shop-main ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  float: none !important;
  clear: both;
}
.lx-shop-main ul.products::after { display: none !important; }
.lx-shop-main ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  background: var(--lx-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--lx-border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow var(--lx-trans), transform var(--lx-trans);
  position: relative;
}
.lx-shop-main ul.products li.product:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}
.lx-shop-main ul.products li.product a img {
  width: 100% !important;
  height: 320px !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
  border-radius: 0 !important;
  transition: transform 0.5s ease !important;
}
.lx-shop-main ul.products li.product:hover a img {
  transform: scale(1.05) !important;
}
.lx-shop-main ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--lx-font-body) !important;
  font-size: .88rem !important;
  font-weight: 600 !important;
  color: var(--lx-charcoal) !important;
  line-height: 1.45 !important;
  padding: 14px 16px 4px !important;
  margin: 0 !important;
}
.lx-shop-main ul.products li.product .price {
  font-family: var(--lx-font-body) !important;
  font-size: .95rem !important;
  font-weight: 700 !important;
  color: var(--lx-charcoal) !important;
  padding: 4px 16px 8px !important;
  display: block !important;
}
.lx-shop-main ul.products li.product .price del {
  color: var(--lx-gray-dark) !important;
  font-size: .8rem !important;
  font-weight: 400 !important;
  margin-right: 6px !important;
}
.lx-shop-main ul.products li.product .price ins {
  text-decoration: none !important;
  color: var(--lx-rose-dark) !important;
}
.lx-shop-main ul.products li.product .star-rating {
  padding: 0 16px !important;
  margin-bottom: 4px !important;
  font-size: .75rem !important;
  color: var(--lx-gold) !important;
}
.lx-shop-main ul.products li.product .button,
.lx-shop-main ul.products li.product a.button,
.lx-shop-main ul.products li.product button.add_to_cart_button {
  display: block !important;
  width: calc(100% - 32px) !important;
  margin: 8px 16px 16px !important;
  padding: 11px 16px !important;
  background: var(--lx-charcoal) !important;
  color: var(--lx-white) !important;
  border: none !important;
  border-radius: 6px !important;
  font-family: var(--lx-font-body) !important;
  font-size: .72rem !important;
  font-weight: 700 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  text-align: center !important;
  cursor: pointer !important;
  transition: background var(--lx-trans) !important;
}
.lx-shop-main ul.products li.product .button:hover,
.lx-shop-main ul.products li.product a.button:hover {
  background: var(--lx-rose) !important;
}
.lx-shop-main .woocommerce span.onsale {
  background: var(--lx-rose) !important;
  border-radius: 4px !important;
  font-size: .58rem !important;
  font-weight: 700 !important;
  min-height: auto !important;
  min-width: auto !important;
  padding: 4px 10px !important;
  line-height: 1.4 !important;
  top: 12px !important;
  left: 12px !important;
  right: auto !important;
}
/* Pagination */
.lx-shop-main .woocommerce-pagination,
.lx-shop-main .woocommerce nav.woocommerce-pagination {
  margin-top: 40px;
  text-align: center;
}
.lx-shop-main .woocommerce-pagination ul {
  display: inline-flex;
  gap: 6px;
  list-style: none;
  padding: 0;
}
.lx-shop-main .woocommerce-pagination ul li a,
.lx-shop-main .woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--lx-radius);
  border: 1.5px solid var(--lx-border);
  font-size: .82rem;
  font-weight: 600;
  color: var(--lx-charcoal);
  transition: all var(--lx-trans);
}
.lx-shop-main .woocommerce-pagination ul li a:hover,
.lx-shop-main .woocommerce-pagination ul li span.current {
  background: var(--lx-rose);
  border-color: var(--lx-rose);
  color: #fff;
}
/* No products message */
.woocommerce-info,
.woocommerce-no-products-found {
  background: var(--lx-cream);
  border-top: 3px solid var(--lx-rose);
  padding: 20px 24px;
  border-radius: 0 var(--lx-radius) var(--lx-radius) 0;
  font-size: .88rem;
  color: var(--lx-gray-dark);
}

/* ================================================================
   PRODUCT PAGE — FULL REDESIGN
   ================================================================ */
.lx-product-page-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.lx-product-gallery {
  position: sticky;
  top: calc(var(--lx-header-h) + 20px);
}
.lx-product-main-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--lx-gray);
  margin-bottom: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.lx-product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 14px;
  transition: transform 0.4s ease;
}
.lx-product-main-img:hover img { transform: scale(1.02); }

/* Thumbs */
.lx-product-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.lx-thumb {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--lx-border);
  cursor: pointer;
  background: none;
  padding: 0;
  transition: border-color var(--lx-trans), transform var(--lx-trans);
}
.lx-thumb:hover { transform: translateY(-1px); border-color: var(--lx-rose-light); }
.lx-thumb.active { border-color: var(--lx-rose); }

/* Product info panel */
.lx-product-info-panel {
  padding-top: 8px;
}
.lx-product-title {
  font-family: var(--lx-font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 14px;
  color: var(--lx-charcoal);
}
.lx-product-page-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--lx-charcoal);
  margin-bottom: 18px;
  display: block;
}
.lx-product-page-price del {
  font-size: 1rem;
  color: var(--lx-gray-dark);
  font-weight: 400;
  margin-right: 8px;
}
.lx-product-page-price ins { text-decoration: none; color: var(--lx-rose-dark); }
.lx-product-short-desc {
  font-size: .87rem;
  color: var(--lx-gray-dark);
  line-height: 1.85;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--lx-border);
}
.lx-product-delivery-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--lx-rose-pale);
  border-left: 3px solid var(--lx-rose);
  padding: 13px 16px;
  border-radius: 0 8px 8px 0;
  font-size: .78rem;
  color: var(--lx-charcoal);
  line-height: 1.65;
  margin-bottom: 22px;
}
.lx-product-delivery-note svg { flex-shrink: 0; color: var(--lx-rose); margin-top: 1px; }

/* WooCommerce add to cart on product page */
.woocommerce div.product form.cart {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.woocommerce div.product form.cart .quantity {
  display: inline-flex;
  align-items: center;
}
.woocommerce div.product form.cart .quantity input[type="number"] {
  width: 80px;
  height: 50px;
  border: 1.5px solid var(--lx-border);
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  text-align: center;
  padding: 0 8px;
  outline: none;
  font-family: var(--lx-font-body);
  transition: border-color var(--lx-trans);
}
.woocommerce div.product form.cart .quantity input:focus { border-color: var(--lx-rose); }
.woocommerce div.product form.cart .button,
.woocommerce div.product .single_add_to_cart_button {
  background: var(--lx-charcoal) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-family: var(--lx-font-body) !important;
  font-size: .8rem !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  padding: 15px 36px !important;
  cursor: pointer !important;
  transition: background var(--lx-trans), transform var(--lx-trans) !important;
  width: 100% !important;
}
.woocommerce div.product form.cart .button:hover,
.woocommerce div.product .single_add_to_cart_button:hover {
  background: var(--lx-rose) !important;
  transform: translateY(-1px) !important;
}

/* Trust badges */
.lx-product-trust-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid var(--lx-border);
  border-bottom: 1px solid var(--lx-border);
  margin-bottom: 16px;
}
.lx-product-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .73rem;
  color: var(--lx-gray-dark);
  font-weight: 500;
}
.lx-product-trust-item svg { color: var(--lx-rose); flex-shrink: 0; }

/* Product tabs */
.lx-product-tabs { border-top: 2px solid var(--lx-border); padding-top: 44px; margin-top: 24px; }
.lx-product-tabs .lx-tabs {
  justify-content: flex-start;
  border-bottom: 2px solid var(--lx-border);
  padding-bottom: 0;
  margin-bottom: 0;
  gap: 0;
}
.lx-product-tabs .lx-tab {
  border-radius: 0;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  padding: 12px 24px;
  color: var(--lx-gray-dark);
  font-size: .78rem;
  margin-bottom: -2px;
  transition: color var(--lx-trans), border-color var(--lx-trans);
}
.lx-product-tabs .lx-tab.active,
.lx-product-tabs .lx-tab:hover {
  background: none;
  color: var(--lx-charcoal);
  border-bottom-color: var(--lx-rose);
}
.lx-tab-panel { padding: 28px 0; }
.lx-product-desc-content {
  font-size: .87rem;
  color: var(--lx-gray-dark);
  line-height: 1.9;
  max-width: 780px;
}
.lx-product-desc-content h4 {
  font-size: .95rem;
  color: var(--lx-charcoal);
  margin: 22px 0 10px;
  font-family: var(--lx-font-body);
  font-weight: 700;
}
.lx-product-desc-content ul {
  padding-left: 20px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 10px 0;
}
.lx-product-desc-content p { margin-bottom: 12px; }
.lx-product-desc-content table { font-size: .85rem; }
.lx-product-desc-content table th,
.lx-product-desc-content table td { padding: 10px 14px !important; }

/* Related products - reduce gap from top */
.lx-product-tabs + div { margin-top: 48px !important; }

/* ================================================================
   FEATURED SECTION — reduce padding & whitespace
   ================================================================ */
#lx-featured { padding-top: 6px !important; padding-bottom: 30px !important; }
#lx-categories { padding-bottom: 10px; }

/* Less gap after product grids in homepage */
.text-center.mt-32 { margin-top: 20px; }

/* ================================================================
   RESPONSIVE — SHOP & PRODUCT
   ================================================================ */
@media (max-width: 1100px) {
  .lx-shop-main ul.products { grid-template-columns: repeat(2, 1fr) !important; }
  .lx-product-page-wrap { gap: 40px; }
}
@media (max-width: 960px) {
  .lx-shop-layout { grid-template-columns: 1fr; }
  .lx-shop-sidebar { display: none; }
  .lx-product-page-wrap { grid-template-columns: 1fr; gap: 32px; }
  .lx-product-gallery { position: static; }
  .lx-product-main-img { max-height: 480px; aspect-ratio: auto; }
}
@media (max-width: 640px) {
  .lx-shop-main ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .lx-shop-main ul.products li.product a img { height: 200px !important; }
  .lx-product-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .lx-product-img-wrap { min-height: 200px; }
}


/* ═══════════════════════════════════════════════════════
   LUXELLE v5 — ADDITIONS & OVERRIDES
   ═══════════════════════════════════════════════════════ */

/* ── Hero single (no slider) ── */
#lx-hero .lx-hero-single {
  position: relative;
  width: 100%;
  height: clamp(480px, 88vh, 820px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
#lx-hero .lx-hero-single .lx-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
#lx-hero .lx-hero-single .lx-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.18) 55%, transparent 100%);
}
#lx-hero .lx-slide-content {
  position: relative;
  z-index: 2;
  padding: 40px 32px;
  max-width: 540px;
}

/* ── Category grid (replaces mosaic) ── */
.lx-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.lx-cat-grid-item {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/5;
  text-decoration: none;
  background: #111;
}
.lx-cat-grid-item.lx-cat-grid-featured {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}
.lx-cat-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.55s cubic-bezier(.25,.46,.45,.94);
}
.lx-cat-grid-item:hover img { transform: scale(1.04); }
.lx-cat-grid-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 18px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  color: #fff;
}
.lx-cat-grid-label h3 {
  font-family: var(--lx-font-serif);
  font-size: clamp(1.1rem, 2.8vw, 1.4rem);
  font-weight: 600;
  margin: 0 0 2px;
  color: #fff;
}
.lx-cat-grid-label span {
  font-size: .72rem;
  opacity: .8;
  display: block;
  margin-bottom: 8px;
  letter-spacing: .04em;
}
.lx-cat-grid-label em {
  font-style: normal;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lx-rose-light, #e8bfaa);
  opacity: 0;
  transition: opacity .3s;
}
.lx-cat-grid-item:hover .lx-cat-grid-label em { opacity: 1; }

/* ── Shop page rebuild ── */
.lxshop-header {
  position: relative;
  padding: 64px 0 48px;
  background: var(--lx-charcoal, #1a1a1a) center/cover no-repeat;
  overflow: hidden;
}
.lxshop-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.38) 100%);
}
.lxshop-header-inner {
  position: relative; z-index: 2;
  color: #fff;
}
.lxshop-header-inner .lx-eyebrow { color: var(--lx-rose-light, #e8bfaa); }
.lxshop-header-inner h1 {
  font-family: var(--lx-font-serif);
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: #fff; margin: 6px 0 10px;
}
.lxshop-header-inner p { color: rgba(255,255,255,.8); font-size: .9rem; }

.lxshop-cats-strip { background: var(--lx-white,#fff); border-bottom: 1px solid var(--lx-border,#ece9e4); }
.lxshop-cats-row {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 0; overflow-x: auto;
  scrollbar-width: none;
}
.lxshop-cats-row::-webkit-scrollbar { display: none; }
.lxshop-cat-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px; border-radius: 999px;
  border: 1.5px solid var(--lx-border,#ece9e4);
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--lx-charcoal,#1a1a1a);
  text-decoration: none; white-space: nowrap;
  transition: all .22s;
  flex-shrink: 0;
}
.lxshop-cat-chip img { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }
.lxshop-cat-chip:hover, .lxshop-cat-chip.active {
  background: var(--lx-charcoal,#1a1a1a);
  border-color: var(--lx-charcoal,#1a1a1a);
  color: #fff;
}

.lxshop-body { padding: 32px 0 64px; }
.lxshop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 1px solid var(--lx-border,#ece9e4);
}
.lxshop-count { font-size: .8rem; color: var(--lx-gray-dark,#888); }
.lxshop-sort .woocommerce-ordering { margin: 0; }
.lxshop-sort select {
  border: 1.5px solid var(--lx-border,#ece9e4); border-radius: 6px;
  padding: 7px 12px; font-size: .8rem;
  background: #fff; color: var(--lx-charcoal,#1a1a1a);
}
.lxshop-grid-wrap ul.products {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px; list-style: none; margin: 0; padding: 0;
}
@media (min-width: 768px) {
  .lxshop-grid-wrap ul.products { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .lxshop-grid-wrap ul.products { grid-template-columns: repeat(4, 1fr); }
}
.lxshop-grid-wrap ul.products li.product { margin: 0 !important; }

/* ── Single product page (lxsp) ── */
.lxsp-wrap { padding: 0 0 80px; }
.lx-breadcrumb-bar {
  background: var(--lx-gray,#f8f7f5);
  border-bottom: 1px solid var(--lx-border,#ece9e4);
  padding: 10px 0;
  font-size: .76rem; color: var(--lx-gray-dark,#888);
}
.lxsp-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 40px 0 0;
}
@media (min-width: 768px) {
  .lxsp-layout { grid-template-columns: 1fr 1fr; gap: 56px; }
}

/* Gallery */
.lxsp-gallery { display: flex; gap: 10px; }
.lxsp-thumbs {
  display: flex; flex-direction: column; gap: 8px;
  width: 64px; flex-shrink: 0;
}
.lxsp-thumb {
  width: 64px; height: 64px; border-radius: 6px;
  overflow: hidden; border: 2px solid transparent;
  cursor: pointer; padding: 0; background: none;
  transition: border-color .2s;
}
.lxsp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lxsp-thumb.active { border-color: var(--lx-rose,#c9967a); }
.lxsp-main-img-wrap {
  flex: 1; border-radius: 12px; overflow: hidden;
  position: relative; aspect-ratio: 3/4; background: var(--lx-gray,#f8f7f5);
}
.lxsp-main-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lxsp-sale-flag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--lx-rose,#c9967a); color: #fff;
  font-size: .65rem; font-weight: 800; letter-spacing: .14em;
  padding: 5px 10px; border-radius: 4px;
}

/* Info panel */
.lxsp-info { padding-top: 8px; }
.lxsp-cat-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--lx-rose,#c9967a);
  margin: 0 0 10px;
}
.lxsp-title {
  font-family: var(--lx-font-serif);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 600; line-height: 1.25;
  color: var(--lx-charcoal,#1a1a1a);
  margin: 0 0 14px;
}
.lxsp-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.lxsp-stars { display: flex; gap: 2px; color: var(--lx-gold,#c9967a); }
.lxsp-review-count { font-size: .76rem; color: var(--lx-gray-dark,#888); }
.lxsp-price { margin-bottom: 18px; }
.lxsp-price .woocommerce-Price-amount { font-size: 1.6rem; font-weight: 700; color: var(--lx-charcoal,#1a1a1a); }
.lxsp-price del .woocommerce-Price-amount { font-size: 1rem; color: var(--lx-gray-dark,#999); font-weight: 400; }
.lxsp-short-desc {
  font-size: .88rem; line-height: 1.75;
  color: var(--lx-gray-dark,#666);
  border-left: 3px solid var(--lx-rose,#c9967a);
  padding-left: 14px; margin-bottom: 20px;
}
.lxsp-delivery {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--lx-cream,#fdf9f5);
  border: 1px solid var(--lx-border,#ece9e4);
  border-radius: 8px; padding: 12px 14px;
  font-size: .8rem; color: var(--lx-charcoal,#333);
  margin-bottom: 24px;
}
.lxsp-delivery svg { flex-shrink: 0; margin-top: 2px; color: var(--lx-rose,#c9967a); }
.lxsp-atc-wrap { margin-bottom: 20px; }
.lxsp-atc-wrap .quantity input {
  border: 1.5px solid var(--lx-border,#ece9e4) !important;
  border-radius: 8px !important; padding: 10px 12px !important;
  width: 72px !important; text-align: center;
}
.lxsp-atc-wrap .single_add_to_cart_button {
  background: var(--lx-charcoal,#1a1a1a) !important;
  color: #fff !important; border: none !important;
  border-radius: 8px !important;
  font-weight: 700 !important; letter-spacing: .1em !important;
  text-transform: uppercase !important; font-size: .8rem !important;
  padding: 14px 28px !important; cursor: pointer;
  transition: background .22s !important;
}
.lxsp-atc-wrap .single_add_to_cart_button:hover {
  background: var(--lx-rose,#c9967a) !important;
}
.lxsp-trust {
  display: flex; flex-wrap: wrap; gap: 12px 20px;
  padding: 16px 0 0;
  border-top: 1px solid var(--lx-border,#ece9e4);
  margin-bottom: 16px;
}
.lxsp-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .75rem; color: var(--lx-gray-dark,#666);
}
.lxsp-trust-item svg { color: var(--lx-rose,#c9967a); flex-shrink: 0; }
.lxsp-sku { font-size: .72rem; color: var(--lx-gray-dark,#aaa); margin-top: 10px; }

/* Tabs */
.lxsp-tabs-wrap {
  margin-top: 64px;
  border-top: 2px solid var(--lx-border,#ece9e4);
  padding-top: 0;
}
.lxsp-tabs {
  display: flex; gap: 0;
  border-bottom: 2px solid var(--lx-border,#ece9e4);
  margin-bottom: 32px;
}
.lxsp-tab {
  background: none; border: none;
  padding: 14px 22px; cursor: pointer;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--lx-gray-dark,#999);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all .2s;
}
.lxsp-tab.active, .lxsp-tab:hover {
  color: var(--lx-charcoal,#1a1a1a);
  border-bottom-color: var(--lx-charcoal,#1a1a1a);
}
.lxsp-panel { display: none; }
.lxsp-panel.active { display: block; }
.lxsp-desc-body { font-size: .88rem; line-height: 1.8; color: var(--lx-gray-dark,#555); max-width: 680px; }
.lxsp-desc-body ul { padding-left: 20px; }
.lxsp-desc-body li { margin-bottom: 6px; }
.lxsp-desc-body h4 { font-family: var(--lx-font-serif); font-size: 1.1rem; margin: 24px 0 10px; }

.lxsp-ship-table { display: flex; flex-direction: column; gap: 0; margin: 20px 0; border: 1px solid var(--lx-border,#ece9e4); border-radius: 8px; overflow: hidden; }
.lxsp-ship-row {
  display: grid; grid-template-columns: 30px 1fr 1fr 1fr;
  align-items: center; gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--lx-border,#ece9e4);
  font-size: .84rem;
}
.lxsp-ship-row:last-child { border-bottom: none; }
.lxsp-ship-country { font-weight: 600; }
.lxsp-ship-carrier { color: var(--lx-gray-dark,#888); }
.lxsp-ship-time { color: var(--lx-rose,#c9967a); font-weight: 700; }

.lxsp-care-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; margin: 8px 0;
}
@media (min-width: 768px) { .lxsp-care-grid { grid-template-columns: repeat(4, 1fr); } }
.lxsp-care-card {
  background: var(--lx-cream,#fdf9f5);
  border: 1px solid var(--lx-border,#ece9e4);
  border-radius: 10px; padding: 22px 18px;
}
.lxsp-care-icon { font-size: 1.6rem; margin-bottom: 10px; }
.lxsp-care-card h5 { font-size: .84rem; font-weight: 700; margin: 0 0 8px; }
.lxsp-care-card p { font-size: .78rem; color: var(--lx-gray-dark,#777); line-height: 1.65; margin: 0; }

.lxsp-related { margin-top: 72px; }

/* Mobile tweaks */
@media (max-width: 600px) {
  .lx-cat-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .lx-cat-grid-item.lx-cat-grid-featured { grid-column: 1 / -1; aspect-ratio: 4/3; }
  .lxsp-thumbs { width: 52px; }
  .lxsp-thumb { width: 52px; height: 52px; }
  .lxsp-ship-row { grid-template-columns: 24px 1fr 1fr; }
  .lxsp-ship-carrier { display: none; }
}


/* ════════════════════════════════════════════════════════════
   LXS — SHOP PAGE CLEAN REBUILD (v5.1)
   All rules prefixed .lxs- to avoid any collision
   ════════════════════════════════════════════════════════════ */

/* Header band */
.lxs-header {
  background: var(--lx-charcoal, #1c1b19);
  padding: 52px 0 44px;
  position: relative;
  overflow: hidden;
}
.lxs-header--img {
  background-size: cover;
  background-position: center top;
}
.lxs-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.35) 100%);
}
.lxs-header-inner {
  position: relative; z-index: 1;
}
.lxs-header .lx-eyebrow {
  color: var(--lx-rose-light, #e8bfaa) !important;
  display: block; margin-bottom: 6px;
}
.lxs-header h1 {
  font-family: var(--lx-font-serif, 'Cormorant Garamond', serif);
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.15;
}
.lxs-header-desc {
  color: rgba(255,255,255,0.72);
  font-size: .9rem;
  margin: 0;
  max-width: 480px;
}

/* Filter chip bar */
.lxs-filter-bar {
  background: #fff;
  border-bottom: 1px solid var(--lx-border, #ece9e4);
  padding: 0;
  position: sticky;
  top: var(--lx-header-h, 72px);
  z-index: 90;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.lxs-filter-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.lxs-filter-inner::-webkit-scrollbar { display: none; }
.lxs-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--lx-border, #ddd);
  background: transparent;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lx-charcoal, #1c1b19);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all .2s ease;
}
.lxs-chip-img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.lxs-chip:hover {
  border-color: var(--lx-rose, #c9967a);
  color: var(--lx-rose, #c9967a);
}
.lxs-chip--active {
  background: var(--lx-charcoal, #1c1b19);
  border-color: var(--lx-charcoal, #1c1b19);
  color: #fff !important;
}

/* Toolbar */
.lxs-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 16px;
  border-bottom: 1px solid var(--lx-border, #ece9e4);
  margin-bottom: 28px;
}
.lxs-count {
  font-size: .78rem;
  color: var(--lx-gray-dark, #999);
  letter-spacing: .04em;
}
.lxs-sort-select {
  appearance: none;
  -webkit-appearance: none;
  border: 1.5px solid var(--lx-border, #ddd);
  border-radius: 8px;
  padding: 8px 36px 8px 14px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--lx-charcoal, #1c1b19);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E") no-repeat right 12px center;
  cursor: pointer;
  min-width: 180px;
  transition: border-color .2s;
}
.lxs-sort-select:focus {
  outline: none;
  border-color: var(--lx-rose, #c9967a);
}

/* Product grid */
.lxs-grid-wrap {
  padding-bottom: 80px;
}
.lxs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 14px;
}
@media (min-width: 640px) { .lxs-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .lxs-grid { grid-template-columns: repeat(4, 1fr); gap: 24px 18px; } }

/* Card */
.lxs-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--lx-border, #ece9e4);
  transition: transform .28s ease, box-shadow .28s ease;
}
.lxs-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.11);
}

/* Card image */
.lxs-card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--lx-gray, #f8f7f5);
  flex-shrink: 0;
}
.lxs-card-img a {
  display: block;
  width: 100%;
  height: 100%;
}
.lxs-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s ease;
}
.lxs-card:hover .lxs-card-img img { transform: scale(1.06); }

/* Badge */
.lxs-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .14em;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}
.lxs-badge--sale { background: var(--lx-rose, #c9967a); color: #fff; }
.lxs-badge--new  { background: var(--lx-charcoal, #1c1b19); color: #fff; }
.lxs-badge--out  { background: #9b9b9b; color: #fff; }

/* Wishlist icon */
.lxs-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.92);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .22s, background .22s;
  backdrop-filter: blur(4px);
}
.lxs-card:hover .lxs-wishlist { opacity: 1; }
.lxs-wishlist:hover { background: #fff; }

/* Quick Add button — slides up from bottom on hover */
.lxs-quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--lx-charcoal, #1c1b19);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 13px 16px;
  border: none;
  cursor: pointer;
  transform: translateY(100%);
  transition: transform .28s cubic-bezier(.25,.46,.45,.94), background .2s;
}
.lxs-card:hover .lxs-quick-add { transform: translateY(0); }
.lxs-quick-add:hover { background: var(--lx-rose, #c9967a); }
.lxs-quick-add.lxs-added { background: #2d7a4f; }
.lxs-quick-add.lxs-loading { opacity: .7; pointer-events: none; }

/* Card info */
.lxs-card-info {
  padding: 14px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.lxs-card-info h3 {
  font-family: var(--lx-font-serif, Georgia, serif);
  font-size: clamp(.85rem, 2vw, 1rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: var(--lx-charcoal, #1c1b19);
}
.lxs-card-info h3 a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.lxs-card-info h3 a:hover { color: var(--lx-rose, #c9967a); }

/* Stars */
.lxs-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--lx-gold, #c9967a);
}
.lxs-stars span {
  font-size: .7rem;
  color: var(--lx-gray-dark, #aaa);
  margin-left: 4px;
}

/* Price */
.lxs-card-price {
  font-size: .95rem;
  font-weight: 700;
  color: var(--lx-charcoal, #1c1b19);
}
.lxs-card-price del {
  font-size: .8rem;
  color: var(--lx-gray-dark, #aaa);
  font-weight: 400;
  margin-right: 4px;
}
.lxs-card-price ins {
  text-decoration: none;
  color: var(--lx-rose, #c9967a);
}
.lxs-card-price .woocommerce-Price-amount { font-weight: 700; }

/* View Details link */
.lxs-view-btn {
  display: inline-flex;
  align-items: center;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lx-charcoal, #1c1b19);
  text-decoration: none;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--lx-border, #ece9e4);
  transition: color .2s;
}
.lxs-view-btn::after { content: ' →'; }
.lxs-view-btn:hover { color: var(--lx-rose, #c9967a); }

/* Pagination */
.lxs-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 40px 0 0;
}
.lxs-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1.5px solid var(--lx-border, #ddd);
  font-size: .82rem;
  font-weight: 700;
  color: var(--lx-charcoal, #1c1b19);
  text-decoration: none;
  transition: all .2s;
}
.lxs-pagination .page-numbers:hover,
.lxs-pagination .page-numbers.current {
  background: var(--lx-rose, #c9967a);
  border-color: var(--lx-rose, #c9967a);
  color: #fff;
}

/* Empty state */
.lxs-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--lx-gray-dark, #999);
}

/* ── Cart & Checkout buttons — global upgrade ── */
.woocommerce .button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.wc-proceed-to-checkout .checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  background: var(--lx-charcoal, #1c1b19) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 9px !important;
  font-family: var(--lx-font-sans, 'Jost', sans-serif) !important;
  font-size: .78rem !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  padding: 14px 28px !important;
  transition: background .22s ease, transform .15s ease !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15) !important;
  cursor: pointer !important;
}
.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.wc-proceed-to-checkout .checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  background: var(--lx-rose, #c9967a) !important;
  transform: translateY(-1px) !important;
}
/* Proceed to Checkout — rose gold highlight */
.woocommerce .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  background: var(--lx-rose, #c9967a) !important;
  font-size: .84rem !important;
  padding: 16px 36px !important;
  display: block !important;
  text-align: center !important;
  border-radius: 10px !important;
  box-shadow: 0 6px 20px rgba(201,150,122,0.35) !important;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  background: #b5825f !important;
}
/* Place Order on checkout */
#place_order,
.woocommerce #payment #place_order {
  background: var(--lx-rose, #c9967a) !important;
  font-size: .9rem !important;
  width: 100% !important;
  padding: 18px !important;
  border-radius: 10px !important;
  box-shadow: 0 6px 20px rgba(201,150,122,0.35) !important;
}
#place_order:hover {
  background: #b5825f !important;
}
/* Alt button (outline style) */
.woocommerce .button.alt,
.woocommerce a.button.alt {
  background: var(--lx-rose, #c9967a) !important;
}
.woocommerce .button.alt:hover,
.woocommerce a.button.alt:hover {
  background: #b5825f !important;
}

/* Mobile */
@media (max-width: 480px) {
  .lxs-grid { grid-template-columns: repeat(2, 1fr); gap: 12px 8px; }
  .lxs-card-info { padding: 10px 10px 14px; }
  .lxs-chip { padding: 7px 13px; font-size: .68rem; }
}

/* ═══════════════════════════════════════════════════════
   HERO CAROUSEL — 3-slide
   ═══════════════════════════════════════════════════════ */
#lx-hero { position:relative; overflow:hidden; }

/* ── Hero Carousel — sized & styled to match reference ── */
.lx-hero-carousel {
  position: relative; width: 100%;
  height: clamp(520px, 88vh, 860px);
  overflow: hidden;
}

.lx-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .7s ease;
  pointer-events: none;
  display: flex; align-items: center;
}
.lx-slide.lx-slide-active {
  opacity: 1; pointer-events: auto; z-index: 1;
}
.lx-slide .lx-slide-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.lx-slide .lx-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.52) 0%, rgba(0,0,0,.18) 55%, transparent 100%);
  z-index: 1;
}
.lx-slide .lx-slide-content {
  position: relative; z-index: 2;
  padding: 70px 64px;
  max-width: 580px;
  color: #fff;
}
.lx-slide .lx-slide-tag {
  display: inline-block;
  background: var(--lx-rose); color: #fff;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 4px 13px; border-radius: 2px;
  margin-bottom: 18px;
}
.lx-slide .lx-slide-content h2 {
  font-family: var(--lx-font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700; line-height: 1.08;
  margin: 0 0 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.lx-slide .lx-slide-content p {
  font-size: 0.95rem; opacity: 0.88;
  line-height: 1.7; margin: 0 0 28px;
  max-width: 380px;
}

/* Arrows */
.lx-carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.88);
  border: none; color: var(--lx-charcoal);
  width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
  transition: all .2s;
}
.lx-carousel-arrow:hover { background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,.22); }
.lx-carousel-prev { left: 20px; }
.lx-carousel-next { right: 20px; }

/* Dots */
.lx-carousel-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 8px;
}
.lx-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.45); border: none; cursor: pointer;
  transition: background .25s, width .25s, border-radius .25s;
}
.lx-dot.lx-dot-active {
  background: #fff; width: 26px; border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════
   SHOP SPLIT SECTIONS — Bundles & Closures
   ═══════════════════════════════════════════════════════ */
.lx-shop-split { background:#fff; }
.lx-shop-split-inner {
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:580px;
}
.lx-shop-split--reverse .lx-shop-split-inner { }

.lx-shop-split-img {
  background-size:cover;
  background-position:center top;
  background-repeat:no-repeat;
  min-height:480px;
}

.lx-shop-split-text {
  padding:60px 56px;
  display:flex; flex-direction:column; justify-content:center;
  background:var(--lx-cream, #fdf8f5);
}
.lx-shop-split-text .lx-eyebrow {
  font-size:.7rem; letter-spacing:.15em; text-transform:uppercase;
  color:var(--lx-rose,#c9967a); font-weight:600;
  margin-bottom:10px; display:block;
}
.lx-shop-split-text h2 {
  font-size:clamp(1.6rem,2.8vw,2.4rem);
  font-weight:700; line-height:1.2;
  margin:0 0 16px; color:var(--lx-dark,#1a1a1a);
}
.lx-shop-split-text p {
  font-size:.95rem; line-height:1.75;
  color:#555; margin:0 0 20px;
}
.lx-split-features {
  list-style:none; padding:0; margin:0 0 8px;
  display:flex; flex-direction:column; gap:8px;
}
.lx-split-features li {
  font-size:.82rem; color:#444; letter-spacing:.01em;
}
.lx-btn-dark {
  background:var(--lx-dark,#1a1a1a); color:#fff;
  padding:14px 32px; border-radius:8px;
  font-size:.82rem; font-weight:600; letter-spacing:.08em;
  text-transform:uppercase; display:inline-block;
  transition:background .2s, transform .15s; text-decoration:none;
  align-self:flex-start;
}
.lx-btn-dark:hover { background:#333; transform:translateY(-1px); }

/* Alternating BG so sections don't look identical */
#lx-shop-closures .lx-shop-split-text { background:#fff; }
#lx-shop-closures .lx-shop-split-img  { background-position:center center; }

@media (max-width:768px) {
  .lx-shop-split-inner {
    grid-template-columns:1fr;
  }
  .lx-shop-split-img { min-height:320px; order:-1; }
  .lx-shop-split--reverse .lx-shop-split-img { order:-1; }
  .lx-shop-split-text { padding:36px 24px; }
  .lx-hero-carousel { height: clamp(360px, 75vw, 640px); }
  .lx-slide .lx-slide-content { padding: 36px 24px; max-width: 90%; }
  .lx-carousel-arrow { width: 36px; height: 36px; }
}
