/* ============================================
   LIVENZA — Core Styles
   Brand: Geometric ◆ diamond mark in coral
   Colors: Navy #1B3EAA + Coral #F5400A
   Fonts: Poppins (headings) + Inter (body)
   ============================================ */

/* Fonts are loaded via theme settings (Admin → Extensions → Themes → Livenza) */

/* === Variables === */
:root {
  --lv-primary:        #1B3EAA;
  --lv-primary-dark:   #0D2878;
  --lv-primary-light:  #2E57D4;
  --lv-accent:         #F5400A;
  --lv-accent-dark:    #C43208;
  --lv-gold:           #FFB300;
  --lv-green:          #00A86B;
  --lv-dark:           #0D1B4B;
  --lv-surface-dark:   #0D1B4B;
  --lv-surface-light:  #F0F4FF;
  --lv-body:           #2D3748;
  --lv-muted:          #718096;
  --lv-border:         #E2E8F0;
  --lv-light:          #F0F4FF;
  --lv-bg:             #F8FAFF;
  --lv-white:          #FFFFFF;

  --lv-shadow-sm:      0 2px 8px rgba(27,62,170,0.08);
  --lv-shadow-md:      0 4px 20px rgba(27,62,170,0.12);
  --lv-shadow-lg:      0 8px 40px rgba(27,62,170,0.18);
  --lv-shadow-card:    0 2px 12px rgba(13,27,75,0.10);
  --lv-shadow-hover:   0 8px 32px rgba(27,62,170,0.22);

  --lv-font-body:      'Inter', sans-serif;
  --lv-font-heading:   'Poppins', sans-serif;
  --lv-radius:         10px;
  --lv-radius-lg:      16px;
  --lv-radius-xl:      24px;
  --lv-transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --lv-transition-fast: all 0.15s ease;
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }

html { scrollbar-gutter: stable; }

body {
  font-family: var(--lv-font-body);
  font-size: 15px;
  color: var(--lv-body);
  background-color: var(--lv-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--lv-font-heading);
  color: var(--lv-dark);
  font-weight: 700;
  line-height: 1.25;
}

a { color: var(--lv-primary); text-decoration: none; transition: var(--lv-transition-fast); }
a:hover { color: var(--lv-accent); }
img { max-width: 100%; height: auto; }

/* === Brand Mark ◆ === */
.lv-mark::before {
  content: '◆';
  color: var(--lv-accent);
  font-size: 0.65em;
  margin-right: 8px;
}

/* === Section Headings === */
.lv-section-title {
  font-family: var(--lv-font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--lv-dark);
  margin-bottom: 0.5rem;
}

.lv-section-title em {
  font-style: normal;
  position: relative;
  display: inline-block;
}

.lv-section-title em::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--lv-accent), var(--lv-gold));
  border-radius: 2px;
}

.lv-section-subtitle {
  color: var(--lv-muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.lv-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* === Layout === */
.lv-section { padding: 4rem 0; }
.lv-section--dark { background-color: var(--lv-dark); color: var(--lv-white); }
.lv-section--light { background-color: var(--lv-surface-light); }
.lv-section--white { background-color: var(--lv-white); }

/* === Mobile nav switchers (light background override) === */
.lv-nav-switchers .lv-topbar-pick {
  color: var(--lv-muted);
  font-size: 13px;
}
.lv-nav-switchers .lv-topbar-pick:hover,
.lv-nav-switchers .lv-topbar-pick.show { color: var(--lv-primary); }
.lv-nav-switchers .lv-topbar-dropdown {
  background: #fff !important;
  border: 1px solid var(--lv-border) !important;
  box-shadow: var(--lv-shadow-md) !important;
}
.lv-nav-switchers .lv-topbar-dropdown .dropdown-item { color: var(--lv-dark); }
.lv-nav-switchers .lv-topbar-dropdown .dropdown-item:hover {
  background: rgba(27,62,170,0.07);
  color: var(--lv-primary);
}
.lv-nav-switchers .lv-phone-dropdown {
  background: #fff !important;
  border: 1px solid var(--lv-border) !important;
  box-shadow: var(--lv-shadow-md) !important;
}
.lv-nav-switchers .lv-phone-dropdown .dropdown-item { color: var(--lv-dark); }
.lv-nav-switchers .lv-phone-dropdown .dropdown-item:hover {
  background: rgba(27,62,170,0.07);
  color: var(--lv-primary);
}
.lv-nav-switchers__phone {
  font-size: 13px;
  font-weight: 600;
  color: var(--lv-dark);
  text-decoration: none;
  white-space: nowrap;
}
.lv-nav-switchers__phone:hover { color: var(--lv-primary); }
.lv-phone-main {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: none;
}
.lv-phone-main:hover { color: inherit; opacity: 0.85; }
.lv-phone-dropdown { min-width: 190px; font-size: 13px; }

/* === Top Bar === */
.lv-topbar {
  background: var(--lv-surface-dark);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  padding: 7px 0;
}
.lv-topbar a { color: rgba(255,255,255,0.7); }
.lv-topbar a:hover { color: var(--lv-gold); }

/* Currency / Language picks in topbar — plain text, no border */
.lv-topbar-pick {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  font-weight: 500;
  font-family: var(--lv-font-body);
  padding: 0 2px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: color .15s;
  line-height: 1;
}
.lv-topbar-pick:hover,
.lv-topbar-pick.show { color: rgba(255,255,255,0.95); }
.lv-topbar-pick::after {
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-left: .3em solid transparent;
  opacity: .5;
}
.lv-topbar-pick__flag { height: 12px; width: auto; border-radius: 1px; opacity: .85; }
.lv-topbar-pick__sym { color: var(--lv-gold); font-weight: 700; }
.lv-topbar-dropdown {
  border-radius: 10px !important;
  min-width: 130px;
  padding: 6px;
  background: var(--lv-surface-dark) !important;
  margin-top: 6px !important;
}
.lv-topbar-dropdown.show {
  animation: lvTopbarIn .18s ease;
}
@keyframes lvTopbarIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lv-topbar-dropdown .dropdown-item {
  border-radius: 6px;
  font-size: 12px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.75);
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: color .15s, background .15s;
}
.lv-topbar-dropdown .dropdown-item:hover {
  background: rgba(255,255,255,0.08);
  color: white;
}

/* === Header navbar dropdowns (account, nav categories) === */
.lv-header .dropdown-menu {
  background: #ffffff !important;
  color: var(--lv-dark) !important;
  border: none;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(13,27,75,0.13), 0 2px 8px rgba(13,27,75,0.07);
  padding: 8px;
  margin-top: 8px;
  animation: lv-dropdown-in .18s ease;
}
@keyframes lv-dropdown-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lv-header .dropdown-item {
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--lv-dark);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .15s, color .15s;
}
.lv-header .dropdown-item:hover,
.lv-header .dropdown-item:focus {
  background: rgba(27,62,170,0.07);
  color: var(--lv-primary);
}
.lv-header .dropdown-item i { font-size: 15px; opacity: .7; }
.lv-header .dropdown-divider { margin: 4px 0; opacity: .12; }
/* Icon buttons (account, wishlist) */
.lv-icon-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--lv-bg);
  border: none;
  color: var(--lv-dark);
  font-size: 18px;
  cursor: pointer;
  transition: background .15s, color .15s;
  text-decoration: none;
}
.lv-icon-btn:hover { background: rgba(27,62,170,0.12); color: var(--lv-primary); }
.lv-icon-btn { position: relative; }
.lv-icon-btn__badge {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 16px; height: 16px;
  border-radius: 8px;
  background: var(--lv-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  padding: 0 3px;
}
/* Mobile: icon-only buttons (wishlist, compare) in nav switchers row */
.lv-mobile-icon-btn {
  position: relative;
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--lv-border);
  color: var(--lv-dark);
  font-size: 16px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background .15s, color .15s;
}
.lv-mobile-icon-btn:hover { background: rgba(27,62,170,0.07); color: var(--lv-primary); }

/* Mobile: wishlist + compare links */
.lv-mobile-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--lv-dark);
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid var(--lv-border);
  white-space: nowrap;
}
.lv-mobile-action-btn:hover { color: var(--lv-primary); border-color: var(--lv-primary); }
.lv-mobile-action-btn__badge {
  background: var(--lv-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 8px;
  padding: 1px 5px;
}

/* Mobile search bar (separate collapse below navbar) */
.lv-mobile-search-bar {
  background: var(--lv-white);
  border-bottom: 1px solid var(--lv-border);
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}


/* === Header / Navbar === */
.lv-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--lv-white);
  box-shadow: var(--lv-shadow-sm);
}

.lv-navbar-inner { padding-top: 14px; padding-bottom: 14px; }

/* Desktop: wrapper is transparent for flex layout */
.lv-navbar-row { display: contents; }

/* Mobile: wrapper locks top row — no wrap regardless of logo width */
@media (max-width: 991.98px) {
  /* Move vertical padding from container to logo row so collapse starts flush below it */
  .lv-navbar-inner { padding-top: 0; padding-bottom: 0; }
  .lv-navbar-row {
    display: flex;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
    min-width: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

/* Desktop: compensate for SVG right-space removal */
@media (min-width: 992px) {
  .lv-logo { margin-right: 2rem; }
}
/* Mobile: logo shrinks, no extra margin */
@media (max-width: 991.98px) {
  .navbar-brand.lv-logo { margin-right: 0; }
}

/* Logo */
.lv-logo {
  font-family: var(--lv-font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--lv-dark);
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
}
.lv-logo img { max-width: 150px; max-width: min(150px, 100%); height: 36px; width: auto; }
.lv-logo:hover { color: var(--lv-dark); }
.lv-logo__diamond {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--lv-accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.lv-logo em {
  font-style: normal;
  color: var(--lv-accent);
}

/* Nav links */
.lv-nav-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--lv-dark) !important;
  padding: 0.5rem 1rem !important;
  border-radius: var(--lv-radius);
  transition: var(--lv-transition-fast);
  white-space: nowrap;
}
.lv-nav-link:hover,
.lv-nav-link.active {
  color: var(--lv-accent) !important;
  background: rgba(245,64,10,0.06);
}
.lv-nav-more-count {
  font-size: 11px;
  font-weight: 700;
  color: var(--lv-accent);
}

/* Search */
.lv-search-wrap { position: relative; }
.lv-search-input {
  border: 2px solid var(--lv-border);
  border-radius: 50px;
  padding: 8px 20px 8px 44px;
  font-size: 14px;
  width: 260px;
  background: var(--lv-bg);
  transition: var(--lv-transition);
  font-family: var(--lv-font-body);
}
.lv-search-input:focus {
  border-color: var(--lv-primary);
  background: var(--lv-white);
  outline: none;
  box-shadow: 0 0 0 4px rgba(27,62,170,0.1);
  width: 300px;
}
/* Nested submenu in "Ще" dropdown */
.dropdown-submenu:hover > .dropdown-menu { display: block; }
.lv-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--lv-muted);
  pointer-events: none;
  font-size: 16px;
}

/* Cart button */
.lv-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lv-primary);
  color: white !important;
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--lv-transition);
  flex-shrink: 0;
  white-space: nowrap;
  text-decoration: none;
}
.lv-cart-btn:hover {
  background: var(--lv-accent);
  transform: translateY(-1px);
  box-shadow: var(--lv-shadow-md);
}
.lv-cart-count {
  background: var(--lv-gold);
  color: #7B4F00;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* === Buttons === */
.btn-lv-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lv-primary);
  color: white;
  border: 2px solid var(--lv-primary);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700; font-size: 15px;
  transition: var(--lv-transition);
  cursor: pointer;
}
.btn-lv-primary:hover {
  background: var(--lv-primary-dark);
  border-color: var(--lv-primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--lv-shadow-lg);
}

.btn-lv-accent {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lv-accent);
  color: white;
  border: 2px solid var(--lv-accent);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700; font-size: 15px;
  transition: var(--lv-transition);
  cursor: pointer;
}
.btn-lv-accent:hover {
  background: var(--lv-accent-dark);
  border-color: var(--lv-accent-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,64,10,0.4);
}

.btn-lv-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--lv-primary);
  border: 2px solid var(--lv-primary);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600; font-size: 15px;
  transition: var(--lv-transition);
  cursor: pointer;
}
.btn-lv-outline:hover {
  background: var(--lv-primary);
  color: white;
  transform: translateY(-2px);
}

.btn-lv-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600; font-size: 15px;
  transition: var(--lv-transition);
  cursor: pointer;
}
.btn-lv-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: white;
  color: white;
}

.btn-lv-buy {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--lv-accent) 0%, #FF8C00 100%);
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 800; font-size: 16px;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 20px rgba(245,64,10,0.35);
  transition: var(--lv-transition);
  cursor: pointer;
}
.btn-lv-buy:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(245,64,10,0.5);
  color: white;
}

.btn-lv-demo {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--lv-primary);
  border: 2px solid var(--lv-primary);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700; font-size: 15px;
  transition: var(--lv-transition);
  cursor: pointer;
}
.btn-lv-demo:hover {
  background: var(--lv-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--lv-shadow-md);
}

/* === Hero Slider === */
.lv-hero { position: relative; overflow: hidden; }

/* Simple banner slideshow image */
.lv-slideshow__img {
  display: block;
  width: 100%;
  height: auto;
}

.lv-hero .carousel-item {
  min-height: 560px;
  position: relative;
}

.lv-slide {
  width: 100%;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.lv-slide--1 { background: linear-gradient(135deg, #0D1B4B 0%, #1B3EAA 60%, #2E57D4 100%); }
.lv-slide--2 { background: linear-gradient(135deg, #1a0a00 0%, #8B2500 60%, #F5400A 100%); }
.lv-slide--3 { background: linear-gradient(135deg, #001A10 0%, #00633A 60%, #00A86B 100%); }

.lv-slide__decor {
  position: absolute;
  right: -80px; top: -80px;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.lv-slide__decor::after {
  content: '';
  position: absolute;
  right: 70px; top: 70px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.lv-slide__content { position: relative; z-index: 2; color: white; }

.lv-slide__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: white;
  margin-bottom: 1.5rem;
}
.lv-slide__eyebrow::before { content: '◆'; color: var(--lv-gold); font-size: 0.6em; }

.lv-slide__title {
  font-family: var(--lv-font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.lv-slide__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 500px;
}
.lv-slide__price {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--lv-gold);
  margin-bottom: 1.5rem;
  line-height: 1;
}
.lv-slide__price s {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-right: 8px;
}
.lv-slide__image {
  animation: lv-float 3.5s ease-in-out infinite;
  position: relative; z-index: 2;
}

@keyframes lv-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

/* Carousel controls */
.carousel-control-prev, .carousel-control-next { width: 60px; }
.carousel-indicators [data-bs-target] {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  transition: var(--lv-transition);
}
.carousel-indicators .active {
  background: var(--lv-gold);
  width: 28px;
  border-radius: 5px;
}

/* === Breadcrumb === */
.lv-breadcrumb {
  background: var(--lv-white);
  padding: 12px 0;
  border-bottom: 1px solid var(--lv-border);
  font-size: 13px;
}
.lv-breadcrumb .breadcrumb-item + .breadcrumb-item::before { content: '›'; color: var(--lv-muted); font-size: 1.1em; }
.lv-breadcrumb .breadcrumb-item a { color: var(--lv-muted); }
.lv-breadcrumb .breadcrumb-item.active { color: var(--lv-dark); font-weight: 600; }

/* === Footer === */
.lv-footer {
  background: var(--lv-surface-dark);
  color: rgba(255,255,255,0.7);
  padding-top: 4rem;
}

.lv-footer__title {
  font-family: var(--lv-font-heading);
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}
.lv-footer__title::before { content: '◆'; color: var(--lv-accent); font-size: 0.6em; }

.lv-footer__desc {
  font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}

.lv-footer__links { list-style: none; padding: 0; margin: 0; }
.lv-footer__links li { margin-bottom: 10px; }
.lv-footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--lv-transition-fast);
}
.lv-footer__links a::before { content: '›'; color: var(--lv-accent); font-size: 1.1em; font-weight: 700; }
.lv-footer__links a:hover { color: white; gap: 10px; }

.lv-footer__contact { list-style: none; padding: 0; margin: 0; }
.lv-footer__contact li {
  display: flex; gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  align-items: flex-start;
}
.lv-footer__contact-icon { color: var(--lv-accent); margin-top: 2px; flex-shrink: 0; }

.lv-social { display: flex; gap: 8px; margin-top: 1.5rem; }
.lv-social__link {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  transition: var(--lv-transition);
}
.lv-social__link:hover {
  background: var(--lv-accent);
  border-color: var(--lv-accent);
  color: white;
  transform: translateY(-3px);
}

.lv-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 0;
  margin-top: 3rem;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* === Utilities === */
.lv-link-more {
  font-size: 14px;
  font-weight: 700;
  color: var(--lv-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--lv-transition-fast);
}
.lv-link-more:hover { color: var(--lv-accent); gap: 8px; }

@keyframes lv-fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lv-animate { animation: lv-fadeInUp 0.55s ease both; }
.lv-delay-1 { animation-delay: 0.1s; }
.lv-delay-2 { animation-delay: 0.2s; }
.lv-delay-3 { animation-delay: 0.3s; }
.lv-delay-4 { animation-delay: 0.4s; }

/* === Responsive === */
@media (max-width: 991px) {
  .lv-search-input { width: 100% !important; }
  .lv-search-input:focus { width: 100% !important; box-shadow: none; }
  .lv-search-wrap { width: 100%; }
  /* Compact cart on mobile — icon-only circle, badge as overlay */
  .lv-cart-btn--sm {
    width: 38px; height: 38px;
    padding: 0; gap: 0;
    border-radius: 50%;
    justify-content: center;
    position: relative;
    font-size: 16px;
  }
  .lv-cart-btn--sm .lv-cart-count {
    position: absolute;
    top: 2px; right: 2px;
    width: 16px; height: 16px;
    font-size: 9px;
  }
}
@media (max-width: 767px) {
  .lv-section { padding: 3rem 0; }
  .lv-slide { min-height: auto; padding: 60px 0; text-align: center; }
  .lv-slide__desc { max-width: 100%; }
  .lv-section-header { flex-direction: column; align-items: flex-start; }
}

/* =====================================================
   OC PAGINATION — адаптер BS3 → lv-стиль
   ===================================================== */
.lv-pagination .pagination,
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.lv-pagination .pagination > li > a,
.lv-pagination .pagination > li > span,
.pagination > li > a,
.pagination > li > span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: var(--lv-radius);
  border: 2px solid var(--lv-border);
  background: #fff;
  color: var(--lv-dark);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}
.lv-pagination .pagination > li > a:hover,
.pagination > li > a:hover {
  background: var(--lv-primary);
  border-color: var(--lv-primary);
  color: #fff;
}
.lv-pagination .pagination > li.active > span,
.pagination > li.active > span {
  background: var(--lv-primary);
  border-color: var(--lv-primary);
  color: #fff;
}
.lv-pagination .pagination > li.disabled > a,
.pagination > li.disabled > a {
  opacity: .4;
  pointer-events: none;
}

/* =====================================================
   lv-toolbar — панель сортування
   ===================================================== */
.lv-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 16px;
  background: var(--lv-light);
  border-radius: var(--lv-radius);
  margin-bottom: 1rem;
}
.lv-toolbar__count {
  font-size: 14px;
  color: var(--lv-muted);
}
.lv-toolbar__count strong {
  color: var(--lv-dark);
}

/* view toggle */
.lv-view-toggle {
  display: flex;
  gap: 4px;
}
.lv-view-btn {
  width: 36px;
  height: 36px;
  border: 2px solid var(--lv-border);
  background: #fff;
  border-radius: var(--lv-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lv-muted);
  cursor: pointer;
  transition: all .2s;
}
.lv-view-btn.active,
.lv-view-btn:hover {
  background: var(--lv-primary);
  border-color: var(--lv-primary);
  color: #fff;
}

/* lv-breadcrumb */
.lv-breadcrumb {
  background: var(--lv-surface-light);
  padding: 10px 0;
  border-bottom: 1px solid var(--lv-border);
}
.lv-breadcrumb .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
}
.lv-breadcrumb .breadcrumb-item a {
  color: var(--lv-primary);
  text-decoration: none;
}
.lv-breadcrumb .breadcrumb-item.active {
  color: var(--lv-muted);
}

/* filter sidebar — hidden on mobile, shown on md+ or when toggled */
.lv-filter-sidebar { display: none; }
@media (min-width: 768px) { .lv-filter-sidebar { display: block; } }
.lv-filter-sidebar.show { display: block; }

/* =====================================================
   CART SUCCESS MODAL
   ===================================================== */
.lv-cart-modal__content {
  border: none;
  border-radius: var(--lv-radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(27,62,170,0.18);
}
@keyframes lv-check-pop {
  0%   { transform: scale(0) rotate(-20deg); opacity: 0; }
  60%  { transform: scale(1.15) rotate(5deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
.lv-cart-modal__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--lv-green, #00a86b);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 2.2rem;
  color: #fff;
  animation: lv-check-pop 0.45s cubic-bezier(.175,.885,.32,1.275) forwards;
}
.lv-cart-modal__title {
  font-family: var(--lv-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lv-dark);
  margin-bottom: 0.4rem;
}
.lv-cart-modal__product {
  color: var(--lv-muted);
  font-size: 14px;
  margin-bottom: 0.5rem;
  min-height: 1.2em;
}
.lv-cart-modal__total {
  font-size: 13px;
  color: var(--lv-muted);
  font-weight: 500;
}

/* =====================================================
   BANNER MODULE
   ===================================================== */
.lv-banner { width: 100%; overflow: hidden; border-radius: var(--lv-radius-lg); }
.lv-banner__img { width: 100%; height: auto; display: block; object-fit: cover; transition: transform .4s ease; }
.lv-banner a:hover .lv-banner__img { transform: scale(1.03); }

/* =====================================================
   CAROUSEL SCROLL MODULE
   ===================================================== */
.lv-carousel-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--lv-border) transparent;
}
.lv-carousel-scroll::-webkit-scrollbar { height: 4px; }
.lv-carousel-scroll::-webkit-scrollbar-thumb { background: var(--lv-border); border-radius: 4px; }
.lv-carousel-scroll__item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  border-radius: var(--lv-radius);
  overflow: hidden;
}
.lv-carousel-scroll__item img { height: 120px; width: auto; display: block; object-fit: cover; }

/* Swiper-based carousel */
.lv-carousel-swiper { width: 100%; }
.lv-carousel-swiper__slide {
  width: 160px !important;
  border-radius: var(--lv-radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lv-carousel-swiper__slide img { height: 80px; width: auto; display: block; object-fit: contain; }

/* =====================================================
   FILTER MODULE — lv-filter-check, lv-filter-cat
   ===================================================== */
.lv-filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  cursor: pointer;
  font-size: 13px;
  color: var(--lv-dark);
}
.lv-filter-check input[type="checkbox"],
.lv-filter-check input[type="radio"] {
  width: 16px; height: 16px;
  accent-color: var(--lv-primary);
  cursor: pointer;
  flex-shrink: 0;
}
.lv-filter-check__label { flex: 1; }
.lv-filter-check__count { font-size: 11px; color: var(--lv-muted); }

.lv-filter-cat {
  display: block;
  padding: 7px 10px;
  border-radius: var(--lv-radius);
  font-size: 14px;
  color: var(--lv-dark);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.lv-filter-cat:hover { background: var(--lv-light); color: var(--lv-primary); }
.lv-filter-cat.active { background: var(--lv-primary); color: #fff; font-weight: 600; }
.lv-filter-cat--child { font-size: 13px; padding: 5px 10px; }
.lv-filter-cat--child.active { background: rgba(27,62,170,.1); color: var(--lv-primary); }

/* btn-lv small modifier */
.btn-lv--sm {
  padding: 7px 18px !important;
  font-size: 13px !important;
  min-height: unset !important;
}

/* ===== st_about module ===== */
.lv-about__inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.lv-about--text_only .lv-about__content { width: 100%; }
.lv-about__media { flex: 0 0 40%; }
.lv-about__content { flex: 1; }
.lv-about__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--lv-dark);
}
.lv-about__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--lv-muted);
  margin-bottom: 1.5rem;
}
.lv-about__stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.lv-about__stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  border-radius: var(--lv-radius);
  background: var(--lv-surface-light);
  flex: 1 1 120px;
  min-width: 100px;
  transition: transform .2s, box-shadow .2s;
}
.lv-about__stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}
.lv-about__stat-icon {
  font-size: 1.6rem;
  color: var(--lv-primary);
  margin-bottom: 8px;
  opacity: .85;
}
.lv-about__stat-value {
  display: block;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--lv-primary);
  line-height: 1;
}
.lv-about__stat-label {
  display: block;
  font-size: 12px;
  color: var(--lv-muted);
  margin-top: 5px;
  line-height: 1.3;
}
/* per-card accent variants */
.lv-about__stat-card--a { background: var(--lv-surface-light); }
.lv-about__stat-card--b { background: color-mix(in srgb, var(--lv-surface-light) 60%, var(--lv-accent) 8%); }
.lv-about__stat-card--c { background: var(--lv-surface-light); }
.lv-about__stat-card--d { background: color-mix(in srgb, var(--lv-surface-light) 60%, var(--lv-accent) 8%); }
.lv-about__stat-card--e { background: var(--lv-surface-light); }
.lv-about__stat-card--f { background: color-mix(in srgb, var(--lv-surface-light) 60%, var(--lv-accent) 8%); }
/* pin wrappers для stat cards поверх photo-grid */
.lv-about__stat-pin { position: absolute; z-index: 10; }
.lv-about__stat-pin--top-left     { top: -40px;   left: 30px;  }
.lv-about__stat-pin--bottom-right { bottom: 20px; right: 20px; }
.lv-about__stat-pin--top-right    { top: 20px;    right: 20px; }
.lv-about__stat-pin--bottom-left  { bottom: 20px; left: 20px;  }
/* скидаємо position з livenza-components.css коли card всередині pin */
.lv-about__stat-pin .lv-about__stat-card,
.lv-about__stat-pin .lv-about__stat-card--a,
.lv-about__stat-pin .lv-about__stat-card--b {
  position: static;
  top: auto; bottom: auto; left: auto; right: auto;
}
.lv-about__photo-single { position: relative; }
.lv-about__photo-single img {
  width: 100%;
  border-radius: var(--lv-radius);
  object-fit: cover;
}
.lv-about__photo-grid {
  position: relative;
  height: 460px;
  overflow: visible;
  isolation: isolate;
}
.lv-about__photo-item {
  position: absolute;
  overflow: hidden;
  border-radius: var(--lv-radius);
}
.lv-about__photo-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* main — за замовчуванням на весь контейнер */
.lv-about__photo-item:nth-child(1) {
  inset: 0;
  z-index: 1;
}

/* спільні стилі додаткових (2+ фото крім 2-photo layout) */
.lv-about__photo-grid:has(.lv-about__photo-item:nth-child(3))
  .lv-about__photo-item:nth-child(n+2) {
  z-index: 2;
  border: 5px solid #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
}

/* ════════════════════════════════
   2 фото: діагональний стек
   головна — правіше й вище (z:2)
   друга   — лівіше й нижче (z:1, під головною)
   ════════════════════════════════ */
.lv-about__photo-grid:has(.lv-about__photo-item:nth-child(2)):not(:has(.lv-about__photo-item:nth-child(3)))
  .lv-about__photo-item:nth-child(1) {
  inset: auto;
  top: 0; right: 0; bottom: auto; left: auto;
  width: 76%; height: 84%;
  z-index: 1;
}
.lv-about__photo-grid:has(.lv-about__photo-item:nth-child(2)):not(:has(.lv-about__photo-item:nth-child(3)))
  .lv-about__photo-item:nth-child(2) {
  bottom: -20px; left: -40px;
  width: 56%; height: 61%;
  z-index: 2;
  border: 5px solid #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
}

/* ── 2 додаткових: зліва + справа ── */
.lv-about__photo-grid:has(.lv-about__photo-item:nth-child(3)):not(:has(.lv-about__photo-item:nth-child(4)))
  .lv-about__photo-item:nth-child(2) {
  left: -60px; top: 60px;
  width: 48%; height: 52%;
}
.lv-about__photo-grid:has(.lv-about__photo-item:nth-child(3)):not(:has(.lv-about__photo-item:nth-child(4)))
  .lv-about__photo-item:nth-child(3) {
  right: -60px; bottom: 70px;
  width: 46%; height: 50%;
}

/* ── 3 додаткових: зліва + справа + знизу ── */
.lv-about__photo-grid:has(.lv-about__photo-item:nth-child(4))
  .lv-about__photo-item:nth-child(2) {
  left: -60px; top: 45px;
  width: 46%; height: 50%;
}
.lv-about__photo-grid:has(.lv-about__photo-item:nth-child(4))
  .lv-about__photo-item:nth-child(3) {
  right: -60px; top: 60px;
  width: 44%; height: 47%;
}
.lv-about__photo-grid:has(.lv-about__photo-item:nth-child(4))
  .lv-about__photo-item:nth-child(4) {
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 50%; height: 38%;
  z-index: 3;
}

@media (max-width: 767px) {
  .lv-about__photo-grid { height: 300px; overflow: hidden; }
  .lv-about__photo-item:nth-child(3),
  .lv-about__photo-item:nth-child(4) { display: none; }
}
.lv-about__photo-label {
  display: block;
  font-size: 12px;
  color: var(--lv-muted);
  text-align: center;
  margin-top: 4px;
}
@media (max-width: 767px) {
  .lv-about__inner { flex-direction: column; }
  .lv-about__media { width: 100%; overflow: hidden; }
  .lv-about__stats { gap: 8px; }
  .lv-about__stat-card { padding: 14px 10px; flex: 1 1 90px; }
}

/* ===== Color Schemes ===== */
/* default = navy blue, defined in :root */

body.lv-scheme--ocean {
  --lv-primary:        #1565C0;
  --lv-primary-dark:   #0D47A1;
  --lv-primary-light:  #1E88E5;
  --lv-accent:         #FF6F00;
  --lv-accent-dark:    #E65100;
  --lv-surface-dark:   #0a2d6e;
  --lv-surface-light:  #EBF4FF;
  --lv-bg:             #F0F7FF;
}
body.lv-scheme--indigo {
  --lv-primary:        #4338CA;
  --lv-primary-dark:   #3730A3;
  --lv-primary-light:  #6366F1;
  --lv-accent:         #F59E0B;
  --lv-accent-dark:    #D97706;
  --lv-surface-dark:   #1e1a5e;
  --lv-surface-light:  #EEECFF;
  --lv-bg:             #F5F4FF;
}
body.lv-scheme--violet {
  --lv-primary:        #7C3AED;
  --lv-primary-dark:   #6D28D9;
  --lv-primary-light:  #8B5CF6;
  --lv-accent:         #EC4899;
  --lv-accent-dark:    #DB2777;
  --lv-surface-dark:   #2e1065;
  --lv-surface-light:  #F3EEFF;
  --lv-bg:             #FAF5FF;
}
body.lv-scheme--rose {
  --lv-primary:        #E11D48;
  --lv-primary-dark:   #BE123C;
  --lv-primary-light:  #F43F5E;
  --lv-accent:         #0EA5E9;
  --lv-accent-dark:    #0284C7;
  --lv-surface-dark:   #4c0519;
  --lv-surface-light:  #FFF0F3;
  --lv-bg:             #FFF5F7;
}
body.lv-scheme--crimson {
  --lv-primary:        #B91C1C;
  --lv-primary-dark:   #991B1B;
  --lv-primary-light:  #DC2626;
  --lv-accent:         #D97706;
  --lv-accent-dark:    #B45309;
  --lv-surface-dark:   #450a0a;
  --lv-surface-light:  #FFF1F1;
  --lv-bg:             #FFF5F5;
}
body.lv-scheme--emerald {
  --lv-primary:        #059669;
  --lv-primary-dark:   #047857;
  --lv-primary-light:  #10B981;
  --lv-accent:         #F59E0B;
  --lv-accent-dark:    #D97706;
  --lv-surface-dark:   #022c22;
  --lv-surface-light:  #ECFDF5;
  --lv-bg:             #F2FDF8;
}
body.lv-scheme--teal {
  --lv-primary:        #0D9488;
  --lv-primary-dark:   #0F766E;
  --lv-primary-light:  #14B8A6;
  --lv-accent:         #F97316;
  --lv-accent-dark:    #EA580C;
  --lv-surface-dark:   #042f2e;
  --lv-surface-light:  #F0FDFA;
  --lv-bg:             #F2FDFB;
}
body.lv-scheme--amber {
  --lv-primary:        #D97706;
  --lv-primary-dark:   #B45309;
  --lv-primary-light:  #F59E0B;
  --lv-accent:         #1D4ED8;
  --lv-accent-dark:    #1E40AF;
  --lv-surface-dark:   #2d1a00;
  --lv-surface-light:  #FFFBEB;
  --lv-bg:             #FFFDF0;
}
body.lv-scheme--slate {
  --lv-primary:        #334155;
  --lv-primary-dark:   #1E293B;
  --lv-primary-light:  #475569;
  --lv-accent:         #0EA5E9;
  --lv-accent-dark:    #0284C7;
  --lv-surface-dark:   #0f172a;
  --lv-surface-light:  #F1F5F9;
  --lv-bg:             #F6F8FB;
}

/* — Home goods (warm & cozy) — */
body.lv-scheme--terracotta {
  --lv-primary:        #C2623F;
  --lv-primary-dark:   #A04E2E;
  --lv-primary-light:  #D97B56;
  --lv-accent:         #5F7A58;
  --lv-accent-dark:    #4A6044;
  --lv-surface-dark:   #2e1509;
  --lv-surface-light:  #FDF3EE;
  --lv-bg:             #FDF7F4;
}
body.lv-scheme--walnut {
  --lv-primary:        #7B4F2E;
  --lv-primary-dark:   #5E3A1F;
  --lv-primary-light:  #9B6840;
  --lv-accent:         #C2623F;
  --lv-accent-dark:    #A04E2E;
  --lv-surface-dark:   #1e0f07;
  --lv-surface-light:  #FAF3EC;
  --lv-bg:             #FAF6F2;
}
body.lv-scheme--sage {
  --lv-primary:        #5F7A58;
  --lv-primary-dark:   #4A6044;
  --lv-primary-light:  #7A9872;
  --lv-accent:         #C2623F;
  --lv-accent-dark:    #A04E2E;
  --lv-surface-dark:   #1a2418;
  --lv-surface-light:  #F2F6EF;
  --lv-bg:             #F5F8F3;
}

/* — Побутова техніка (tech & clean) — */
body.lv-scheme--carbon {
  --lv-primary:        #374151;
  --lv-primary-dark:   #1F2937;
  --lv-primary-light:  #4B5563;
  --lv-accent:         #06B6D4;
  --lv-accent-dark:    #0891B2;
  --lv-surface-dark:   #080f17;
  --lv-surface-light:  #F3F4F6;
  --lv-bg:             #F6F7F8;
}
body.lv-scheme--steel {
  --lv-primary:        #1A5FAD;
  --lv-primary-dark:   #134A8A;
  --lv-primary-light:  #2478CF;
  --lv-accent:         #06B6D4;
  --lv-accent-dark:    #0891B2;
  --lv-surface-dark:   #071428;
  --lv-surface-light:  #EBF3FC;
  --lv-bg:             #F0F5FB;
}
body.lv-scheme--electric {
  --lv-primary:        #0047CC;
  --lv-primary-dark:   #0035A0;
  --lv-primary-light:  #1A5CE8;
  --lv-accent:         #00C2B8;
  --lv-accent-dark:    #009E96;
  --lv-surface-dark:   #00091f;
  --lv-surface-light:  #EBF0FF;
  --lv-bg:             #F0F3FF;
}

/* — Косметика — */
body.lv-scheme--blush {
  --lv-primary:        #C47FA0;
  --lv-primary-dark:   #A8628A;
  --lv-primary-light:  #D99AB8;
  --lv-accent:         #B8A07A;
  --lv-accent-dark:    #9A8260;
  --lv-surface-dark:   #3d1a2e;
  --lv-surface-light:  #FEF4F8;
  --lv-bg:             #FEF7FA;
}
body.lv-scheme--berry {
  --lv-primary:        #7B2D8B;
  --lv-primary-dark:   #5E1F6E;
  --lv-primary-light:  #9C42AC;
  --lv-accent:         #E91E8C;
  --lv-accent-dark:    #C01575;
  --lv-surface-dark:   #220a2a;
  --lv-surface-light:  #F9EFFE;
  --lv-bg:             #FBF4FE;
}
body.lv-scheme--nude {
  --lv-primary:        #A87054;
  --lv-primary-dark:   #8A5640;
  --lv-primary-light:  #C28B6A;
  --lv-accent:         #7B2D8B;
  --lv-accent-dark:    #5E1F6E;
  --lv-surface-dark:   #241208;
  --lv-surface-light:  #FBF4EF;
  --lv-bg:             #FCF8F5;
}

/* ============================================
   livenza-components.css (merged)
   ============================================ */
/* ============================================
   LIVENZA — Components
   Product cards, badges, categories, filters,
   product detail, checkout, blog, etc.
   ============================================ */

/* ============================================
   ST Slideshow / Hero Slider
   ============================================ */

/* === Section wrapper === */
.lv-hero { position: relative; overflow: hidden; }
.lv-ss--in_container  { padding: 2rem 0; }
.lv-ss--with_banner   { padding: 2rem 0; }

/* === Swiper reset for hero === */
.lv-ss__swiper { overflow: hidden; }
/* Fixed height only for st_slideshow (section always has lv-ss--* class) */
[class*="lv-ss--"] .lv-ss__swiper { height: 560px; }
.lv-ss--in_container .lv-ss__swiper,
.lv-ss--with_banner  .lv-ss__swiper {
  border-radius: var(--lv-radius-xl);
  box-shadow: var(--lv-shadow-lg);
}

/* === Slide === */
.lv-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Color variants */
.lv-slide--default { background: linear-gradient(135deg, color-mix(in srgb, var(--lv-primary) 35%, #000) 0%, var(--lv-primary) 60%, color-mix(in srgb, var(--lv-primary) 70%, #fff) 100%); }
.lv-slide--navy   { background: linear-gradient(135deg, #0D1B4B 0%, #1B3EAA 60%, #2E57D4 100%); }
.lv-slide--coral  { background: linear-gradient(135deg, #1a0a00 0%, #8B2500 60%, #F5400A 100%); }
.lv-slide--eco    { background: linear-gradient(135deg, #001A10 0%, #00633A 60%, #00A86B 100%); }
.lv-slide--dark   { background: linear-gradient(135deg, #0a0a0a 0%, #1c1c1e 60%, #2e2e30 100%); }
.lv-slide--light  { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 60%, #dee2e6 100%); }
.lv-slide--purple { background: linear-gradient(135deg, #1a0033 0%, #5b1fa0 60%, #8b3fcc 100%); }
.lv-slide--amber  { background: linear-gradient(135deg, #2a1500 0%, #b35c00 60%, #f5a623 100%); }
.lv-slide--teal   { background: linear-gradient(135deg, #001a1a 0%, #00706e 60%, #00b3af 100%); }
.lv-slide--slate  { background: linear-gradient(135deg, #1a1f2e 0%, #3d4a63 60%, #5d6e8a 100%); }

/* Decorative circle */
.lv-slide__decor {
  position: absolute;
  right: -80px; top: -80px;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.lv-slide__decor::after {
  content: '';
  position: absolute;
  right: 70px; top: 70px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

/* Content */
.lv-slide__content { position: relative; z-index: 2; color: white; }

.lv-slide__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: white;
  margin-bottom: 1.25rem;
}
.lv-slide__eyebrow::before {
  content: '◆';
  color: var(--lv-gold);
  font-size: 0.6em;
}

.lv-slide__title {
  font-family: var(--lv-font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.lv-slide__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.lv-slide__price {
  font-family: var(--lv-font-heading);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--lv-gold);
  margin-bottom: 1.5rem;
  line-height: 1;
}
.lv-slide__price s {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-right: 8px;
}

/* Product image */
.lv-slide__image {
  max-height: 420px;
  width: auto;
  animation: lv-float 3.5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes lv-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

/* === CTA buttons === */
.btn-lv-accent {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lv-accent);
  color: white;
  border: 2px solid var(--lv-accent);
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--lv-font-heading);
  font-weight: 700; font-size: 15px;
  text-decoration: none;
  transition: var(--lv-transition);
}
.btn-lv-accent:hover {
  background: var(--lv-accent-dark);
  border-color: var(--lv-accent-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,64,10,0.4);
}

.btn-lv-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--lv-font-heading);
  font-weight: 600; font-size: 15px;
  text-decoration: none;
  transition: var(--lv-transition);
}
.btn-lv-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: white;
  color: white;
}

/* === Swiper navigation arrows === */
.lv-ss__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--lv-transition);
  line-height: 1;
}
.lv-ss__arrow::after,
.lv-ss__arrow::before { display: none !important; } /* скидаємо дефолтні іконки swiper */
.lv-ss__arrow { --swiper-navigation-size: 0; background-image: none; }
.lv-ss__arrow--prev { left: 1.25rem; }
.lv-ss__arrow--next { right: 1.25rem; }
.lv-ss__arrow:hover {
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-50%) scale(1.08);
}

/* === Swiper pagination === */
.lv-ss__pagination.swiper-pagination { bottom: 1.25rem; }
.lv-ss__pagination .swiper-pagination-bullet {
  width: 10px; height: 10px;
  background: rgba(255,255,255,0.45);
  opacity: 1;
  border: none;
  transition: var(--lv-transition-fast);
  margin: 0 4px !important;
}
.lv-ss__pagination .swiper-pagination-bullet-active {
  background: white;
  width: 28px;
  border-radius: 5px;
}

/* === With-banner side banners === */
.lv-ss__banner {
  display: block;
  border-radius: var(--lv-radius-lg);
  overflow: hidden;
  box-shadow: var(--lv-shadow-card);
  transition: var(--lv-transition);
  min-height: 0;
}
.lv-ss__banner:hover {
  box-shadow: var(--lv-shadow-hover);
  transform: translateY(-4px);
}
.lv-ss__banner-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* === Responsive === */
@media (max-width: 991px) {
  [class*="lv-ss--"] .lv-ss__swiper { height: auto; }
  .lv-slide { height: auto; padding: 60px 0; }
}
@media (max-width: 575px) {
  .lv-slide { padding: 48px 0 56px; }
  .lv-slide__desc { display: none; }
  .btn-lv-accent, .btn-lv-ghost { font-size: 13px; padding: 9px 18px; }
}


/* === Badges === */
.lv-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  white-space: nowrap;
}
.lv-badge--sale    { background: linear-gradient(135deg,#F5400A,#FF6B00); color:white; box-shadow: 0 2px 8px rgba(245,64,10,0.45); }
.lv-badge--new     { background: linear-gradient(135deg,#1B3EAA,#2E57D4); color:white; box-shadow: 0 2px 8px rgba(27,62,170,0.45); }
.lv-badge--hot     { background: linear-gradient(135deg,#E53E3E,#FC8181); color:white; box-shadow: 0 2px 8px rgba(229,62,62,0.45); }
.lv-badge--popular { background: linear-gradient(135deg,#805AD5,#B794F4); color:white; box-shadow: 0 2px 8px rgba(128,90,213,0.45); }
.lv-badge--hit     { background: linear-gradient(135deg,#FFB300,#FFD54F); color:#7B4F00; box-shadow: 0 2px 8px rgba(255,179,0,0.45); }
.lv-badge--promo   { background: linear-gradient(135deg,#00A86B,#38A169); color:white; box-shadow: 0 2px 8px rgba(0,168,107,0.45); }

/* === Product Card === */
.lv-card {
  background: var(--lv-white);
  border-radius: var(--lv-radius-lg);
  overflow: hidden;
  border: 2px solid var(--lv-border);
  box-shadow: var(--lv-shadow-card);
  transition: var(--lv-transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.lv-card:hover {
  border-color: var(--lv-primary);
  box-shadow: var(--lv-shadow-hover);
  transform: translateY(-6px);
}

.lv-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--lv-light);
  flex-shrink: 0;
}
.lv-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.lv-card:hover .lv-card__img { transform: scale(1.08); }

.lv-card__badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 6px;
  z-index: 2;
}

.lv-card__actions {
  position: absolute;
  top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0;
  transform: translateX(16px);
  transition: var(--lv-transition);
  z-index: 2;
}
.lv-card:hover .lv-card__actions { opacity: 1; transform: translateX(0); }

.lv-card__action-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: white;
  border: none;
  box-shadow: var(--lv-shadow-md);
  color: var(--lv-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: var(--lv-transition-fast);
}
.lv-card__action-btn:hover { background: var(--lv-accent); color: white; }

.lv-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.lv-card__category {
  font-size: 11px; font-weight: 700;
  color: var(--lv-primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}
.lv-card__title {
  font-size: 1rem; font-weight: 700;
  color: var(--lv-dark);
  margin-bottom: 8px;
  line-height: 1.35;
  flex: 1;
}
.lv-card__title a { color: inherit; }
.lv-card__title a:hover { color: var(--lv-primary); }

.lv-card__rating {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 12px; font-size: 13px;
}
.lv-card__stars { color: var(--lv-gold); font-size: 12px; }
.lv-card__rating-count { color: var(--lv-muted); font-size: 12px; }

.lv-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--lv-border);
}
.lv-card__price {
  font-family: var(--lv-font-heading);
  font-size: 1.35rem; font-weight: 800;
  color: var(--lv-dark);
}
.lv-card__price-old {
  font-size: 12px; font-weight: 400;
  color: var(--lv-muted);
  text-decoration: line-through;
  margin-left: 4px;
}

.lv-card__add-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--lv-primary);
  color: white;
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: var(--lv-transition);
  flex-shrink: 0;
}
.lv-card__add-btn:hover {
  background: var(--lv-accent);
  transform: scale(1.1) rotate(90deg);
}

/* === Features Bar === */
.lv-feature {
  display: flex; gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: var(--lv-radius-lg);
  transition: var(--lv-transition);
}
.lv-feature:hover { background: var(--lv-white); box-shadow: var(--lv-shadow-md); }

.lv-feature__icon {
  width: 56px; height: 56px;
  border-radius: var(--lv-radius);
  background: var(--lv-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--lv-primary);
  flex-shrink: 0;
  transition: var(--lv-transition);
}
.lv-feature:hover .lv-feature__icon {
  background: var(--lv-primary);
  color: white;
  transform: scale(1.1);
}
.lv-feature__title { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.lv-feature__desc  { font-size: 13px; color: var(--lv-muted); line-height: 1.5; }

@media (max-width: 575px) {
  .lv-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 0.75rem;
  }
  .lv-feature__icon { width: 44px; height: 44px; font-size: 1.25rem; }
}

/* === Category Cards === */
.lv-cat-card {
  position: relative;
  border-radius: var(--lv-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: block;
  cursor: pointer;
}
.lv-cat-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.lv-cat-card:hover .lv-cat-card__img { transform: scale(1.1); }

.lv-cat-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(13,27,75,0.85) 0%, rgba(13,27,75,0.2) 55%, transparent 100%);
  transition: var(--lv-transition);
}
.lv-cat-card:hover .lv-cat-card__overlay {
  background: linear-gradient(0deg, rgba(13,27,75,0.9) 0%, rgba(27,62,170,0.45) 55%, transparent 100%);
}

.lv-cat-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
}
.lv-cat-card__title { font-size: 1.2rem; font-weight: 800; color: white; margin-bottom: 4px; }
.lv-cat-card__count {
  font-size: 13px; color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 6px;
}
.lv-cat-card__count::before { content: '◆'; color: var(--lv-gold); font-size: 0.5em; }

.lv-cat-card__arrow {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  opacity: 0; transform: scale(0.8);
  transition: var(--lv-transition);
}
.lv-cat-card:hover .lv-cat-card__arrow { opacity: 1; transform: scale(1); }

/* === Sale Banner === */
.lv-sale-banner {
  background: linear-gradient(135deg, var(--lv-dark) 0%, var(--lv-primary) 50%, var(--lv-accent) 100%);
  border-radius: var(--lv-radius-xl);
  padding: 3rem;
  color: white;
  position: relative;
  overflow: hidden;
}
.lv-sale-banner::before {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 260px; height: 260px;
  border-radius: 50%; background: rgba(255,255,255,0.05);
}
.lv-sale-banner::after {
  content: '';
  position: absolute; bottom: -70px; right: 90px;
  width: 200px; height: 200px;
  border-radius: 50%; background: rgba(255,255,255,0.04);
}
.lv-sale-tag {
  display: inline-block;
  background: white;
  color: var(--lv-accent);
  font-family: var(--lv-font-heading);
  font-size: 3.5rem; font-weight: 900;
  padding: 8px 24px;
  border-radius: var(--lv-radius);
  transform: rotate(-2deg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  line-height: 1;
}

.lv-sale-banner__heading {
  font-family: var(--lv-font-heading);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 900;
  color: white;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.lv-sale-banner__heading em { color: var(--lv-gold); }
.lv-sale-banner__heading em::after { display: none; }
.lv-sale-banner__desc { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 1.5rem; }
.lv-sale-banner__actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.lv-sale-banner__img { width: 100%; max-width: 400px; }
.lv-sale-countdown { display: flex; align-items: center; gap: 6px; font-size: 13px; color: white; }
.lv-sale-countdown__icon { color: var(--lv-gold); }
.lv-sale-countdown__label { opacity: .85; }
.lv-sale-countdown__timer { color: var(--lv-gold); font-size: 15px; }
@media (max-width: 767px) {
  .lv-sale-banner { padding: 2rem; overflow: hidden; }
  .lv-sale-tag { font-size: 2.5rem; }
}

/* === Blog Card === */
.lv-blog-card {
  background: var(--lv-white);
  border-radius: var(--lv-radius-lg);
  overflow: hidden;
  border: 2px solid var(--lv-border);
  box-shadow: var(--lv-shadow-card);
  transition: var(--lv-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.lv-blog-card:hover { border-color: var(--lv-primary); box-shadow: var(--lv-shadow-hover); transform: translateY(-4px); }

.lv-blog-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
}
.lv-blog-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.lv-blog-card:hover .lv-blog-card__img { transform: scale(1.06); }

.lv-blog-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.lv-blog-card__category {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--lv-accent);
  background: rgba(245,64,10,0.08);
  padding: 3px 10px; border-radius: 50px;
  margin-bottom: 10px;
}
.lv-blog-card__title { font-size: 1rem; font-weight: 700; color: var(--lv-dark); margin-bottom: 8px; line-height: 1.4; flex: 1; }
.lv-blog-card__title a { color: inherit; }
.lv-blog-card__title a:hover { color: var(--lv-primary); }
.lv-blog-card__excerpt { font-size: 13px; color: var(--lv-muted); margin-bottom: 14px; line-height: 1.6; }
.lv-blog-card__meta { display: flex; gap: 12px; font-size: 12px; color: var(--lv-muted); margin-top: auto; padding-top: 12px; border-top: 1px solid var(--lv-border); }

/* === Blog module in sidebar (column-left / column-right) === */
#column-right section.lv-section,
#column-left section.lv-section {
  background: var(--lv-white);
  border-radius: var(--lv-radius-lg);
  border: 2px solid var(--lv-border);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
#column-right .lv-section .container,
#column-left .lv-section .container { padding: 0; max-width: none; width: 100%; }

#column-right .lv-section-header,
#column-left .lv-section-header {
  font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--lv-dark); margin-bottom: 1rem; padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--lv-border);
  justify-content: flex-start; gap: 8px;
}
#column-right .lv-section-title,
#column-left .lv-section-title { font-size: 13px !important; font-weight: 800 !important; margin: 0; }
#column-right .lv-section-title.lv-mark::after,
#column-left .lv-section-title.lv-mark::after { display: none; }

#column-right .row.g-4,
#column-left .row.g-4 { flex-direction: column; gap: 0 !important; margin: 0; }
#column-right .row.g-4 > [class*="col-"],
#column-left .row.g-4 > [class*="col-"] { width: 100% !important; max-width: 100% !important; flex: none; padding: 0 !important; }

#column-right .lv-blog-card,
#column-left .lv-blog-card {
  flex-direction: row; gap: 12px; align-items: flex-start;
  border: none; border-radius: 0; box-shadow: none; height: auto;
  padding: 10px 0; border-bottom: 1px solid var(--lv-border);
}
#column-right .lv-blog-card:last-child,
#column-left .lv-blog-card:last-child { border-bottom: none; padding-bottom: 0; }
#column-right .lv-blog-card:hover,
#column-left .lv-blog-card:hover { transform: none; box-shadow: none; border-color: transparent; border-bottom-color: var(--lv-border); }

#column-right .lv-blog-card__img-wrap,
#column-left .lv-blog-card__img-wrap { width: 64px; height: 64px; aspect-ratio: unset; flex-shrink: 0; border-radius: var(--lv-radius); }
#column-right .lv-blog-card__img,
#column-left .lv-blog-card__img { width: 64px; height: 64px; }
#column-right .lv-blog-card:hover .lv-blog-card__img,
#column-left .lv-blog-card:hover .lv-blog-card__img { transform: none; }

#column-right .lv-blog-card__body,
#column-left .lv-blog-card__body { padding: 0; flex: 1; }
#column-right .lv-blog-card__title,
#column-left .lv-blog-card__title { font-size: 13px; font-weight: 600; line-height: 1.35; margin-bottom: 4px; flex: none; }
#column-right .lv-blog-card__excerpt,
#column-left .lv-blog-card__excerpt { display: none; }
#column-right .lv-blog-card__meta,
#column-left .lv-blog-card__meta { font-size: 11px; padding-top: 0; border-top: none; margin-top: 0; gap: 8px; }

/* === About Section === */
.lv-about__image-wrap { position: relative; }
.lv-about__image-wrap img {
  width: 100%;
  border-radius: var(--lv-radius-xl);
  object-fit: cover;
}
.lv-about__stat-card {
  position: absolute;
  background: white;
  border-radius: var(--lv-radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--lv-shadow-lg);
  display: flex; gap: 12px; align-items: center;
  border: 2px solid var(--lv-border);
}
.lv-about__stat-card--a { bottom: 30px; right: -20px; }
.lv-about__stat-card--b { top: 30px; left: -20px; }

.lv-about__stat-icon {
  width: 48px; height: 48px;
  border-radius: var(--lv-radius);
  background: var(--lv-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--lv-primary);
}
.lv-about__stat-value { font-size: 1.5rem; font-weight: 900; color: var(--lv-dark); line-height: 1; }
.lv-about__stat-label { font-size: 12px; color: var(--lv-muted); }

/* === CTA === */
.lv-cta {
  background: linear-gradient(135deg, var(--lv-primary-dark) 0%, var(--lv-primary) 50%, #2E57D4 100%);
  border-radius: var(--lv-radius-xl);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: white;
}
.lv-cta::before {
  content: '◆';
  position: absolute; font-size: 220px;
  color: rgba(255,255,255,0.03);
  top: -50px; right: -30px;
}
.lv-cta::after {
  content: '◆';
  position: absolute; font-size: 160px;
  color: rgba(255,255,255,0.03);
  bottom: -40px; left: -30px;
}
.lv-cta__title { font-size: clamp(1.75rem,4vw,2.5rem); font-weight: 900; color:white; margin-bottom: 1rem; }
.lv-cta__desc { font-size: 1.05rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* === Newsletter === */
.lv-newsletter {
  background: linear-gradient(135deg, var(--lv-dark) 0%, #1B3EAA 100%);
  padding: 4rem 0; color: white;
}
.lv-newsletter__eyebrow {
  color: var(--lv-gold);
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 0.5rem;
}
.lv-newsletter__heading {
  color: white;
  margin-bottom: 0.5rem;
}
.lv-newsletter__heading em { color: var(--lv-gold); }
.lv-newsletter__subtext { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.lv-newsletter__input-wrap { display: flex; flex-wrap: wrap; gap: 12px; max-width: 500px; margin: 0 auto; }
.lv-newsletter__input-wrap .btn-lv-accent { flex-shrink: 0; }
@media (max-width: 575px) {
  .lv-newsletter__input-wrap .btn-lv-accent { width: 100%; justify-content: center; }
}
.lv-newsletter__input {
  flex: 1;
  padding: 12px 20px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: white; font-size: 15px;
  font-family: var(--lv-font-main);
}
.lv-newsletter__input::placeholder { color: rgba(255,255,255,0.5); }
.lv-newsletter__input:focus { border-color: var(--lv-gold); outline: none; background: rgba(255,255,255,0.12); }
.lv-newsletter__privacy { color: rgba(255,255,255,0.4); font-size: 12px; margin-top: 1rem; }
.lv-newsletter__agree { display: inline-flex; align-items: center; gap: 8px; margin-top: 1rem; color: rgba(255,255,255,0.7); font-size: 13px; cursor: pointer; }
.lv-newsletter__agree input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--lv-gold); cursor: pointer; }
.lv-newsletter__agree a { color: var(--lv-gold); text-decoration: underline; }
.lv-newsletter__agree a:hover { color: #fff; }
.lv-newsletter__msg { margin-top: 1rem; font-size: 14px; }
.lv-newsletter__msg--success { color: #a8f0a8; }
.lv-newsletter__msg--error   { color: #ffb3b3; }

/* === Scroll Reveal === */
.lv-sr {
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
}
.lv-sr.lv-revealed {
  opacity: 1;
  transform: none;
  will-change: auto;
  transition: opacity .65s cubic-bezier(.22,.61,.36,1),
              transform .65s cubic-bezier(.22,.61,.36,1);
}

/* === Sidebar Filters === */
.lv-filter-card {
  background: var(--lv-white);
  border-radius: var(--lv-radius-lg);
  border: 2px solid var(--lv-border);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.lv-filter-card__title {
  font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--lv-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--lv-border);
  display: flex; align-items: center; gap: 8px;
}
.lv-filter-card__title::before { content: '◆'; color: var(--lv-accent); font-size: 0.6em; }

.lv-filter-check { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; cursor: pointer; }
.lv-filter-check input[type="checkbox"] { accent-color: var(--lv-primary); width: 16px; height: 16px; cursor: pointer; }
.lv-filter-check__label { font-size: 14px; color: var(--lv-body); flex: 1; cursor: pointer; }
.lv-filter-check__count { font-size: 12px; color: var(--lv-muted); }

.lv-price-display { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; color: var(--lv-dark); margin-top: 10px; }
input[type="range"] { accent-color: var(--lv-primary); width: 100%; }

/* === Category Toolbar === */
.lv-toolbar {
  background: var(--lv-white);
  border-radius: var(--lv-radius);
  border: 2px solid var(--lv-border);
  padding: 12px 16px;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.lv-toolbar__count { font-size: 14px; color: var(--lv-muted); }
.lv-toolbar__count strong { color: var(--lv-dark); }
.lv-view-toggle { display: flex; gap: 6px; }
.lv-view-btn {
  width: 36px; height: 36px;
  border-radius: var(--lv-radius);
  border: 2px solid var(--lv-border);
  background: white; color: var(--lv-muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--lv-transition-fast);
}
.lv-view-btn.active, .lv-view-btn:hover { border-color: var(--lv-primary); background: var(--lv-primary); color: white; }

/* === Pagination === */
.lv-pagination .page-link {
  border: 2px solid var(--lv-border);
  border-radius: var(--lv-radius) !important;
  color: var(--lv-dark); font-weight: 600;
  margin: 0 3px; padding: 8px 14px;
  transition: var(--lv-transition-fast);
}
.lv-pagination .page-link:hover { border-color: var(--lv-primary); background: var(--lv-primary); color: white; }
.lv-pagination .page-item.active .page-link { border-color: var(--lv-primary); background: var(--lv-primary); color: white; }

/* === Product Detail === */
.lv-product-gallery { position: sticky; top: 100px; }

.lv-product-main-img {
  border-radius: var(--lv-radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--lv-light);
  margin-bottom: 1rem;
}
.lv-product-main-img a { display: block; width: 100%; height: 100%; }
.lv-product-main-img img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }

.lv-product-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.lv-product-thumb {
  display: block;
  border-radius: var(--lv-radius);
  overflow: hidden; aspect-ratio: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--lv-transition-fast);
  text-decoration: none;
}
.lv-product-thumb.active,
.lv-product-thumb:hover { border-color: var(--lv-primary); }
.lv-product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.lv-product-brand { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--lv-muted); margin-bottom: 8px; }
.lv-product-title { font-size: clamp(1.4rem,3vw,2rem); font-weight: 800; margin-bottom: 12px; color: var(--lv-dark); }

.lv-product-price {
  display: flex; align-items: baseline; gap: 12px;
  margin: 1.5rem 0;
}
.lv-product-price__current { font-size: 2.25rem; font-weight: 900; color: var(--lv-accent); font-family: var(--lv-font-heading); }
.lv-product-price__old { font-size: 1.1rem; color: var(--lv-muted); text-decoration: line-through; }
.lv-product-price__save { background: rgba(0,168,107,0.1); color: var(--lv-green); font-size: 13px; font-weight: 700; padding: 4px 10px; border-radius: 50px; }

.lv-product-options { margin: 1.5rem 0; }
.lv-product-options__label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; color: var(--lv-dark); }

.lv-color-swatches { display: flex; gap: 10px; }
.lv-color-swatch {
  width: 32px; height: 32px;
  border-radius: 50%; cursor: pointer;
  border: 3px solid transparent; outline: 2px solid transparent;
  transition: var(--lv-transition-fast);
}
.lv-color-swatch.active,
.lv-color-swatch:hover { outline-color: var(--lv-primary); outline-offset: 2px; transform: scale(1.15); }

.lv-size-options { display: flex; flex-wrap: wrap; gap: 8px; }
.lv-size-option {
  padding: 6px 16px;
  border-radius: var(--lv-radius);
  border: 2px solid var(--lv-border);
  font-size: 13px; font-weight: 600;
  cursor: pointer; transition: var(--lv-transition-fast);
  background: white; color: var(--lv-dark);
}
.lv-size-option.active,
.lv-size-option:hover { border-color: var(--lv-primary); background: var(--lv-primary); color: white; }

.lv-qty-control { display: inline-flex; align-items: center; border: 2px solid var(--lv-border); border-radius: var(--lv-radius); overflow: hidden; }
.lv-qty-btn {
  width: 44px; height: 44px;
  background: var(--lv-light); border: none;
  font-size: 18px; font-weight: 700;
  cursor: pointer; color: var(--lv-dark);
  display: flex; align-items: center; justify-content: center;
  transition: var(--lv-transition-fast);
}
.lv-qty-btn:hover { background: var(--lv-primary); color: white; }
.lv-qty-input {
  width: 56px; height: 44px;
  text-align: center; border: none;
  font-size: 16px; font-weight: 700; color: var(--lv-dark);
  background: white; font-family: var(--lv-font-main);
}
.lv-qty-input:focus { outline: none; }

.lv-product-cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 1.5rem 0; align-items: center; }

/* Trust badges */
.lv-trust-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: var(--lv-surface-light);
  border-radius: var(--lv-radius);
  border: 1px solid var(--lv-border);
}
.lv-trust-badge__icon { font-size: 22px; color: var(--lv-primary); }
.lv-trust-badge__title { font-size: 13px; font-weight: 700; color: var(--lv-dark); line-height: 1.2; }
.lv-trust-badge__sub { font-size: 11px; color: var(--lv-muted); }

/* Product Tabs */
.lv-tabs { border-bottom: 2px solid var(--lv-border); margin-bottom: 2rem; }
.lv-tabs .nav-link {
  color: var(--lv-muted); font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: none; border-bottom: 3px solid transparent;
  margin-bottom: -2px; border-radius: 0;
  transition: var(--lv-transition-fast);
}
.lv-tabs .nav-link:hover { color: var(--lv-primary); }
.lv-tabs .nav-link.active { color: var(--lv-primary); border-bottom-color: var(--lv-primary); background: transparent; }

/* Review */
.lv-review { padding: 1.25rem 0; border-bottom: 1px solid var(--lv-border); }
.lv-review__header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.lv-review__name { font-weight: 700; color: var(--lv-dark); font-size: 14px; }
.lv-review__date { font-size: 12px; color: var(--lv-muted); }
.lv-review__text { font-size: 14px; color: var(--lv-body); line-height: 1.6; }

/* === Checkout === */
.lv-checkout-card {
  background: var(--lv-white);
  border-radius: var(--lv-radius-lg);
  border: 2px solid var(--lv-border);
  padding: 1.75rem;
  box-shadow: var(--lv-shadow-card);
  margin-bottom: 1.5rem;
}
.lv-checkout-card__title {
  font-size: 1.1rem; font-weight: 800;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--lv-border);
  display: flex; align-items: center; gap: 10px;
  color: var(--lv-dark);
}
.lv-checkout-card__title::before { content: '◆'; color: var(--lv-accent); font-size: 0.6em; }

.lv-form-label { font-size: 13px; font-weight: 600; color: var(--lv-dark); margin-bottom: 6px; display: block; }
.lv-form-control {
  border: 2px solid var(--lv-border);
  border-radius: var(--lv-radius);
  padding: 10px 14px;
  font-size: 15px; width: 100%;
  font-family: var(--lv-font-main);
  transition: var(--lv-transition-fast);
  background: var(--lv-white);
  color: var(--lv-dark);
}
.lv-form-control:focus { border-color: var(--lv-primary); box-shadow: 0 0 0 4px rgba(27,62,170,0.1); outline: none; }
.lv-form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23718096' fill='none' stroke-width='2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

/* Checkout steps */
.lv-steps { display: flex; align-items: center; margin-bottom: 2rem; }
.lv-step {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--lv-muted);
}
.lv-step.active { color: var(--lv-primary); }
.lv-step.done { color: var(--lv-green); }
.lv-step__num {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--lv-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  background: white;
}
.lv-step.active .lv-step__num { border-color: var(--lv-primary); background: var(--lv-primary); color: white; }
.lv-step.done .lv-step__num { border-color: var(--lv-green); background: var(--lv-green); color: white; }
.lv-step-divider { flex: 1; height: 2px; background: var(--lv-border); margin: 0 8px; }

/* Order summary */
.lv-order-item {
  display: flex; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--lv-border);
  align-items: center;
}
.lv-order-item__img { width: 60px; height: 60px; border-radius: var(--lv-radius); object-fit: cover; flex-shrink: 0; background: var(--lv-light); }
.lv-order-item__name { font-size: 14px; font-weight: 600; color: var(--lv-dark); flex: 1; }
.lv-order-item__qty { font-size: 12px; color: var(--lv-muted); margin-top: 2px; }
.lv-order-item__price { font-size: 15px; font-weight: 700; color: var(--lv-dark); text-align: right; }
.lv-order-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: 14px; color: var(--lv-muted); }
.lv-order-row--total { font-size: 1.1rem; font-weight: 800; color: var(--lv-dark); border-top: 2px solid var(--lv-border); padding-top: 12px; margin-top: 4px; }

/* Payment methods */
.lv-payment-methods { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.lv-payment-method {
  border: 2px solid var(--lv-border);
  border-radius: var(--lv-radius);
  padding: 12px 8px; text-align: center;
  cursor: pointer; transition: var(--lv-transition-fast);
  font-size: 13px; font-weight: 600; color: var(--lv-muted);
}
.lv-payment-method.active,
.lv-payment-method:hover { border-color: var(--lv-primary); background: var(--lv-light); color: var(--lv-primary); }
.lv-payment-method i { font-size: 22px; display: block; margin-bottom: 6px; }

.lv-sticky-sidebar { position: sticky; top: 100px; }

/* ---- Checkout accordion steps ---- */
.lv-checkout-step {
  border: 2px solid var(--lv-border);
  border-radius: var(--lv-radius-lg);
  margin-bottom: 12px;
  background: var(--lv-white);
  overflow: hidden;
}
.lv-checkout-step__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1.1rem 1.5rem;
}
.lv-checkout-step__header a {
  display: flex; align-items: center; gap: 14px;
  flex: 1; color: inherit; text-decoration: none;
}
.lv-checkout-step__num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--lv-light);
  border: 2px solid var(--lv-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--lv-muted);
  flex-shrink: 0;
}
.lv-checkout-step__title {
  font-size: 1rem; font-weight: 700; color: var(--lv-dark);
  margin: 0; flex: 1;
}
.lv-checkout-step__caret {
  color: var(--lv-muted); font-size: 14px;
  margin-left: auto;
  transition: transform .25s ease;
}
.lv-checkout-step .collapse.show ~ .lv-checkout-step__header .lv-checkout-step__caret,
.lv-checkout-step:has(.collapse.show) .lv-checkout-step__caret { transform: rotate(180deg); }
.lv-checkout-step__content {
  padding: 0 1.5rem 1.5rem;
  border-top: 2px solid var(--lv-border);
}
/* Style inline form elements loaded via AJAX into checkout steps */
.lv-checkout-step__content .form-group { margin-bottom: 1rem; }
.lv-checkout-step__content .form-control,
.lv-checkout-step__content select.form-control,
.lv-checkout-step__content textarea.form-control {
  border: 2px solid var(--lv-border);
  border-radius: var(--lv-radius);
  padding: 9px 14px;
  font-size: 14px;
  transition: var(--lv-transition-fast);
}
.lv-checkout-step__content .form-control:focus { border-color: var(--lv-primary); box-shadow: 0 0 0 3px rgba(27,62,170,0.1); outline: none; }
.lv-checkout-step__content .control-label { font-size: 13px; font-weight: 600; color: var(--lv-dark); }
.lv-checkout-step__content .btn.btn-primary,
.lv-checkout-step__content input[type="button"].btn-primary {
  background: var(--lv-primary); border: none; border-radius: var(--lv-radius);
  color: white; font-weight: 700; font-size: 14px; padding: 10px 24px;
  cursor: pointer; transition: var(--lv-transition-fast);
}
.lv-checkout-step__content .btn.btn-primary:hover,
.lv-checkout-step__content input[type="button"].btn-primary:hover { background: var(--lv-primary-dark); }
.lv-checkout-step__content .btn.btn-danger { background: #dc3545; border: none; border-radius: var(--lv-radius); color: white; font-size: 13px; padding: 8px 16px; cursor: pointer; }
.lv-checkout-step__content .alert { border-radius: var(--lv-radius); padding: 12px 16px; font-size: 14px; margin-bottom: 1rem; }
.lv-checkout-step__content .radio label { font-size: 14px; cursor: pointer; display: flex; align-items: center; gap: 8px; }
.lv-checkout-step__content .text-danger { font-size: 12px; margin-top: 4px; }
.lv-checkout-step__content .has-error .form-control { border-color: #dc3545; }

/* ---- Cart page items ---- */
.lv-cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--lv-border);
}
.lv-cart-item:last-child { border-bottom: none; }
.lv-cart-item__thumb { width: 80px; }
.lv-cart-item__img {
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: var(--lv-radius);
  background: var(--lv-light);
  display: block;
}
.lv-cart-item__name {
  font-weight: 700; font-size: 15px; color: var(--lv-dark);
  text-decoration: none; display: block; margin-bottom: 4px;
}
.lv-cart-item__name:hover { color: var(--lv-primary); }
.lv-cart-item__options { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 4px; }
.lv-cart-item__opt {
  font-size: 12px; color: var(--lv-muted);
  background: var(--lv-light); border-radius: 4px; padding: 2px 8px;
}
.lv-cart-item__warning { font-size: 12px; color: #dc3545; display: block; margin-top: 4px; }
.lv-cart-item__reward { font-size: 12px; color: var(--lv-green); margin-top: 4px; }
.lv-cart-item__actions {
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.lv-cart-item__price { font-size: 13px; color: var(--lv-muted); }
.lv-cart-item__total { font-size: 16px; font-weight: 800; color: var(--lv-dark); }

/* Qty mini controls (cart page) */
.lv-qty-mini { display: flex; align-items: center; gap: 4px; }
.lv-qty-mini__input {
  width: 52px; height: 34px; text-align: center;
  border: 2px solid var(--lv-border); border-radius: var(--lv-radius);
  font-size: 14px; font-weight: 700; font-family: var(--lv-font-main);
  padding: 0 6px;
}
.lv-qty-mini__btn {
  width: 34px; height: 34px;
  border: 2px solid var(--lv-border); border-radius: var(--lv-radius);
  background: var(--lv-light); color: var(--lv-muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--lv-transition-fast);
  font-size: 14px;
}
.lv-qty-mini__btn:hover { border-color: var(--lv-primary); color: var(--lv-primary); background: white; }
.lv-qty-mini__btn--del:hover { border-color: #dc3545; color: #dc3545; }

@media (max-width: 575px) {
  .lv-cart-item { grid-template-columns: 64px 1fr; }
  .lv-cart-item__actions { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
}

/* Product page image zoom overlay */
.lv-zoom-overlay {
  position: absolute; inset: 0;
  background: rgba(27,62,170,0.08);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--lv-transition);
  font-size: 24px; color: var(--lv-primary);
  pointer-events: none;
}
.lv-product-main-img:hover .lv-zoom-overlay { opacity: 1; }

/* Spec table */
.lv-spec-table { width: 100%; border-collapse: collapse; }
.lv-spec-table tr:nth-child(even) td { background: var(--lv-light); }
.lv-spec-table td { padding: 10px 14px; font-size: 14px; border-bottom: 1px solid var(--lv-border); }
.lv-spec-table td:first-child { font-weight: 600; color: var(--lv-dark); width: 40%; }
.lv-spec-table td:last-child { color: var(--lv-body); }

/* Rating breakdown */
.lv-rating-bar { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 13px; }
.lv-rating-bar__label { width: 40px; color: var(--lv-muted); }
.lv-rating-bar__track { flex: 1; height: 8px; background: var(--lv-border); border-radius: 4px; overflow: hidden; }
.lv-rating-bar__fill { height: 100%; background: var(--lv-gold); border-radius: 4px; }
.lv-rating-bar__count { width: 30px; color: var(--lv-muted); text-align: right; }

/* ============================================
   Payment icons — footer strip
   ============================================ */
.lv-pay-strip { gap: 8px; }
.lv-pay-icon {
  height: 16px;
  width: auto;
  display: inline-block;
  opacity: 0.75;
  transition: opacity .2s;
}
.lv-pay-icon:hover { opacity: 1; }

/* ============================================
   Blog Article Page
   ============================================ */
.lv-article-hero {
  border-radius: var(--lv-radius-xl);
  overflow: hidden;
  max-height: 480px;
  margin-bottom: 2rem;
}
.lv-article-hero img { width: 100%; height: 100%; object-fit: cover; display: block; max-height: 480px; }
.lv-article-hero__link { display: block; }

.lv-article-title {
  font-family: var(--lv-font-heading);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--lv-dark);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.lv-article-meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--lv-muted);
  padding: 0.75rem 0;
  border-top: 2px solid var(--lv-border);
  border-bottom: 2px solid var(--lv-border);
  margin-bottom: 2rem;
}
.lv-article-meta a { color: var(--lv-muted); }
.lv-article-meta a:hover { color: var(--lv-primary); }

.lv-article-thumbs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 1.5rem; }
.lv-article-thumbs a img {
  width: 72px; height: 72px;
  object-fit: cover; border-radius: var(--lv-radius);
  border: 2px solid var(--lv-border);
  transition: border-color .2s;
}
.lv-article-thumbs a:hover img { border-color: var(--lv-primary); }

/* Article typography */
.lv-article { font-size: 16px; line-height: 1.8; color: var(--lv-body); }
.lv-article p { margin-bottom: 1.4rem; }
.lv-article h2 {
  font-size: 1.4rem; font-weight: 800; color: var(--lv-dark);
  margin-top: 2.5rem; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 10px;
}
.lv-article h2::before { content: '◆'; color: var(--lv-accent); font-size: .65em; flex-shrink: 0; }
.lv-article h3 {
  font-size: 1.1rem; font-weight: 700; color: var(--lv-dark);
  margin-top: 1.75rem; margin-bottom: .75rem;
}
.lv-article ul, .lv-article ol { padding-left: 0; list-style: none; margin-bottom: 1.4rem; }
.lv-article ul li, .lv-article ol li {
  padding: 6px 0 6px 28px; position: relative;
  border-bottom: 1px solid var(--lv-border);
}
.lv-article ul li:last-child, .lv-article ol li:last-child { border-bottom: none; }
.lv-article ul li::before {
  content: '◆'; position: absolute; left: 0; top: 9px;
  color: var(--lv-accent); font-size: .55em;
}
.lv-article ol { counter-reset: lv-counter; }
.lv-article ol li::before {
  counter-increment: lv-counter; content: counter(lv-counter);
  position: absolute; left: 0; top: 7px;
  width: 20px; height: 20px; background: var(--lv-primary); color: white;
  font-size: 11px; font-weight: 800; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.lv-article blockquote {
  margin: 2rem 0; padding: 1.5rem 1.5rem 1.5rem 2rem;
  border-left: 4px solid var(--lv-accent); background: var(--lv-light);
  border-radius: 0 var(--lv-radius-lg) var(--lv-radius-lg) 0;
  font-size: 1.05rem; font-style: italic; color: var(--lv-dark); position: relative;
}
.lv-article blockquote::before {
  content: '"'; font-size: 5rem; font-family: Georgia, serif;
  color: var(--lv-accent); opacity: .2;
  position: absolute; top: -10px; left: 10px; line-height: 1;
}
.lv-article blockquote cite {
  display: block; margin-top: 10px;
  font-size: 13px; font-style: normal; color: var(--lv-muted); font-weight: 600;
}
.lv-article img { width: 100%; border-radius: var(--lv-radius-lg); margin: 1.5rem 0; }
.lv-article a { color: var(--lv-primary); text-decoration: underline; }

/* Article downloads */
.lv-article-downloads { margin: 1.5rem 0; }
.lv-article-downloads__item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border: 2px solid var(--lv-border); border-radius: var(--lv-radius);
  margin-bottom: 8px; font-size: 14px; color: var(--lv-dark);
  transition: var(--lv-transition-fast);
}
.lv-article-downloads__item:hover { border-color: var(--lv-primary); color: var(--lv-primary); }
.lv-article-downloads__item i { color: var(--lv-primary); font-size: 18px; flex-shrink: 0; }

/* Article reviews */
.lv-article-reviews { margin-top: 3rem; padding-top: 2rem; border-top: 2px solid var(--lv-border); }

/* Bootstrap Icons aliases for .fa-* classes */
.fa-home::before,
.fa-calendar::before,
.fa-exclamation-circle::before,
.fa-caret-down::before,
.fa-upload::before,
.fa-check-circle::before,
.fa-info-circle::before,
.fa-star-o::before,
.fa-star::before,
.fa-close::before,
.fa-times::before,
.fa-shopping-cart::before,
.fa-pencil::before,
.fa-th-list::before,
.fa-th::before,
.fa-heart::before,
.fa-eye::before,
.fa-exchange::before,
.fa-map-marker::before,
.fa-reply::before,
.fa-cloud-download::before,
.fa-tick::before
{
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-home::before         { content: "\f423"; } /* bi-house-door */
.fa-calendar::before     { content: "\f214"; } /* bi-calendar3 */
.fa-exclamation-circle::before { content: "\f333"; } /* bi-exclamation-circle */
.fa-caret-down::before   { content: "\f282"; } /* bi-chevron-down */
.fa-upload::before       { content: "\f603"; } /* bi-upload */
.fa-check-circle::before { content: "\f26b"; } /* bi-check-circle */
.fa-info-circle::before  { content: "\f431"; } /* bi-info-circle */
.fa-star-o::before       { content: "\f588"; } /* bi-star (outline) */
.fa-star::before         { content: "\f586"; } /* bi-star-fill */
.fa-close::before,
.fa-times::before        { content: "\f659"; } /* bi-x-lg */
.fa-shopping-cart::before { content: "\f244"; } /* bi-cart3 */
.fa-pencil::before       { content: "\f4cb"; } /* bi-pencil */
.fa-th-list::before      { content: "\f478"; } /* bi-list-ul */
.fa-th::before           { content: "\f3fc"; } /* bi-grid */
.fa-heart::before        { content: "\f417"; } /* bi-heart */
.fa-eye::before          { content: "\f341"; } /* bi-eye */
.fa-exchange::before     { content: "\f12b"; } /* bi-arrow-left-right */
.fa-map-marker::before   { content: "\f3e8"; } /* bi-geo-alt */
.fa-reply::before        { content: "\f520"; } /* bi-reply */
.fa-cloud-download::before { content: "\f29b"; } /* bi-cloud-download */
.fa-tick::before         { content: "\f272"; } /* bi-check2 */

/* ============================================
   ST Live Search Dropdown
   ============================================ */
.lv-sd {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: #fff; border: 1px solid var(--lv-border);
  border-radius: var(--lv-radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  z-index: 1050; overflow: hidden; min-width: 300px;
}
.lv-sd__item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px; text-decoration: none; color: var(--lv-dark);
  border-bottom: 1px solid var(--lv-border); transition: background .15s; outline: none;
}
.lv-sd__item:hover, .lv-sd__item:focus { background: var(--lv-light); color: var(--lv-dark); }
.lv-sd__img { width: 42px; height: 42px; object-fit: contain; border-radius: var(--lv-radius); flex-shrink: 0; }
.lv-sd__name { flex: 1; font-size: 13px; font-weight: 500; line-height: 1.3; }
.lv-sd__price { font-size: 13px; font-weight: 700; color: var(--lv-primary); white-space: nowrap; }
.lv-sd__empty { padding: 14px; text-align: center; font-size: 13px; color: var(--lv-muted); }
.lv-sd__more {
  display: block; padding: 9px 14px; background: var(--lv-light);
  text-align: center; font-size: 13px; font-weight: 600;
  color: var(--lv-primary); text-decoration: none; outline: none;
  transition: background .15s;
}
.lv-sd__more:hover, .lv-sd__more:focus { background: var(--lv-border); color: var(--lv-primary); }

/* === Legacy page fallback === */
#content { min-height: 500px; }

/* === Account / Info page form styling === */
.lv-page-form .form-control,
.lv-page-form .form-select {
  border: 2px solid var(--lv-border);
  border-radius: var(--lv-radius);
  font-size: 14px;
  transition: border-color .2s, box-shadow .2s;
}
.lv-page-form .form-control:focus,
.lv-page-form .form-select:focus {
  border-color: var(--lv-primary);
  box-shadow: 0 0 0 4px rgba(27,62,170,.1);
  outline: none;
}
.lv-page-form .form-label { font-size: 13px; font-weight: 600; color: var(--lv-dark); margin-bottom: 5px; }
.lv-page-form .text-danger { font-size: 12px; margin-top: 4px; }
.lv-page-form fieldset { border: none; padding: 0; margin: 0 0 28px; }
.lv-page-form legend {
  font-family: var(--lv-font-heading);
  font-size: 15px; font-weight: 700; color: var(--lv-dark);
  padding-bottom: 10px; margin-bottom: 16px;
  border-bottom: 2px solid var(--lv-border);
  width: 100%;
}
.lv-info-row { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:8px; }
.lv-info-row strong { color:var(--lv-dark); min-width:120px; }
.lv-page-table { border-collapse:separate; border-spacing:0; width:100%; }
.lv-page-table th { padding:12px 16px; font-size:13px; font-weight:600; color:var(--lv-muted); background:var(--lv-light); border-bottom:2px solid var(--lv-border); text-align:left; }
.lv-page-table td { padding:12px 16px; font-size:14px; border-bottom:1px solid var(--lv-border); vertical-align:middle; }
.lv-page-table tbody tr:last-child td { border-bottom:none; }
.lv-page-table tbody tr:nth-child(even) td { background:var(--lv-bg); }

/* === Checkout / Cart page === */
.lv-checkout-card {
  background: #fff;
  border: 1px solid var(--lv-border);
  border-radius: var(--lv-radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.lv-checkout-card__title {
  font-family: var(--lv-font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--lv-dark);
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--lv-border);
}

/* Cart item row */
.lv-cart-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--lv-border);
}
.lv-cart-item:last-child { border-bottom: none; }

.lv-cart-item__thumb { flex-shrink: 0; width: 72px; }
.lv-cart-item__img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: var(--lv-radius);
  border: 1px solid var(--lv-border);
}

.lv-cart-item__body {
  flex: 1;
  min-width: 0;
}
.lv-cart-item__name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--lv-dark);
  text-decoration: none;
  margin-bottom: 4px;
  line-height: 1.35;
}
.lv-cart-item__name:hover { color: var(--lv-primary); }

.lv-cart-item__warning {
  display: block;
  font-size: 12px;
  color: #dc3545;
  margin-bottom: 4px;
}
.lv-cart-item__options {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}
.lv-cart-item__opt {
  font-size: 11px;
  color: var(--lv-muted);
  background: var(--lv-light);
  border-radius: 4px;
  padding: 2px 7px;
}
.lv-cart-item__reward {
  font-size: 12px;
  color: var(--lv-primary);
  margin-top: 4px;
}

.lv-cart-item__actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.lv-cart-item__price {
  font-size: 12px;
  color: var(--lv-muted);
}
.lv-cart-item__total {
  font-size: 15px;
  font-weight: 700;
  color: var(--lv-dark);
}

/* Quantity mini control */
.lv-qty-mini {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--lv-light);
  border: 1px solid var(--lv-border);
  border-radius: var(--lv-radius);
  padding: 3px;
}
.lv-qty-mini__input {
  width: 44px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--lv-dark);
  outline: none;
  padding: 2px 0;
}
.lv-qty-mini__input::-webkit-inner-spin-button,
.lv-qty-mini__input::-webkit-outer-spin-button { -webkit-appearance: none; }

.lv-qty-mini__btn {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: calc(var(--lv-radius) - 2px);
  background: #fff;
  color: var(--lv-muted);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}
.lv-qty-mini__btn:hover { background: var(--lv-primary); color: #fff; }
.lv-qty-mini__btn--del:hover { background: #dc3545; color: #fff; }

/* Order totals */
.lv-order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--lv-dark);
  padding: 7px 0;
  border-bottom: 1px solid var(--lv-border);
}
.lv-order-row:last-of-type { border-bottom: none; }
.lv-order-row--total {
  font-size: 17px;
  font-weight: 700;
  color: var(--lv-primary);
  padding-top: 12px;
  border-top: 2px solid var(--lv-border);
  border-bottom: none;
}

/* Sticky sidebar */
.lv-sticky-sidebar { position: sticky; top: 90px; }

/* Cart responsive */
@media (max-width: 575px) {
  .lv-cart-item { flex-wrap: wrap; }
  .lv-cart-item__thumb { width: 56px; }
  .lv-cart-item__img { width: 56px; height: 56px; }
  .lv-cart-item__actions { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; }
  .lv-checkout-card { padding: 16px; }
}

/* === Product Reviews === */
.lv-review {
  padding: 18px 0;
  border-bottom: 1px solid var(--lv-border);
}
.lv-review:last-child { border-bottom: none; }
.lv-review__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 12px;
}
.lv-review__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--lv-dark);
  margin-bottom: 2px;
}
.lv-review__date {
  font-size: 12px;
  color: var(--lv-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.lv-review__text {
  font-size: 14px;
  color: var(--lv-muted);
  line-height: 1.65;
  margin: 0;
}

/* === Action Toast (wishlist / compare) === */
#lv-action-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1090;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--lv-border);
  border-radius: var(--lv-radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.07);
  padding: 14px 16px;
  max-width: 320px;
  min-width: 240px;
  transform: translateY(16px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s ease, visibility 0s linear 0.35s;
  pointer-events: none;
}
#lv-action-toast.lv-toast--visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s ease, visibility 0s linear 0s;
}
.lv-toast__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.lv-toast__icon--wishlist { background: rgba(220,53,69,0.1); color: #dc3545; }
.lv-toast__icon--compare  { background: var(--lv-light); color: var(--lv-primary); }
.lv-toast__body {
  flex: 1;
  font-size: 13px;
  color: var(--lv-dark);
  line-height: 1.5;
  padding-top: 2px;
  word-break: break-word;
}
.lv-toast__body a { color: var(--lv-primary); font-weight: 600; text-decoration: none; }
.lv-toast__body a:hover { text-decoration: underline; }
.lv-toast__close {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--lv-muted);
  font-size: 17px;
  line-height: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: color 0.15s;
}
.lv-toast__close:hover { color: var(--lv-dark); }
@media (max-width: 575px) {
  #lv-action-toast { left: 12px; right: 12px; bottom: 12px; max-width: none; min-width: 0; }
}

/* Review overview (left col) */
.lv-review-overview {
  background: #fff;
  border: 1px solid var(--lv-border);
  border-radius: var(--lv-radius-lg);
  padding: 28px 24px;
  text-align: center;
  position: sticky;
  top: 90px;
}
.lv-review-overview__score {
  font-family: var(--lv-font-heading);
  font-size: 56px;
  font-weight: 900;
  color: var(--lv-dark);
  line-height: 1;
  margin-bottom: 6px;
}
