/*
Theme Name:  LUNVELLE
Theme URI:   https://lunvelle.com
Author:      Digital Solutions Lanka
Author URI:  https://dsolk.com
Description: Modern apparel e-commerce theme for LUNVELLE.com — built on WooCommerce, no page-builder dependencies.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lunvelle
Tags:        woocommerce, fashion, apparel, e-commerce, custom-menu, custom-logo, featured-images, full-width-template
WC tested up to: 8.6
*/

/* ============================================================
   0. DESIGN TOKENS
============================================================ */
:root {
  /* Brand */
  --lv-black:       #1a1a1a;
  --lv-white:       #ffffff;
  --lv-off-white:   #f7f4f0;
  --lv-beige:       #e8dfd4;
  --lv-caramel:     #c8ad90;
  --lv-gold:        #d4a847;
  --lv-teal:        #2a6a66;
  --lv-red:         #e53935;
  --lv-grey-100:    #f5f5f5;
  --lv-grey-200:    #ebebeb;
  --lv-grey-300:    #e0e0e0;
  --lv-grey-400:    #bdbdbd;
  --lv-grey-500:    #9e9e9e;
  --lv-grey-600:    #757575;
  --lv-grey-700:    #555555;
  --lv-grey-800:    #333333;

  /* Typography */
  --lv-font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --lv-font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;
  --lv-font-mono:    'JetBrains Mono', monospace;

  /* Spacing */
  --lv-gap-xs:   4px;
  --lv-gap-sm:   8px;
  --lv-gap-md:   16px;
  --lv-gap-lg:   24px;
  --lv-gap-xl:   40px;
  --lv-gap-2xl:  64px;

  /* Layout */
  --lv-max-width:     1320px;
  --lv-radius-sm:     4px;
  --lv-radius-md:     8px;
  --lv-radius-lg:     14px;
  --lv-radius-pill:   50px;

  /* Transitions */
  --lv-trans-fast:  0.15s ease;
  --lv-trans-base:  0.25s ease;
  --lv-trans-slow:  0.4s ease;
}

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

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--lv-font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--lv-black);
  background: var(--lv-white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; transition: color var(--lv-trans-fast); }

ul, ol { list-style: none; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--lv-font-heading);
  font-weight: 500;
  line-height: 1.15;
  color: var(--lv-black);
}

/* ============================================================
   2. UTILITY CLASSES
============================================================ */
.lv-container {
  max-width: var(--lv-max-width);
  margin-inline: auto;
  padding-inline: var(--lv-gap-lg);
}

.lv-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.lv-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--lv-gap-sm);
  padding: 11px 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--lv-radius-sm);
  cursor: pointer;
  border: none;
  transition: all var(--lv-trans-fast);
  white-space: nowrap;
}

.lv-btn-primary {
  background: var(--lv-black);
  color: var(--lv-white);
}
.lv-btn-primary:hover {
  background: var(--lv-grey-800);
  color: var(--lv-white);
}

.lv-btn-secondary {
  background: transparent;
  color: var(--lv-black);
  border: 1.5px solid var(--lv-black);
}
.lv-btn-secondary:hover {
  background: var(--lv-black);
  color: var(--lv-white);
}

.lv-btn-ghost {
  background: transparent;
  color: var(--lv-white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.lv-btn-ghost:hover {
  background: var(--lv-white);
  color: var(--lv-black);
}

.lv-btn-red {
  background: var(--lv-red);
  color: var(--lv-white);
}
.lv-btn-red:hover {
  background: #c62828;
  color: var(--lv-white);
}

/* ============================================================
   3. PROMO BAR
============================================================ */
.lv-promo-bar {
  background: var(--lv-black);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 9px 20px;
  font-size: 11.5px;
  letter-spacing: 0.4px;
  position: relative;
  z-index: 100;
}

.lv-promo-bar strong,
.lv-promo-bar a {
  color: var(--lv-gold);
  font-weight: 600;
}

.lv-promo-bar a:hover { text-decoration: underline; }

.lv-promo-bar .lv-promo-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 4px;
}

/* ============================================================
   4. HEADER
============================================================ */
.lv-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--lv-white);
  border-bottom: 1px solid var(--lv-grey-200);
}

/* Top utility row */
.lv-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 0;
}

.lv-header-util {
  display: flex;
  gap: var(--lv-gap-lg);
  font-size: 11px;
  color: var(--lv-grey-600);
}
.lv-header-util a:hover { color: var(--lv-black); }

.lv-logo {
  font-family: var(--lv-font-heading);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--lv-black);
  text-decoration: none;
}
.lv-logo img { height: 36px; width: auto; }

.lv-header-actions {
  display: flex;
  align-items: center;
  gap: var(--lv-gap-sm);
}

/* Search bar */
.lv-search-form {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--lv-grey-100);
  border-radius: var(--lv-radius-pill);
  padding: 7px 16px;
  border: 1px solid transparent;
  transition: border-color var(--lv-trans-fast);
}
.lv-search-form:focus-within {
  border-color: var(--lv-grey-300);
  background: var(--lv-white);
}
.lv-search-form input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 12.5px;
  color: var(--lv-black);
  width: 180px;
}
.lv-search-form input::placeholder { color: var(--lv-grey-500); }
.lv-search-form button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--lv-grey-500);
  display: flex;
  align-items: center;
  padding: 0;
  transition: color var(--lv-trans-fast);
}
.lv-search-form button:hover { color: var(--lv-black); }

/* Icon buttons */
.lv-icon-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--lv-grey-700);
  text-decoration: none;
  transition: all var(--lv-trans-fast);
}
.lv-icon-btn:hover {
  background: var(--lv-grey-100);
  color: var(--lv-black);
}
.lv-icon-btn svg { width: 20px; height: 20px; }

.lv-cart-count {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--lv-red);
  color: var(--lv-white);
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}

/* Primary nav */
.lv-nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.lv-nav::-webkit-scrollbar { display: none; }

.lv-nav-item {
  position: relative;
  padding: 10px 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--lv-grey-600);
  letter-spacing: 0.3px;
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--lv-trans-fast);
  text-decoration: none;
}
.lv-nav-item:hover,
.lv-nav-item.current-menu-item,
.lv-nav-item.current-menu-parent { color: var(--lv-black); border-bottom-color: var(--lv-black); }

.lv-nav-item.lv-sale { color: var(--lv-red); }
.lv-nav-item.lv-sale:hover,
.lv-nav-item.lv-sale.current-menu-item { border-bottom-color: var(--lv-red); }

/* Dropdown mega menu */
.lv-nav-item > .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 220px;
  background: var(--lv-white);
  border: 1px solid var(--lv-grey-200);
  border-radius: var(--lv-radius-md);
  padding: var(--lv-gap-md) 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  z-index: 300;
}
.lv-nav-item:hover > .sub-menu { display: block; }
.sub-menu li a {
  display: block;
  padding: 8px 20px;
  font-size: 12.5px;
  color: var(--lv-grey-700);
  transition: all var(--lv-trans-fast);
}
.sub-menu li a:hover { color: var(--lv-black); padding-left: 24px; }

/* Mobile hamburger */
.lv-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--lv-black);
}
.lv-hamburger svg { width: 22px; height: 22px; }

/* Mobile nav drawer */
.lv-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 400;
}
.lv-mobile-nav.open { display: flex; }
.lv-mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.lv-mobile-drawer {
  position: relative;
  width: 300px;
  height: 100%;
  background: var(--lv-white);
  overflow-y: auto;
  padding: var(--lv-gap-lg);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--lv-gap-md);
}
.lv-mobile-drawer a {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--lv-grey-200);
  color: var(--lv-black);
}
.lv-mobile-drawer a:hover { color: var(--lv-teal); }
.lv-mobile-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  align-self: flex-end;
  color: var(--lv-grey-600);
}

/* ============================================================
   5. HERO SLIDER
============================================================ */
.lv-hero {
  position: relative;
  overflow: hidden;
  height: 560px;
}

.lv-hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.lv-hero-slide {
  min-width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-shrink: 0;
  position: relative;
}

.lv-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 64px;
  z-index: 2;
}

.lv-hero-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.lv-hero-h {
  font-family: var(--lv-font-heading);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 14px;
}

.lv-hero-sub {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 300px;
}

.lv-hero-cta { display: flex; gap: var(--lv-gap-md); }

.lv-hero-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 40px;
  overflow: hidden;
}

.lv-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slide colour themes */
.lv-slide-warm   { background: #f7f3ee; }
.lv-slide-warm .lv-hero-visual   { background: linear-gradient(160deg,#ecdfd1,#d4c0a8); }
.lv-slide-warm .lv-hero-eyebrow  { color: #a08060; }
.lv-slide-warm .lv-hero-h        { color: var(--lv-black); }
.lv-slide-warm .lv-hero-sub      { color: var(--lv-grey-600); }

.lv-slide-dark   { background: #0d2b2a; }
.lv-slide-dark .lv-hero-visual   { background: linear-gradient(160deg,#1a4a47,#0d2b2a); }
.lv-slide-dark .lv-hero-eyebrow  { color: #5fa89a; }
.lv-slide-dark .lv-hero-h        { color: var(--lv-white); }
.lv-slide-dark .lv-hero-sub      { color: rgba(255,255,255,0.55); }

.lv-slide-blush  { background: #fdf0f0; }
.lv-slide-blush .lv-hero-visual  { background: linear-gradient(160deg,#f7d8d8,#e8b8b8); }
.lv-slide-blush .lv-hero-eyebrow { color: #c07070; }
.lv-slide-blush .lv-hero-h       { color: var(--lv-black); }
.lv-slide-blush .lv-hero-sub     { color: var(--lv-grey-600); }

/* Slider controls */
.lv-hero-prev,
.lv-hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lv-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
  transition: all var(--lv-trans-fast);
  color: var(--lv-black);
}
.lv-hero-prev:hover, .lv-hero-next:hover {
  background: var(--lv-black);
  color: var(--lv-white);
}
.lv-hero-prev { left: 20px; }
.lv-hero-next { right: 20px; }
.lv-hero-prev svg, .lv-hero-next svg { width: 18px; height: 18px; }

.lv-hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 20;
}

.lv-dot {
  height: 3px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(0,0,0,0.2);
  border: none;
  padding: 0;
}
.lv-dot.active { width: 24px !important; }

/* ============================================================
   6. CATEGORY STRIP
============================================================ */
.lv-cats {
  background: var(--lv-white);
  border-bottom: 1px solid var(--lv-grey-200);
  padding: 20px 0;
}

.lv-cats-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lv-grey-400);
  margin-bottom: 16px;
}

.lv-cats-row {
  display: flex;
  gap: var(--lv-gap-md);
  justify-content: space-between;
}

.lv-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 12px 10px;
  border-radius: var(--lv-radius-md);
  text-decoration: none;
  transition: background var(--lv-trans-fast);
  flex: 1;
  text-align: center;
}
.lv-cat:hover { background: var(--lv-grey-100); }
.lv-cat.active { background: var(--lv-black); }

.lv-cat-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--lv-grey-300);
  background: var(--lv-grey-100);
  transition: all var(--lv-trans-fast);
}
.lv-cat.active .lv-cat-icon {
  background: var(--lv-white);
  border-color: var(--lv-white);
}
.lv-cat-icon svg { width: 22px; height: 22px; color: var(--lv-grey-600); }
.lv-cat.active .lv-cat-icon svg { color: var(--lv-black); }

.lv-cat-name {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--lv-grey-700);
  transition: color var(--lv-trans-fast);
}
.lv-cat.active .lv-cat-name { color: var(--lv-white); }

.lv-cat-count {
  font-size: 10px;
  color: var(--lv-grey-400);
  transition: color var(--lv-trans-fast);
}
.lv-cat.active .lv-cat-count { color: rgba(255,255,255,0.5); }

/* ============================================================
   7. SECTION HEADERS
============================================================ */
.lv-section { padding: var(--lv-gap-xl) 0; }
.lv-section-lg { padding: var(--lv-gap-2xl) 0; }

.lv-section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--lv-gap-lg);
}

.lv-section-title {
  font-family: var(--lv-font-heading);
  font-size: 28px;
  font-weight: 400;
  color: var(--lv-black);
}

.lv-section-link {
  font-size: 12px;
  color: var(--lv-grey-500);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--lv-trans-fast);
  text-decoration: none;
}
.lv-section-link:hover { color: var(--lv-black); }
.lv-section-link svg { width: 14px; height: 14px; }

/* ============================================================
   8. PRODUCT CARD
============================================================ */
.lv-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--lv-grey-200);
}

.lv-product-grid-gap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--lv-gap-lg);
}

.lv-product-card {
  background: var(--lv-white);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.lv-product-card:hover .lv-product-thumb { transform: scale(1.04); }

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

.lv-product-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--lv-trans-slow);
}

.lv-product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lv-grey-100);
}
.lv-product-placeholder svg {
  width: 64px;
  height: 64px;
  color: var(--lv-grey-300);
}

.lv-product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--lv-radius-sm);
  z-index: 2;
}
.lv-badge-new    { background: var(--lv-black); color: var(--lv-white); }
.lv-badge-sale   { background: var(--lv-red);   color: var(--lv-white); }
.lv-badge-hot    { background: var(--lv-gold);  color: var(--lv-white); }
.lv-badge-sold   { background: var(--lv-grey-400); color: var(--lv-white); }

.lv-product-wish {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all var(--lv-trans-fast);
  backdrop-filter: blur(4px);
}
.lv-product-wish:hover { background: var(--lv-white); }
.lv-product-wish svg { width: 16px; height: 16px; color: var(--lv-grey-400); }
.lv-product-wish.wishlisted svg { color: var(--lv-red); fill: var(--lv-red); }

/* Quick-add overlay */
.lv-quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--lv-black);
  color: var(--lv-white);
  text-align: center;
  padding: 11px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform var(--lv-trans-base);
  cursor: pointer;
  border: none;
  width: 100%;
  z-index: 3;
}
.lv-product-card:hover .lv-quick-add { transform: translateY(0); }

.lv-product-body {
  padding: 14px 16px 18px;
}

.lv-product-cat {
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lv-grey-400);
  margin-bottom: 4px;
}

.lv-product-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--lv-black);
  line-height: 1.3;
  margin-bottom: 8px;
}

.lv-swatches {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}
.lv-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--lv-white);
  outline: 1px solid var(--lv-grey-300);
  cursor: pointer;
  transition: outline-color var(--lv-trans-fast);
}
.lv-swatch.active, .lv-swatch:hover { outline-color: var(--lv-black); }

.lv-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.lv-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--lv-black);
}
.lv-price-old {
  font-size: 12px;
  color: var(--lv-grey-400);
  text-decoration: line-through;
}
.lv-price-pct {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--lv-red);
}

/* Instalment line (Koko / Mintpay) */
.lv-instalment {
  font-size: 10px;
  color: var(--lv-grey-500);
  margin-top: 3px;
}
.lv-instalment strong { color: var(--lv-black); }

/* ============================================================
   9. PROMO BANNERS
============================================================ */
.lv-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--lv-grey-200);
}

.lv-banner {
  padding: 32px 36px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.lv-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  transition: opacity var(--lv-trans-base);
}
.lv-banner:hover::after { opacity: 0.85; }
.lv-banner > * { position: relative; z-index: 1; }

.lv-banner-label {
  font-size: 9.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.lv-banner-h {
  font-family: var(--lv-font-heading);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 14px;
}
.lv-banner-cta {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lv-banner-cta svg { width: 14px; height: 14px; }

/* ============================================================
   10. TRUST BAR
============================================================ */
.lv-trust {
  background: var(--lv-grey-100);
  border-top: 1px solid var(--lv-grey-200);
  border-bottom: 1px solid var(--lv-grey-200);
}

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

.lv-trust-item {
  padding: 22px 20px;
  text-align: center;
  border-right: 1px solid var(--lv-grey-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.lv-trust-item:last-child { border-right: none; }

.lv-trust-icon svg { width: 26px; height: 26px; color: var(--lv-grey-600); }

.lv-trust-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--lv-black);
}
.lv-trust-sub {
  font-size: 11px;
  color: var(--lv-grey-500);
  line-height: 1.4;
}

/* ============================================================
   11. NEWSLETTER SECTION
============================================================ */
.lv-newsletter {
  background: var(--lv-black);
  padding: 56px 0;
  text-align: center;
}

.lv-newsletter-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lv-gold);
  margin-bottom: 10px;
}

.lv-newsletter-h {
  font-family: var(--lv-font-heading);
  font-size: 36px;
  font-weight: 400;
  color: var(--lv-white);
  margin-bottom: 10px;
}

.lv-newsletter-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}

.lv-newsletter-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto;
}
.lv-newsletter-form input {
  flex: 1;
  padding: 13px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  border-radius: var(--lv-radius-sm) 0 0 var(--lv-radius-sm);
  color: var(--lv-white);
  outline: none;
  font-size: 13px;
}
.lv-newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.lv-newsletter-form button {
  padding: 13px 24px;
  background: var(--lv-white);
  color: var(--lv-black);
  border: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 0 var(--lv-radius-sm) var(--lv-radius-sm) 0;
  transition: background var(--lv-trans-fast);
}
.lv-newsletter-form button:hover { background: var(--lv-grey-200); }

/* ============================================================
   12. FOOTER
============================================================ */
.lv-footer {
  background: var(--lv-black);
  color: rgba(255,255,255,0.7);
  padding: var(--lv-gap-2xl) 0 0;
}

.lv-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--lv-gap-xl);
  margin-bottom: var(--lv-gap-xl);
}

.lv-footer-logo {
  font-family: var(--lv-font-heading);
  font-size: 22px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--lv-white);
  margin-bottom: var(--lv-gap-md);
}

.lv-footer-about {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: var(--lv-gap-lg);
}

.lv-footer-social {
  display: flex;
  gap: var(--lv-gap-sm);
}
.lv-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--lv-trans-fast);
  text-decoration: none;
}
.lv-footer-social a:hover {
  border-color: var(--lv-white);
  color: var(--lv-white);
}
.lv-footer-social svg { width: 16px; height: 16px; }

.lv-footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lv-white);
  margin-bottom: var(--lv-gap-md);
}

.lv-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lv-footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--lv-trans-fast);
}
.lv-footer-links a:hover { color: var(--lv-white); }

.lv-footer-contact p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}
.lv-footer-contact strong { color: var(--lv-white); }

/* Footer bottom bar */
.lv-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--lv-gap-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--lv-gap-md);
}

.lv-footer-copy {
  font-size: 11.5px;
  color: rgba(255,255,255,0.35);
}

.lv-pay-logos {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.lv-pay-logo {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--lv-radius-sm);
  padding: 4px 10px;
  font-size: 9.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
}

/* ============================================================
   13. WOOCOMMERCE OVERRIDES
============================================================ */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 12px 20px;
  border-radius: var(--lv-radius-sm);
  margin-bottom: var(--lv-gap-md);
  font-size: 13px;
}
.woocommerce-message { background: #e8f5e9; color: #2e7d32; border-left: 4px solid #4caf50; }
.woocommerce-info    { background: #e3f2fd; color: #1565c0; border-left: 4px solid #2196f3; }
.woocommerce-error   { background: #ffebee; color: #c62828; border-left: 4px solid var(--lv-red); }

/* Breadcrumb */
.woocommerce-breadcrumb {
  font-size: 12px;
  color: var(--lv-grey-500);
  padding: 12px 0;
}
.woocommerce-breadcrumb a { color: var(--lv-grey-500); }
.woocommerce-breadcrumb a:hover { color: var(--lv-black); }

/* Shop archive */
.lv-shop-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--lv-gap-xl);
  padding: var(--lv-gap-xl) 0;
}

/* Sidebar */
.lv-sidebar { }
.lv-widget { margin-bottom: var(--lv-gap-xl); }
.lv-widget-title {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lv-black);
  margin-bottom: var(--lv-gap-md);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--lv-black);
}

/* WC product archive overrides */
ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--lv-gap-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.products li.product { margin: 0; }

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0 0;
}

.woocommerce ul.products li.product .price {
  font-size: 14px;
  font-weight: 600;
  color: var(--lv-black);
}

.woocommerce ul.products li.product .button {
  background: var(--lv-black);
  color: var(--lv-white);
  border-radius: var(--lv-radius-sm);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 20px;
  transition: background var(--lv-trans-fast);
}
.woocommerce ul.products li.product .button:hover { background: var(--lv-grey-800); }

/* Single product */
.lv-single-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--lv-gap-2xl);
  padding: var(--lv-gap-xl) 0;
}

.lv-gallery-main {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--lv-radius-md);
  background: var(--lv-grey-100);
}
.lv-gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.lv-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.lv-gallery-thumb {
  aspect-ratio: 1;
  border-radius: var(--lv-radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--lv-trans-fast);
}
.lv-gallery-thumb.active, .lv-gallery-thumb:hover { border-color: var(--lv-black); }
.lv-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.lv-product-info { }
.lv-product-info .lv-product-cat { margin-bottom: 6px; }
.lv-product-title {
  font-family: var(--lv-font-heading);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: var(--lv-gap-md);
}

.lv-product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--lv-gap-md);
  font-size: 13px;
  color: var(--lv-grey-500);
}
.lv-stars { color: var(--lv-gold); }

.lv-product-price-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: var(--lv-gap-lg);
}
.lv-product-price-block .lv-price { font-size: 24px; }

.lv-instalment-block {
  background: var(--lv-grey-100);
  border-radius: var(--lv-radius-sm);
  padding: 10px 14px;
  font-size: 12px;
  color: var(--lv-grey-600);
  margin-bottom: var(--lv-gap-lg);
}
.lv-instalment-block strong { color: var(--lv-black); }

.lv-size-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.lv-size-label a { color: var(--lv-grey-500); font-weight: 400; font-size: 11px; text-decoration: underline; }

.lv-sizes {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: var(--lv-gap-lg);
}
.lv-size-btn {
  min-width: 44px;
  height: 44px;
  border: 1.5px solid var(--lv-grey-300);
  border-radius: var(--lv-radius-sm);
  background: var(--lv-white);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--lv-trans-fast);
  padding: 0 12px;
}
.lv-size-btn:hover { border-color: var(--lv-black); }
.lv-size-btn.active { background: var(--lv-black); color: var(--lv-white); border-color: var(--lv-black); }
.lv-size-btn:disabled { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }

.lv-atc-row {
  display: flex;
  gap: 10px;
  margin-bottom: var(--lv-gap-lg);
}
.lv-qty-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--lv-grey-300);
  border-radius: var(--lv-radius-sm);
  overflow: hidden;
}
.lv-qty-btn {
  width: 40px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--lv-grey-600);
  transition: background var(--lv-trans-fast);
}
.lv-qty-btn:hover { background: var(--lv-grey-100); }
.lv-qty-input {
  width: 50px;
  height: 48px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--lv-grey-300);
  border-right: 1px solid var(--lv-grey-300);
  font-size: 14px;
  font-weight: 500;
  outline: none;
}

.lv-atc-btn {
  flex: 1;
  height: 48px;
  font-size: 12px;
}

.lv-product-meta {
  font-size: 12.5px;
  color: var(--lv-grey-500);
  line-height: 1.8;
}
.lv-product-meta span { color: var(--lv-black); }

/* ============================================================
   14. CART & CHECKOUT (WC)
============================================================ */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  padding: var(--lv-gap-xl) 0;
}

.woocommerce table.shop_table {
  border-collapse: collapse;
  width: 100%;
}
.woocommerce table.shop_table th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lv-grey-600);
  padding: 0 0 12px;
  border-bottom: 2px solid var(--lv-grey-200);
}
.woocommerce table.shop_table td {
  padding: 16px 0;
  border-bottom: 1px solid var(--lv-grey-200);
  vertical-align: middle;
}

.woocommerce #payment .place-order .button {
  background: var(--lv-black);
  color: var(--lv-white);
  border-radius: var(--lv-radius-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  width: 100%;
}

/* ============================================================
   15. WHATSAPP FLOAT BUTTON
============================================================ */
.lv-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform var(--lv-trans-fast);
}
.lv-whatsapp:hover { transform: scale(1.08); }
.lv-whatsapp svg { width: 26px; height: 26px; fill: #fff; }

/* ============================================================
   16. RESPONSIVE
============================================================ */

/* Tablet ≤ 1024px */
@media (max-width: 1024px) {
  .lv-product-grid,
  .lv-product-grid-gap { grid-template-columns: repeat(3, 1fr); }

  .lv-hero { height: 460px; }
  .lv-hero-h { font-size: 38px; }
  .lv-hero-content { padding: 40px; }

  .lv-footer-grid { grid-template-columns: 1fr 1fr; gap: var(--lv-gap-lg); }

  .lv-single-product { grid-template-columns: 1fr; }

  .lv-shop-wrap { grid-template-columns: 1fr; }
  .lv-sidebar { display: none; }
}

/* Mobile ≤ 768px */
@media (max-width: 768px) {
  .lv-header-top { }
  .lv-header-util { display: none; }
  .lv-search-form { display: none; }
  .lv-nav { display: none; }
  .lv-hamburger { display: flex; }

  .lv-hero { height: 380px; }
  .lv-hero-slide { grid-template-columns: 1fr; }
  .lv-hero-visual { display: none; }
  .lv-hero-content { padding: 32px 24px; }
  .lv-hero-h { font-size: 30px; }

  .lv-cats-row { flex-wrap: wrap; gap: 4px; }
  .lv-cat { min-width: calc(33.33% - 4px); }

  .lv-product-grid,
  .lv-product-grid-gap { grid-template-columns: repeat(2, 1fr); }

  .lv-banners { grid-template-columns: 1fr; }

  .lv-trust-grid { grid-template-columns: repeat(2, 1fr); }

  .lv-footer-grid { grid-template-columns: 1fr; gap: var(--lv-gap-lg); }
  .lv-footer-bottom { flex-direction: column; text-align: center; }

  .lv-container { padding-inline: var(--lv-gap-md); }

  ul.products { grid-template-columns: repeat(2, 1fr); }

  .lv-section-title { font-size: 22px; }
  .lv-newsletter-h { font-size: 26px; }
  .lv-newsletter-form { flex-direction: column; }
  .lv-newsletter-form input { border-radius: var(--lv-radius-sm); }
  .lv-newsletter-form button { border-radius: var(--lv-radius-sm); }
}

/* Small mobile ≤ 480px */
@media (max-width: 480px) {
  .lv-hero { height: 320px; }
  .lv-product-grid,
  .lv-product-grid-gap { grid-template-columns: repeat(2, 1fr); gap: 1px; }
}

/* ============================================================
   17. HERO SLIDER — IMAGE MODE
   When a slide has a real image set via Customizer
============================================================ */

/* Split-panel image slide — image ONLY in right panel, left gets its theme colour */
.lv-hero-slide.lv-slide-has-image {
  background-image: none !important; /* prevent full-bleed duplication */
  grid-template-columns: 1fr 1fr;
}

/* Left side keeps a neutral bg so text is readable */
.lv-slide-has-image .lv-hero-content {
  background: var(--lv-off-white);
}

/* Text colours — dark on light bg */
.lv-slide-has-image .lv-hero-eyebrow { color: var(--lv-grey-600); }
.lv-slide-has-image .lv-hero-h       { color: var(--lv-black); }
.lv-slide-has-image .lv-hero-sub     { color: var(--lv-grey-600); }

/* Buttons stay as-is from their theme class */

/* Right panel: no gradient bg, show image only */
.lv-slide-has-image .lv-hero-visual {
  background: none !important;
  padding: 0;
  overflow: hidden;
}

/* Image fills the right panel perfectly */
.lv-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Optional: full-bleed mode — image spans the entire slide */
/* Uncomment below if you want a full-width background image instead of split */
/*
.lv-slide-has-image {
  grid-template-columns: 1fr !important;
  position: relative;
}
.lv-slide-has-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.lv-slide-has-image .lv-hero-content {
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, transparent 80%);
}
.lv-slide-has-image .lv-hero-visual { display: none; }
*/

/* Responsive — stack on mobile */
@media (max-width: 768px) {
  .lv-slide-has-image {
    grid-template-columns: 1fr !important;
    background-size: cover;
    background-position: center top;
  }
  .lv-slide-has-image .lv-hero-visual { display: none; }
  .lv-slide-has-image .lv-hero-content {
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
  }
}
