/* =========================================================
   G Mobile — Luxury Premium Theme
   OpenCart Compatible | Custom UI (no Bootstrap visual defaults)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --lx-primary: #922077;
  --lx-secondary: #047444;
  --lx-bg: #ffffff;
  --lx-bg-light: #f8fafc;
  --lx-text: #111827;
  --lx-gray: #6b7280;
  --lx-border: #e5e7eb;
  --lx-footer: #0b1220;
  --lx-footer-muted: #94a3b8;
  --lx-radius: 20px;
  --lx-radius-sm: 16px;
  --lx-shadow: 0 8px 30px rgba(17, 24, 39, 0.08);
  --lx-shadow-lg: 0 24px 60px rgba(17, 24, 39, 0.12);
  --lx-gradient: linear-gradient(135deg, #922077 0%, #047444 100%);
  --lx-gradient-soft: linear-gradient(135deg, rgba(146, 32, 119, 0.12) 0%, rgba(4, 116, 68, 0.12) 100%);
  --lx-font: 'Poppins', system-ui, -apple-system, sans-serif;
  --lx-container: 1280px;
  --lx-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --lx-header-h: 72px;
  --lx-scrollbar-size: 8px;
  --lx-scrollbar-size-page: 10px;
  --lx-scrollbar-track: rgba(17, 24, 39, 0.06);
  --lx-scrollbar-thumb: rgba(146, 32, 119, 0.42);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

html {
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--lx-font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--lx-text);
  background: var(--lx-bg);
  /* Do not use overflow-x:hidden here — it forces overflow-y:auto and clips sticky header dropdowns */
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--lx-ease); }
a:hover { color: var(--lx-primary); }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }

/* Luxury scrollbars — page + horizontal rails */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--lx-scrollbar-thumb) transparent;
}

html::-webkit-scrollbar {
  width: var(--lx-scrollbar-size-page);
  height: var(--lx-scrollbar-size-page);
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: var(--lx-gradient);
  border-radius: 999px;
  border: 3px solid var(--lx-bg);
  background-clip: padding-box;
}

html::-webkit-scrollbar-thumb:hover {
  border-width: 2px;
}

.lx-scrollbar,
.lx-refine__track,
.lx-products--carousel,
.lx-filter,
.lx-nav-drop__grid {
  scrollbar-width: thin;
  scrollbar-color: var(--lx-scrollbar-thumb) var(--lx-scrollbar-track);
}

.lx-scrollbar::-webkit-scrollbar,
.lx-refine__track::-webkit-scrollbar,
.lx-products--carousel::-webkit-scrollbar,
.lx-filter::-webkit-scrollbar,
.lx-nav-drop__grid::-webkit-scrollbar {
  width: var(--lx-scrollbar-size);
  height: var(--lx-scrollbar-size);
}

.lx-scrollbar::-webkit-scrollbar-track,
.lx-refine__track::-webkit-scrollbar-track,
.lx-products--carousel::-webkit-scrollbar-track,
.lx-filter::-webkit-scrollbar-track,
.lx-nav-drop__grid::-webkit-scrollbar-track {
  background: var(--lx-scrollbar-track);
  border-radius: 999px;
  margin: 2px 4px;
}

.lx-scrollbar::-webkit-scrollbar-thumb,
.lx-refine__track::-webkit-scrollbar-thumb,
.lx-products--carousel::-webkit-scrollbar-thumb,
.lx-filter::-webkit-scrollbar-thumb,
.lx-nav-drop__grid::-webkit-scrollbar-thumb {
  background: var(--lx-gradient);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
  min-height: 36px;
  min-width: 36px;
}

.lx-scrollbar::-webkit-scrollbar-thumb:hover,
.lx-refine__track::-webkit-scrollbar-thumb:hover,
.lx-products--carousel::-webkit-scrollbar-thumb:hover,
.lx-filter::-webkit-scrollbar-thumb:hover,
.lx-nav-drop__grid::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #a8288a 0%, #058f52 100%);
  box-shadow: 0 2px 10px rgba(146, 32, 119, 0.28);
}

.lx-scrollbar::-webkit-scrollbar-corner,
.lx-refine__track::-webkit-scrollbar-corner,
.lx-products--carousel::-webkit-scrollbar-corner {
  background: transparent;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--lx-text);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}

#container {
  width: 100%;
  min-height: 100%;
  position: relative;
  margin-bottom: 0 !important;
}

#content, #column-left, #column-right {
  padding-bottom: 0 !important;
}

#alert {
  z-index: 9999;
  position: fixed;
  top: 20%;
  left: 50%;
  width: min(480px, 90vw);
  transform: translateX(-50%);
  margin-left: 0;
}

.lx-container {
  width: 100%;
  max-width: var(--lx-container);
  margin: 0 auto;
  padding: 0 24px;
}

.lx-section {
  padding: 88px 0;
  position: relative;
}

.lx-section--light { background: var(--lx-bg-light); }

.lx-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.lx-section__head--row {
  text-align: left;
  max-width: none;
  margin: 0 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.lx-section__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lx-primary);
  margin-bottom: 12px;
}

.lx-section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.lx-section__sub {
  color: var(--lx-gray);
  font-size: 1.05rem;
  font-weight: 400;
  margin: 0;
}

/* ---------- Buttons ---------- */
.lx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--lx-radius-sm);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--lx-ease), box-shadow 0.3s var(--lx-ease), background 0.3s var(--lx-ease);
  text-decoration: none !important;
  line-height: 1.2;
  white-space: nowrap;
}

.lx-btn--gradient {
  background: var(--lx-gradient);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(146, 32, 119, 0.28);
}

.lx-btn--gradient:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 32px rgba(146, 32, 119, 0.4), 0 0 0 4px rgba(146, 32, 119, 0.12);
  color: #fff !important;
}

.lx-btn--outline {
  background: transparent;
  color: var(--lx-text) !important;
  border: 1.5px solid var(--lx-border);
}

.lx-btn--outline:hover {
  border-color: var(--lx-primary);
  color: var(--lx-primary) !important;
  transform: scale(1.03);
}

.lx-btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.lx-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.03);
  color: #fff !important;
}

.lx-btn--sm { padding: 10px 18px; font-size: 13px; }
.lx-btn--lg { padding: 18px 36px; font-size: 15px; }
.lx-btn--block { width: 100%; }

/* =========================================================
   THREE-TIER LUXURY HEADER
   1) Dark utility  2) Logo + search + tools  3) Nav + Deal Zone
   ========================================================= */
.lx-header-shell {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: #fff;
  overflow: visible;
  transition: box-shadow 0.35s var(--lx-ease);
}

.lx-header-shell.is-scrolled {
  box-shadow: 0 14px 40px rgba(17, 24, 39, 0.1);
}

/* ---------- HEADER 1: Dark utility bar ---------- */
.lx-topbar {
  background: linear-gradient(90deg, #0b1220 0%, #121a2b 55%, #0d1a16 100%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 500;
  position: relative;
  z-index: 3;
}

.lx-topbar::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--lx-gradient);
  opacity: 0.7;
}

.lx-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  gap: 16px;
}

.lx-topbar__keywords,
.lx-topbar__links,
.lx-topbar__meta {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.lx-topbar a {
  color: rgba(255, 255, 255, 0.72);
  padding: 4px 8px;
  border-radius: 8px;
  transition: color 0.25s, background 0.25s;
  font-size: 12px;
}

.lx-topbar a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.lx-topbar__phone {
  font-weight: 600;
  color: #fff !important;
}

.lx-topbar__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.lx-topbar__sep {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.16);
  margin: 0 6px;
}

.lx-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff !important;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none !important;
}

.lx-chip img { border-radius: 2px; }
.lx-chip i { font-size: 9px; opacity: 0.7; }
.lx-chip::after { display: none !important; }
.lx-meta-form { margin: 0; display: inline-flex; }

.lx-dropdown {
  border: 1px solid var(--lx-border) !important;
  border-radius: 16px !important;
  box-shadow: var(--lx-shadow-lg) !important;
  padding: 8px !important;
  margin-top: 10px !important;
  min-width: 180px;
}

.lx-dropdown .dropdown-item {
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
}

.lx-dropdown .dropdown-item:hover {
  background: var(--lx-bg-light);
  color: var(--lx-primary);
}

@media (max-width: 991px) {
  .lx-topbar { display: none; }
}

/* ---------- HEADER 2: Logo + Search + Tools ---------- */
.lx-header {
  background: #ffffff;
  border-bottom: 1px solid transparent;
}

.lx-header__row--main {
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 10px 0 8px;
}

.lx-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

body.lx-theme #logo,
.lx-logo {
  margin: 0 !important;
  text-align: left !important;
}

.lx-logo img {
  max-height: 52px !important;
  max-width: 210px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lx-logo__text {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--lx-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lx-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--lx-border);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.lx-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--lx-text);
}

/* Big search */
body.lx-theme #search,
.lx-header__search {
  width: 100%;
  max-width: 720px;
  margin: 0 !important;
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.lx-search-form {
  display: flex !important;
  align-items: center;
  width: 100%;
  margin: 0 !important;
  background: #f4f6f9;
  border: 1.5px solid transparent;
  border-radius: 18px;
  padding: 6px 6px 6px 16px;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.lx-search-form:focus-within {
  background: #fff;
  border-color: rgba(146, 32, 119, 0.35);
  box-shadow: 0 0 0 4px rgba(146, 32, 119, 0.1), 0 10px 28px rgba(17, 24, 39, 0.06);
}

.lx-search-form__leading {
  color: var(--lx-gray);
  font-size: 15px;
  margin-right: 12px;
  display: inline-flex;
}

.lx-search-form input {
  flex: 1;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  height: 44px !important;
  padding: 0 !important;
  font-size: 15px !important;
  font-family: var(--lx-font) !important;
  color: var(--lx-text);
  line-height: 44px !important;
}

.lx-search-form input::placeholder { color: #9aa3af; }

.lx-search-form__hint {
  display: none;
  font-family: var(--lx-font);
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  background: #fff;
  border: 1px solid var(--lx-border);
  border-radius: 8px;
  padding: 3px 7px;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .lx-search-form__hint { display: inline-block; }
}

.lx-search-form__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 14px;
  padding: 0 22px;
  height: 44px;
  background: var(--lx-gradient);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--lx-font);
  transition: transform 0.25s, box-shadow 0.25s;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(146, 32, 119, 0.22);
}

.lx-search-form__btn:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 12px 28px rgba(146, 32, 119, 0.32);
}

/* Improved tool icons */
.lx-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lx-tool {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px 8px 8px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--lx-text);
  text-decoration: none !important;
  transition: all 0.3s var(--lx-ease);
  min-height: 56px;
}

.lx-tool:hover {
  background: #f8fafc;
  border-color: var(--lx-border);
  color: var(--lx-primary);
}

.lx-tool::after { display: none !important; }

.lx-tool__icon {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #f4f6f9);
  border: 1px solid var(--lx-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s var(--lx-ease);
  box-shadow: 0 2px 6px rgba(17, 24, 39, 0.04);
}

.lx-tool:hover .lx-tool__icon {
  background: var(--lx-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 22px rgba(146, 32, 119, 0.28);
  transform: translateY(-1px);
}

.lx-tool__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.lx-tool__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lx-gray);
}

.lx-tool__sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--lx-text);
}

.lx-tool:hover .lx-tool__sub { color: var(--lx-primary); }

.lx-tool__badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--lx-gradient);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(146, 32, 119, 0.35);
}

.lx-tool--cart {
  background: linear-gradient(180deg, #fff, #f8fafc);
  border-color: var(--lx-border);
  padding-right: 14px;
}

.lx-tool--cart:hover {
  border-color: transparent;
  box-shadow: var(--lx-shadow);
}

.lx-tool--icon-only {
  padding: 4px;
  min-height: 0;
}

body.lx-theme #cart,
.lx-cart { margin: 0 !important; }

body.lx-theme #cart .btn-lg,
body.lx-theme #cart .btn { all: unset; }

.lx-cart-menu {
  width: min(360px, 92vw) !important;
  overflow: hidden;
}

.lx-cart-menu__list {
  max-height: 280px;
  overflow: auto;
  padding: 12px;
}

.lx-cart-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
}

.lx-cart-item:hover { background: var(--lx-bg-light); }

.lx-cart-item__thumb img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--lx-bg-light);
  border: 1px solid var(--lx-border);
}

.lx-cart-item__info a {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.lx-cart-item__info small { color: var(--lx-gray); }

.lx-cart-item__remove {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 10px;
  background: #fee2e2;
  color: #b91c1c;
}

.lx-cart-menu__totals {
  border-top: 1px solid var(--lx-border);
  padding: 16px;
  background: var(--lx-bg-light);
}

.lx-cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
}

.lx-cart-menu__actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.lx-cart-menu__actions .lx-btn { flex: 1; }

.lx-cart-menu__empty {
  padding: 36px 20px;
  text-align: center;
  color: var(--lx-gray);
}

.lx-cart-menu__empty i {
  font-size: 28px;
  margin-bottom: 10px;
  opacity: 0.4;
}

/* ---------- HEADER 3: Nav + Deal Zone ---------- */
.lx-header {
  overflow: visible;
}

.lx-header .lx-container {
  overflow: visible;
}

.lx-header__row--nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  /* Equal vertical rhythm — matches Deal Zone button optical center */
  padding: 12px 0;
  border-top: 1px solid #eef1f5;
  overflow: visible;
  position: relative;
  z-index: 40;
}

.lx-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  min-width: 0;
  flex: 1;
  overflow: visible;
  padding: 0;
  margin: 0;
}

.lx-nav__item {
  position: relative;
  flex-shrink: 0;
}

.lx-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 36px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: var(--lx-text);
  border-radius: 10px;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.lx-nav__chevron {
  font-size: 8px;
  opacity: 0.45;
  margin-top: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.lx-nav__link::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: var(--lx-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s var(--lx-ease);
}

.lx-nav__link:hover,
.lx-nav__item--drop.is-open > .lx-nav__link {
  color: var(--lx-primary);
  background: rgba(146, 32, 119, 0.05);
}

.lx-nav__link:hover::after,
.lx-nav__item--drop.is-open > .lx-nav__link::after {
  transform: scaleX(1);
}

.lx-nav__item--drop:hover .lx-nav__chevron,
.lx-nav__item--drop.is-open .lx-nav__chevron {
  transform: rotate(180deg);
  opacity: 0.8;
}

/* ---------- Advanced modern category mega-dropdown ---------- */
.lx-nav-drop {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: min(560px, calc(100vw - 48px));
  max-height: none;
  overflow: visible;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.22s var(--lx-ease),
    transform 0.28s var(--lx-ease),
    visibility 0.22s;
  z-index: 1200;
}

/* Hover bridge */
.lx-nav__item--drop::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
}

.lx-nav__item--drop:hover .lx-nav-drop,
.lx-nav__item--drop.is-open .lx-nav-drop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.lx-nav-drop__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 22px;
  box-shadow:
    0 2px 4px rgba(17, 24, 39, 0.03),
    0 18px 40px rgba(17, 24, 39, 0.1),
    0 40px 80px rgba(146, 32, 119, 0.08);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

/* Soft ambient glow behind panel */
.lx-nav-drop__inner::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(146, 32, 119, 0.35), rgba(4, 116, 68, 0.25), rgba(146, 32, 119, 0.1));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
}

/* Caret */
.lx-nav-drop__inner::after {
  content: '';
  position: absolute;
  left: 28px;
  top: -6px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid rgba(17, 24, 39, 0.08);
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  transform: rotate(45deg);
  z-index: 2;
}

.lx-nav-drop__main {
  padding: 18px 16px 16px;
  min-width: 0;
}

.lx-nav-drop__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 0 6px 14px;
  margin-bottom: 4px;
  border-bottom: 1px solid #eef1f5;
}

.lx-nav-drop__eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lx-gray);
  margin-bottom: 2px;
}

.lx-nav-drop__title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lx-text);
  line-height: 1.2;
}

.lx-nav-drop__count {
  flex-shrink: 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--lx-gradient-soft);
  color: var(--lx-primary);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.lx-nav-drop__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  margin: 0;
  padding: 10px 0 0;
  list-style: none;
  max-height: min(48vh, 280px);
  overflow-y: auto;
}

/* When many children, use 2 columns */
.lx-nav-drop__grid:has(> li:nth-child(5)) {
  grid-template-columns: 1fr 1fr;
}

.lx-nav-drop__card {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 14px;
  color: var(--lx-text);
  transition:
    background 0.2s ease,
    transform 0.2s var(--lx-ease),
    box-shadow 0.2s ease;
}

.lx-nav-drop__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f4f6f9 0%, #eef1f6 100%);
  color: var(--lx-primary);
  font-size: 14px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s var(--lx-ease);
}

.lx-nav-drop__meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.lx-nav-drop__name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lx-nav-drop__hint {
  font-size: 11px;
  font-weight: 500;
  color: var(--lx-gray);
  opacity: 0.85;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.lx-nav-drop__go {
  font-size: 10px;
  color: var(--lx-primary);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.22s var(--lx-ease);
}

.lx-nav-drop__card:hover {
  background: #fff;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
  transform: translateY(-1px);
}

.lx-nav-drop__card:hover .lx-nav-drop__icon {
  background: var(--lx-gradient);
  color: #fff;
  transform: scale(1.05);
}

.lx-nav-drop__card:hover .lx-nav-drop__hint {
  color: var(--lx-secondary);
  opacity: 1;
}

.lx-nav-drop__card:hover .lx-nav-drop__go {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger reveal */
.lx-nav__item--drop:hover .lx-nav-drop__card,
.lx-nav__item--drop.is-open .lx-nav-drop__card {
  animation: lx-drop-item-in 0.35s var(--lx-ease) both;
}

.lx-nav__item--drop:hover .lx-nav-drop__grid > li:nth-child(1) .lx-nav-drop__card,
.lx-nav__item--drop.is-open .lx-nav-drop__grid > li:nth-child(1) .lx-nav-drop__card { animation-delay: 0.03s; }
.lx-nav__item--drop:hover .lx-nav-drop__grid > li:nth-child(2) .lx-nav-drop__card,
.lx-nav__item--drop.is-open .lx-nav-drop__grid > li:nth-child(2) .lx-nav-drop__card { animation-delay: 0.06s; }
.lx-nav__item--drop:hover .lx-nav-drop__grid > li:nth-child(3) .lx-nav-drop__card,
.lx-nav__item--drop.is-open .lx-nav-drop__grid > li:nth-child(3) .lx-nav-drop__card { animation-delay: 0.09s; }
.lx-nav__item--drop:hover .lx-nav-drop__grid > li:nth-child(4) .lx-nav-drop__card,
.lx-nav__item--drop.is-open .lx-nav-drop__grid > li:nth-child(4) .lx-nav-drop__card { animation-delay: 0.12s; }
.lx-nav__item--drop:hover .lx-nav-drop__grid > li:nth-child(5) .lx-nav-drop__card,
.lx-nav__item--drop.is-open .lx-nav-drop__grid > li:nth-child(5) .lx-nav-drop__card { animation-delay: 0.15s; }
.lx-nav__item--drop:hover .lx-nav-drop__grid > li:nth-child(n+6) .lx-nav-drop__card,
.lx-nav__item--drop.is-open .lx-nav-drop__grid > li:nth-child(n+6) .lx-nav-drop__card { animation-delay: 0.18s; }

@keyframes lx-drop-item-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Featured aside */
.lx-nav-drop__aside {
  position: relative;
  padding: 12px;
  background:
    radial-gradient(ellipse 90% 70% at 20% 20%, rgba(146, 32, 119, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 90% 80%, rgba(4, 116, 68, 0.3) 0%, transparent 50%),
    linear-gradient(160deg, #12182a 0%, #0b1220 55%, #0d1a16 100%);
  color: #fff;
}

.lx-nav-drop__promo {
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.lx-nav-drop__promo::before {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  right: -30px;
  top: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 65%);
  pointer-events: none;
}

.lx-nav-drop__promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 5px 10px;
  margin-bottom: auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.lx-nav-drop__promo-badge i {
  font-size: 9px;
  color: #fbbf24;
}

.lx-nav-drop__promo-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #fff;
}

.lx-nav-drop__promo-text {
  margin: 0 0 16px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

.lx-nav-drop__promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--lx-primary) !important;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.22s var(--lx-ease), box-shadow 0.22s ease;
}

.lx-nav-drop__promo-btn i {
  font-size: 10px;
  transition: transform 0.22s var(--lx-ease);
}

.lx-nav-drop__promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  color: var(--lx-secondary) !important;
}

.lx-nav-drop__promo-btn:hover i {
  transform: translateX(3px);
}

/* Keep last few nav items' dropdowns from overflowing viewport */
.lx-nav__item--drop:nth-last-child(-n+3) .lx-nav-drop {
  left: auto;
  right: 0;
}

.lx-nav__item--drop:nth-last-child(-n+3) .lx-nav-drop__inner::after {
  left: auto;
  right: 28px;
}

@media (max-width: 720px) {
  .lx-nav-drop {
    width: min(340px, calc(100vw - 32px));
  }

  .lx-nav-drop__inner {
    grid-template-columns: 1fr;
  }

  .lx-nav-drop__aside {
    display: none;
  }

  .lx-nav-drop__grid:has(> li:nth-child(5)) {
    grid-template-columns: 1fr;
  }
}

/* Compact Deal Zone CTA — same optical height as nav links (36px) */
.lx-deal-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--lx-gradient);
  color: #fff !important;
  text-decoration: none !important;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 6px 16px rgba(146, 32, 119, 0.22);
  transition: transform 0.3s var(--lx-ease), box-shadow 0.3s var(--lx-ease);
  flex-shrink: 0;
  font-size: 12px;
  align-self: center;
}

.lx-deal-btn__glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.3), transparent 45%);
  animation: lx-deal-shine 3.5s ease-in-out infinite;
  z-index: -1;
}

@keyframes lx-deal-shine {
  0%, 100% { transform: translateX(-12%); opacity: 0.5; }
  50% { transform: translateX(18%); opacity: 0.85; }
}

.lx-deal-btn > .fa-bolt {
  font-size: 11px;
  opacity: 0.95;
}

.lx-deal-btn__title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.lx-deal-btn__badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.25);
  letter-spacing: 0.04em;
}

.lx-deal-btn__arrow {
  font-size: 10px;
  opacity: 0.9;
  transition: transform 0.3s var(--lx-ease);
}

.lx-deal-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(146, 32, 119, 0.32);
  color: #fff !important;
}

.lx-deal-btn:hover .lx-deal-btn__arrow {
  transform: translateX(2px);
}

.lx-deal-btn--drawer {
  width: 100%;
  height: 44px;
  margin-bottom: 18px;
  justify-content: center;
}

/* Account dropdown */
.lx-header-account {
  position: relative;
  padding: 0;
  margin: 0;
}

.lx-account-menu {
  width: 280px !important;
  border: 1px solid var(--lx-border) !important;
  border-radius: 20px !important;
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.14) !important;
  padding: 0 !important;
  margin-top: 12px !important;
  overflow: hidden;
  background: #fff !important;
}

.lx-account-menu__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(146, 32, 119, 0.08), rgba(4, 116, 68, 0.08));
  border-bottom: 1px solid var(--lx-border);
}

.lx-account-menu__avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--lx-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.lx-account-menu__head strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--lx-text);
  margin-bottom: 2px;
}

.lx-account-menu__head span {
  display: block;
  font-size: 12px;
  color: var(--lx-gray);
  line-height: 1.35;
}

.lx-account-menu__actions {
  display: grid;
  gap: 8px;
  padding: 14px 16px 16px;
}

.lx-account-menu__list {
  list-style: none;
  margin: 0;
  padding: 8px;
}

.lx-account-menu__list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lx-text);
  transition: background 0.2s, color 0.2s;
}

.lx-account-menu__list a i {
  width: 18px;
  text-align: center;
  color: var(--lx-primary);
  opacity: 0.85;
}

.lx-account-menu__list a:hover {
  background: var(--lx-bg-light);
  color: var(--lx-primary);
}

.lx-account-menu__foot {
  border-top: 1px solid var(--lx-border);
  padding: 8px;
  background: #fafbfc;
}

.lx-account-menu__logout {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #b91c1c !important;
}

.lx-account-menu__logout:hover {
  background: #fef2f2;
}

.lx-drawer__sub {
  padding-left: 28px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--lx-gray) !important;
}

/* Mega menu */
.lx-mega {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  transform: translateY(8px);
  width: min(640px, 90vw);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--lx-border);
  border-radius: 24px;
  box-shadow: var(--lx-shadow-lg);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s var(--lx-ease);
  z-index: 50;
}

.lx-nav__item--mega:hover .lx-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.lx-mega__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.lx-mega__card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--lx-border);
  background: #fff;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s;
}

.lx-mega__card i {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lx-gradient-soft);
  color: var(--lx-primary);
}

.lx-mega__card:hover {
  border-color: transparent;
  box-shadow: var(--lx-shadow);
  transform: translateY(-2px);
  color: var(--lx-text);
}

/* Drawer + search sheet */
.lx-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  visibility: hidden;
}

.lx-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.lx-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.5);
  opacity: 0;
  transition: opacity 0.35s;
}

.lx-drawer.is-open .lx-drawer__overlay { opacity: 1; }

.lx-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(340px, 88vw);
  height: 100%;
  background: #fff;
  padding: 24px;
  transform: translateX(-100%);
  transition: transform 0.4s var(--lx-ease);
  overflow-y: auto;
  box-shadow: var(--lx-shadow-lg);
}

.lx-drawer.is-open .lx-drawer__panel { transform: translateX(0); }

.lx-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.lx-drawer__nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  font-weight: 600;
  border-radius: 14px;
  margin-bottom: 4px;
  color: var(--lx-text);
}

.lx-drawer__nav a:hover {
  background: var(--lx-bg-light);
  color: var(--lx-primary);
}

.lx-search-sheet {
  position: fixed;
  inset: 0 0 auto;
  z-index: 2100;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--lx-border);
  box-shadow: var(--lx-shadow);
}

.lx-search-sheet[hidden] { display: none !important; }

.lx-header__search--sheet {
  position: static !important;
  width: 100% !important;
}

.lx-header__search--sheet .lx-search-form {
  box-shadow: none;
}

/* Homepage keeps white main header under dark topbar */
body.lx-home-page .lx-header-shell { background: #fff; }
body.lx-home-page .lx-header { background: #fff; }

@media (max-width: 1199px) {
  .lx-header__row--nav { display: none; }
  .lx-menu-toggle { display: inline-flex; }
  .lx-tool__text { display: none; }
  .lx-tool { padding: 4px; min-height: 0; }
  .lx-tool--cart { padding: 4px; }
  .lx-header__row--main {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    min-height: 70px;
  }
}

.lx-tool--mobile-search { display: none; }

@media (max-width: 767px) {
  .lx-header__search { display: none; }
  .lx-tool--mobile-search { display: inline-flex; }
  .lx-header__row--main { gap: 8px; padding: 10px 0; }
  .lx-logo img { max-height: 40px !important; max-width: 140px; }
}

/* Override legacy OpenCart layout chrome */
body.lx-theme #container {
  position: relative !important;
  margin-bottom: 0 !important;
  min-height: 100vh;
}

body.lx-theme #content,
body.lx-theme #column-left,
body.lx-theme #column-right {
  padding-bottom: 0 !important;
}

body.lx-theme #top,
body.lx-theme > #container > header:not(.lx-header),
body.lx-theme #menu.navbar {
  display: none !important;
}

body.lx-theme main { display: block; }

body.lx-theme footer.lx-footer {
  position: relative !important;
  bottom: auto !important;
  width: 100%;
  border: none !important;
  background: var(--lx-footer) !important;
  color: var(--lx-footer-muted);
  padding-top: 72px;
}

/* =========================================================
   HERO — Clean image slider (upload via Design → Banners)
   ========================================================= */
.lx-hero {
  position: relative;
  width: 100%;
  padding: 32px 0 36px;
  background:
    radial-gradient(ellipse 70% 80% at 15% 40%, rgba(146, 32, 119, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 70% at 85% 50%, rgba(4, 116, 68, 0.18), transparent 50%),
    linear-gradient(180deg, #070b14 0%, #0b1220 55%, #080d16 100%);
}

.lx-hero__frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #0b1220;
  box-shadow:
    0 4px 6px rgba(17, 24, 39, 0.04),
    0 24px 56px rgba(17, 24, 39, 0.12);
  aspect-ratio: 21 / 9;
  min-height: 320px;
  max-height: min(620px, 72vh);
}

.lx-hero__track {
  position: absolute;
  inset: 0;
}

.lx-hero__slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  color: inherit;
  text-decoration: none !important;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.7s;
}

.lx-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.lx-hero__img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.lx-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.12);
  filter: brightness(0.92);
  will-change: transform;
}

.lx-hero__slide.is-active .lx-hero__img {
  animation: lx-hero-kenburns 5.5s ease-out forwards;
  filter: brightness(1);
}

@keyframes lx-hero-kenburns {
  0% { transform: scale(1.14) translate3d(-1.5%, 0, 0); }
  100% { transform: scale(1) translate3d(0, 0, 0); }
}

.lx-hero__slide::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 11, 20, 0.55) 100%);
  pointer-events: none;
  z-index: 2;
}

.lx-hero__caption {
  position: absolute;
  left: 28px;
  right: auto;
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: min(520px, calc(100% - 56px));
  padding: 14px 16px 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  opacity: 0;
  transform: translateY(16px);
}

.lx-hero__slide.is-active .lx-hero__caption {
  animation: lx-hero-caption-in 0.65s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes lx-hero-caption-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.lx-hero__caption-text {
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #fff;
}

.lx-hero__caption-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #922077 0%, #047444 100%);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 8px 20px rgba(146, 32, 119, 0.35);
  transition: transform 0.2s ease;
}

.lx-hero__slide:hover .lx-hero__caption-cta {
  transform: translateX(2px);
}

.lx-hero__caption-cta i { font-size: 10px; }

.lx-hero__nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(7, 11, 20, 0.35);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.25s ease, background 0.2s ease, transform 0.2s ease;
}

.lx-hero__frame:hover .lx-hero__nav,
.lx-hero__frame:focus-within .lx-hero__nav {
  opacity: 1;
}

.lx-hero__nav--prev { left: 16px; }
.lx-hero__nav--next { right: 16px; }

.lx-hero__nav:hover {
  background: rgba(7, 11, 20, 0.55);
  transform: translateY(-50%) scale(1.05);
}

.lx-hero__pager {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(7, 11, 20, 0.35);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lx-hero__dot {
  position: relative;
  width: 28px;
  height: 4px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  overflow: hidden;
  cursor: pointer;
  transition: width 0.25s ease, background 0.2s ease;
}

.lx-hero__dot.is-active {
  width: 44px;
  background: rgba(255, 255, 255, 0.22);
}

.lx-hero__dot-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #922077, #047444);
}

.lx-hero.is-playing .lx-hero__dot.is-active .lx-hero__dot-fill {
  animation-name: lx-hero-progress;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@keyframes lx-hero-progress {
  from { width: 0%; }
  to { width: 100%; }
}

@media (max-width: 991px) {
  .lx-hero { padding: 20px 0 24px; }

  .lx-hero__frame {
    border-radius: 20px;
    aspect-ratio: 16 / 10;
    max-height: none;
  }

  .lx-hero__caption {
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    flex-direction: column;
    align-items: flex-start;
  }

  .lx-hero__nav {
    opacity: 1;
    width: 40px;
    height: 40px;
  }

  .lx-hero__nav--prev { left: 10px; }
  .lx-hero__nav--next { right: 10px; }
}

@media (max-width: 575px) {
  .lx-hero__frame {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lx-hero__slide.is-active .lx-hero__img,
  .lx-hero__slide.is-active .lx-hero__caption {
    animation: none !important;
  }
  .lx-hero__slide.is-active .lx-hero__img { transform: none; }
  .lx-hero__slide { transition: opacity 0.25s ease !important; }
}

/* =========================================================
   CATEGORIES
   ========================================================= */
.lx-cats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.lx-cat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 22px 16px 20px;
  background: #fff;
  border: 1px solid var(--lx-border);
  border-radius: 22px;
  text-align: center;
  color: var(--lx-text);
  overflow: hidden;
  transition:
    transform 0.35s var(--lx-ease),
    box-shadow 0.35s var(--lx-ease),
    border-color 0.35s ease;
}

.lx-cat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(146, 32, 119, 0.06), rgba(4, 116, 68, 0.05));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.lx-cat:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.1);
  border-color: transparent;
  color: var(--lx-text);
}

.lx-cat:hover::before {
  opacity: 1;
}

.lx-cat__media {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 84px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--lx-bg-light);
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.04);
  transition: transform 0.35s var(--lx-ease);
}

.lx-cat__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--lx-ease);
}

.lx-cat__icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--lx-primary);
  background: var(--lx-gradient-soft);
}

.lx-cat:hover .lx-cat__media {
  transform: scale(1.04);
}

.lx-cat:hover .lx-cat__img {
  transform: scale(1.08);
}

.lx-cat__body {
  position: relative;
  z-index: 1;
}

.lx-cat__name {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.lx-cat__count {
  font-size: 12px;
  color: var(--lx-gray);
  font-weight: 500;
}

.lx-cat__arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--lx-primary);
  background: rgba(146, 32, 119, 0.08);
  opacity: 0;
  transform: translate(4px, -4px);
  transition: opacity 0.25s ease, transform 0.25s var(--lx-ease);
}

.lx-cat:hover .lx-cat__arrow {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 1199px) {
  .lx-cats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 575px) {
  .lx-cats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .lx-cat { padding: 18px 12px 16px; }
  .lx-cat__media { width: 72px; height: 72px; border-radius: 18px; }
}

/* =========================================================
   BRANDS
   ========================================================= */
.lx-brands {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.lx-brands__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: lx-marquee 40s linear infinite;
}

.lx-brands__track:hover { animation-play-state: paused; }

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

.lx-brand {
  flex: 0 0 auto;
  width: 180px;
  height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--lx-border);
  border-radius: 20px;
  color: var(--lx-text);
  text-decoration: none !important;
  transition:
    transform 0.3s var(--lx-ease),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.lx-brand__img {
  width: 100%;
  height: 48px;
  object-fit: contain;
  display: block;
  filter: grayscale(0.15);
  opacity: 0.92;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.lx-brand__name {
  font-size: 11px;
  font-weight: 600;
  color: var(--lx-gray);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.lx-brand:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.1);
  border-color: transparent;
  color: var(--lx-text);
}

.lx-brand:hover .lx-brand__img {
  filter: none;
  opacity: 1;
  transform: scale(1.04);
}

.lx-brand:hover .lx-brand__name {
  color: var(--lx-primary);
}

/* =========================================================
   PRODUCT CARDS
   ========================================================= */
.lx-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lx-products--carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  -webkit-overflow-scrolling: touch;
}

.lx-products--carousel .lx-product {
  flex: 0 0 calc(25% - 18px);
  min-width: 260px;
  scroll-snap-align: start;
}

.lx-carousel-nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 20px;
}

.lx-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--lx-border);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.lx-carousel-btn:hover {
  background: var(--lx-gradient);
  border-color: transparent;
  color: #fff;
}

.lx-product {
  background: #fff;
  border: 1px solid var(--lx-border);
  border-radius: var(--lx-radius);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--lx-ease), box-shadow 0.4s var(--lx-ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.lx-product:hover {
  transform: translateY(-6px);
  box-shadow: var(--lx-shadow-lg);
}

.lx-product__media {
  position: relative;
  aspect-ratio: 1;
  background: var(--lx-bg-light);
  overflow: hidden;
}

.lx-product__gallery {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.lx-product__media img,
.lx-product__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: opacity 0.35s ease, transform 0.45s var(--lx-ease);
}

.lx-product__gallery .lx-product__img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  pointer-events: none;
}

.lx-product__gallery .lx-product__img.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}

/* Hover zones across image for quick multi-image peek */
.lx-product__zones {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
}

.lx-product__zones span {
  display: block;
  height: 100%;
}

.lx-product__dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 24, 39, 0.06);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lx-product--gallery:hover .lx-product__dots,
.lx-product--gallery:focus-within .lx-product__dots {
  opacity: 1;
}

.lx-product__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.22);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.lx-product__dot.is-active {
  width: 18px;
  background: linear-gradient(90deg, #922077, #047444);
}

/* Legacy 2-image hover fallback (if old classes still present) */
.lx-product__media .lx-product__img--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.lx-product:hover .lx-product__img--main { opacity: 0; transform: scale(1.05); }
.lx-product:hover .lx-product__img--hover { opacity: 1; transform: scale(1.02); }

.lx-product__badges {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lx-badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}

.lx-badge--sale { background: var(--lx-primary); }
.lx-badge--new { background: linear-gradient(135deg, #922077, #047444); }
.lx-badge--stock { background: var(--lx-secondary); }
.lx-badge--out { background: var(--lx-gray); }

.lx-product__actions {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.35s var(--lx-ease);
}

.lx-product:hover .lx-product__actions {
  opacity: 1;
  transform: translateX(0);
}

.lx-product__action {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--lx-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lx-text);
  transition: all 0.25s;
}

.lx-product__action:hover {
  background: var(--lx-gradient);
  color: #fff;
  transform: scale(1.08);
}

.lx-product__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.lx-product__brand {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lx-gray);
  margin-bottom: 6px;
}

.lx-product__name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lx-product__name a:hover { color: var(--lx-primary); }

.lx-product__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
  color: #f59e0b;
  font-size: 12px;
}

.lx-product__rating span {
  color: var(--lx-gray);
  margin-left: 4px;
}

.lx-product__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
  margin-top: auto;
}

.lx-product__price-new {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--lx-text);
}

.lx-product__price-old {
  font-size: 0.9rem;
  color: var(--lx-gray);
  text-decoration: line-through;
}

.lx-product__cart {
  width: 100%;
}

/* OpenCart product-thumb compatibility */
.product-thumb {
  background: #fff;
  border: 1px solid var(--lx-border);
  border-radius: var(--lx-radius);
  overflow: hidden;
  position: relative;
  height: 100%;
  transition: transform 0.4s var(--lx-ease), box-shadow 0.4s var(--lx-ease);
}

.product-thumb:hover {
  transform: translateY(-6px);
  box-shadow: var(--lx-shadow-lg);
}

.product-thumb .image {
  aspect-ratio: 1;
  background: var(--lx-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-thumb .image img {
  max-height: 100%;
  object-fit: contain;
}

.product-thumb .description {
  padding: 20px;
  margin-bottom: 0;
}

.product-thumb .description h4 {
  font-size: 15px;
  font-weight: 600;
}

.product-thumb .description h4 a { text-decoration: none; }
.product-thumb .description p { display: none; }

.product-thumb .button {
  display: flex;
  position: static;
  width: 100%;
  padding: 0 16px 16px;
  gap: 8px;
}

.product-thumb .button button {
  flex: 1;
  border: none;
  border-radius: 12px;
  background: var(--lx-bg-light);
  color: var(--lx-text);
  line-height: 42px;
  transition: all 0.3s;
}

.product-thumb .button button:first-child {
  background: var(--lx-gradient);
  color: #fff;
  flex: 2;
}

.product-thumb .button button:hover {
  transform: scale(1.02);
  background: var(--lx-primary);
  color: #fff;
}

@media (max-width: 1199px) {
  .lx-products { grid-template-columns: repeat(3, 1fr); }
  .lx-products--carousel .lx-product { flex: 0 0 calc(33.33% - 16px); }
}

@media (max-width: 767px) {
  .lx-products { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .lx-products--carousel .lx-product { flex: 0 0 calc(80% - 12px); min-width: 220px; }
}

/* =========================================================
   HOW TO BUY
   ========================================================= */
.lx-howto {
  background: var(--lx-bg-light);
  border-radius: 32px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.lx-howto::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--lx-gradient-soft);
  filter: blur(40px);
}

.lx-howto__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.lx-step {
  text-align: center;
  padding: 28px 16px;
  background: #fff;
  border-radius: var(--lx-radius);
  border: 1px solid var(--lx-border);
  transition: transform 0.35s, box-shadow 0.35s;
}

.lx-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--lx-shadow);
}

.lx-step__num {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: var(--lx-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lx-step__icon {
  font-size: 28px;
  color: var(--lx-primary);
  margin-bottom: 14px;
}

.lx-step h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.lx-step p {
  font-size: 13px;
  color: var(--lx-gray);
  margin: 0;
}

@media (max-width: 991px) {
  .lx-howto { padding: 40px 24px; }
  .lx-howto__steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .lx-howto__steps { grid-template-columns: 1fr; }
}

/* =========================================================
   DEAL ZONE — multi-image carousel (upload via Banners)
   ========================================================= */
.lx-deal {
  border-radius: 32px;
  background:
    radial-gradient(ellipse 50% 60% at 85% 20%, rgba(255, 255, 255, 0.12), transparent 55%),
    linear-gradient(135deg, #922077 0%, #6b1a6a 42%, #047444 100%);
  padding: 40px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.lx-deal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 12px;
}

.lx-deal__eyebrow i { color: #fbbf24; }

.lx-deal h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.lx-deal__copy p {
  opacity: 0.88;
  margin-bottom: 24px;
  max-width: 420px;
}

.lx-countdown {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.lx-countdown__item {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  min-width: 68px;
  padding: 12px 10px;
  text-align: center;
}

.lx-countdown__item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.lx-countdown__item span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

.lx-deal__stage {
  position: relative;
  z-index: 1;
}

.lx-deal__viewport {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.lx-deal__slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s var(--lx-ease), visibility 0.55s;
  color: inherit;
  text-decoration: none !important;
}

.lx-deal__slide.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.lx-deal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  transition: transform 5s ease-out;
}

.lx-deal__slide.is-active .lx-deal__img {
  transform: scale(1);
}

.lx-deal__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 22px 22px;
  background: linear-gradient(180deg, transparent, rgba(7, 11, 20, 0.78));
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lx-deal__badge {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--lx-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lx-deal__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.lx-deal__sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.lx-deal__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.lx-deal__nav {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lx-deal__nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lx-deal__dots {
  display: flex;
  gap: 8px;
}

.lx-deal__dot {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  padding: 0;
  transition: width 0.25s ease, background 0.25s ease;
}

.lx-deal__dot.is-active {
  width: 22px;
  background: #fff;
}

.lx-deal__progress {
  margin-top: 10px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.lx-deal__progress span {
  display: block;
  height: 100%;
  width: 0;
  background: #fff;
}

.lx-deal.is-playing .lx-deal__progress span {
  animation-name: lx-hero-progress;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@media (max-width: 991px) {
  .lx-deal {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    text-align: center;
  }

  .lx-deal__copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .lx-countdown { justify-content: center; }
}

/* =========================================================
   WHY CHOOSE US — editorial split layout
   ========================================================= */
.lx-why {
  padding: 96px 0;
  background:
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(146, 32, 119, 0.06), transparent 50%),
    #f7f8fb;
}

.lx-why__layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: start;
}

.lx-why__headline {
  margin: 12px 0 16px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--lx-text);
  max-width: 12ch;
}

.lx-why__lead {
  margin: 0 0 32px;
  max-width: 36ch;
  color: var(--lx-gray);
  font-size: 1.05rem;
  line-height: 1.65;
}

.lx-why__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.lx-why__stats strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--lx-text);
  background: var(--lx-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lx-why__stats span {
  font-size: 12px;
  color: var(--lx-gray);
  font-weight: 500;
}

.lx-why__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lx-why__row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--lx-border);
  border-radius: 18px;
  transition: transform 0.3s var(--lx-ease), box-shadow 0.3s ease, border-color 0.3s ease;
  animation: lx-why-row-in 0.55s var(--lx-ease) both;
  animation-delay: calc(var(--i, 0) * 0.06s);
}

@keyframes lx-why-row-in {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}

.lx-why__row:hover {
  transform: translateX(4px);
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.08);
  border-color: transparent;
}

.lx-why__row-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lx-gradient-soft);
  color: var(--lx-primary);
  font-size: 16px;
}

.lx-why__row h4 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lx-why__row p {
  margin: 0;
  font-size: 13px;
  color: var(--lx-gray);
  line-height: 1.45;
}

.lx-why__row-num {
  font-size: 18px;
  font-weight: 800;
  color: rgba(17, 24, 39, 0.08);
  letter-spacing: -0.03em;
}

@media (max-width: 991px) {
  .lx-why { padding: 64px 0; }
  .lx-why__layout { grid-template-columns: 1fr; gap: 36px; }
  .lx-why__headline { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  .lx-why__row { animation: none !important; }
}

/* =========================================================
   CONNECT WITH US — board / wordmark layout
   ========================================================= */
.lx-connect {
  padding: 24px 0 40px;
  background: #fff;
}

/* Tighten gap after Top Selling / Trending Now */
#top-mobiles.lx-section {
  padding-top: 72px;
  padding-bottom: 32px;
}

#top-mobiles .lx-section__head {
  margin-bottom: 28px;
}

.lx-connect__board {
  position: relative;
  border-radius: 32px;
  padding: 48px 44px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(146, 32, 119, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(4, 116, 68, 0.1), transparent 45%),
    linear-gradient(145deg, #0b1220 0%, #141c2e 55%, #0d1a16 100%);
  color: #fff;
  box-shadow: 0 28px 60px rgba(17, 24, 39, 0.16);
}

.lx-connect__kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.lx-connect__wordmark {
  margin: 0 0 14px;
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: #fff;
}

.lx-connect__wordmark span {
  background: var(--lx-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lx-connect__text {
  margin: 0 0 28px;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
  line-height: 1.6;
}

.lx-connect__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.lx-connect__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff !important;
  text-decoration: none !important;
  transition: transform 0.25s var(--lx-ease), background 0.25s ease, border-color 0.25s ease;
}

.lx-connect__pill i {
  color: var(--lx-social, #fff);
  font-size: 15px;
}

.lx-connect__pill span {
  font-size: 13px;
  font-weight: 700;
}

.lx-connect__pill em {
  font-style: normal;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.lx-connect__pill:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.lx-connect__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lx-connect__cta strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.lx-connect__cta span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 767px) {
  .lx-connect__board { padding: 32px 22px; }
  .lx-connect__pill em { display: none; }
}

/* Deal ends label */
.lx-deal__timer-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 8px;
}

.lx-deal__ends {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* =========================================================
   FOOTER — editorial / non-generic
   ========================================================= */
.lx-footer {
  position: relative;
  background: #070b14;
  color: rgba(255, 255, 255, 0.62);
  padding: 88px 0 0;
  overflow: hidden;
  border: none;
  margin-top: 0;
}

.lx-footer__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 10% 0%, rgba(146, 32, 119, 0.28), transparent 55%),
    radial-gradient(ellipse 45% 35% at 90% 10%, rgba(4, 116, 68, 0.22), transparent 50%);
}

.lx-footer .lx-container { position: relative; z-index: 1; }

.lx-footer a { color: rgba(255, 255, 255, 0.62); }
.lx-footer a:hover { color: #fff; }

.lx-footer__hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: end;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 36px;
}

.lx-footer__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.lx-footer__headline {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: #fff;
  max-width: 14ch;
}

.lx-footer__tagline {
  margin: 0;
  max-width: 40ch;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

.lx-footer__subscribe label {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.lx-footer__subscribe-row {
  display: flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lx-footer__subscribe input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: #fff;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}

.lx-footer__subscribe input::placeholder { color: rgba(255, 255, 255, 0.35); }

.lx-footer__subscribe button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  background: var(--lx-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}

.lx-footer__rail {
  display: grid;
  gap: 28px;
  margin-bottom: 40px;
}

.lx-footer__nav-block span {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.lx-footer__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lx-footer__chips a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.lx-footer__chips a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.lx-footer__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 28px;
}

.lx-footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-size: 13px;
}

.lx-footer__contact a,
.lx-footer__contact span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lx-footer__contact i {
  color: var(--lx-primary);
  opacity: 0.9;
}

.lx-footer__social {
  display: flex;
  gap: 8px;
}

.lx-footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.lx-footer__social a:hover {
  transform: translateY(-3px);
  background: var(--lx-gradient);
  border-color: transparent;
  color: #fff;
}

.lx-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
}

.lx-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lx-footer__legal p {
  margin: 0;
}

.lx-footer__credit {
  color: var(--lx-footer-muted);
}

.lx-footer__credit a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.lx-footer__credit a:hover {
  color: #fff;
  text-decoration: underline;
}

.lx-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lx-payments span {
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 991px) {
  .lx-footer__hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lx-footer__headline { max-width: none; }
}

@media (max-width: 575px) {
  .lx-footer { padding-top: 64px; }
  .lx-footer__bottom { flex-direction: column; text-align: center; }
  .lx-footer__meta { flex-direction: column; align-items: flex-start; }
}

body.lx-theme footer.lx-footer {
  position: relative !important;
  bottom: auto !important;
  width: 100%;
  border: none !important;
  background: #070b14 !important;
  color: rgba(255, 255, 255, 0.62);
  padding-top: 88px;
}

/* =========================================================
   MOBILE BOTTOM NAV
   ========================================================= */
.lx-mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1010;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--lx-border);
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 30px rgba(17, 24, 39, 0.08);
}

.lx-mobile-nav__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.lx-mobile-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 500;
  color: var(--lx-gray);
  padding: 6px 12px;
  min-width: 56px;
  border-radius: 12px;
}

.lx-mobile-nav a i { font-size: 18px; }
.lx-mobile-nav a.is-active,
.lx-mobile-nav a:hover { color: var(--lx-primary); }

@media (max-width: 767px) {
  .lx-mobile-nav { display: block; }
  body.lx-theme { padding-bottom: 72px; }
  .lx-section { padding: 56px 0; }
}

/* =========================================================
   HOME LAYOUT
   ========================================================= */
.lx-home { width: 100%; }

.lx-home .container,
#common-home.container {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

#common-home > .row {
  margin: 0;
  display: block;
}

#common-home #content.col {
  width: 100%;
  max-width: 100%;
  padding: 0;
  flex: none;
}

/* Modules inside home */
.lx-modules {
  max-width: var(--lx-container);
  margin: 0 auto;
  padding: 40px 24px;
}

/* Breadcrumb polish — global, all pages */
.breadcrumb,
.lx-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0 0 16px;
  padding: 10px 16px;
  border: 1px solid var(--lx-border);
  border-radius: var(--lx-radius-sm);
  background: var(--lx-bg-light);
  font-size: 13px;
}

.breadcrumb > li.breadcrumb-item:after {
  border-color: var(--lx-border);
}

.lx-breadcrumb .breadcrumb-item {
  display: inline-flex;
  align-items: center;
  color: var(--lx-gray);
}

.lx-breadcrumb .breadcrumb-item:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: var(--lx-border);
}

.lx-breadcrumb .breadcrumb-item a {
  color: var(--lx-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.lx-breadcrumb .breadcrumb-item a:hover {
  color: var(--lx-primary);
}

.lx-breadcrumb .breadcrumb-item.is-current {
  color: var(--lx-primary);
  font-weight: 600;
}

/* Tighter gap below sticky header on inner pages */
body.lx-theme:not(.lx-home-page) .lx-pd,
body.lx-theme:not(.lx-home-page) .lx-category,
body.lx-theme:not(.lx-home-page) #container > .container,
body.lx-theme:not(.lx-home-page) main > .lx-account-area,
body.lx-theme:not(.lx-home-page) main > .lx-checkout-area,
body.lx-theme:not(.lx-home-page) main > .lx-cms-area,
body.lx-theme:not(.lx-home-page) main > .lx-page-area {
  padding-top: 12px;
}

body.lx-theme:not(.lx-home-page) .lx-container > .lx-breadcrumb:first-child,
body.lx-theme:not(.lx-home-page) .lx-container > nav.lx-breadcrumb:first-child,
body.lx-theme:not(.lx-home-page) main .lx-account-area > .lx-container > nav.lx-breadcrumb:first-child,
body.lx-theme:not(.lx-home-page) main .lx-checkout-area > .lx-container > nav.lx-breadcrumb:first-child,
body.lx-theme:not(.lx-home-page) main .lx-cms-area > .lx-container > nav.lx-breadcrumb:first-child,
body.lx-theme:not(.lx-home-page) main .lx-page-area > .lx-container > nav.lx-breadcrumb:first-child {
  margin-top: 0;
}

/* Cookie */
#cookie {
  border-radius: 16px 16px 0 0;
  background: var(--lx-footer) !important;
}

/* AOS helpers (fallback if CDN delayed) */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate { opacity: 1; }

/* Accessibility */
.lx-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.lx-btn:focus-visible,
.lx-icon-btn:focus-visible,
.lx-nav__link:focus-visible {
  outline: 2px solid var(--lx-primary);
  outline-offset: 3px;
}

/* =========================================================
   CATEGORY PAGE — luxury listing layout
   ========================================================= */
body.lx-category-page #container {
  background: #fff;
}

.lx-category {
  padding: 12px 0 72px;
}

.lx-category-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 48px;
  padding: 40px 44px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 90% at 100% 0%, rgba(146, 32, 119, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 70% at 0% 100%, rgba(4, 116, 68, 0.12), transparent 50%),
    linear-gradient(145deg, #0b1220 0%, #141c2e 58%, #0d1a16 100%);
  color: #fff;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.14);
}

.lx-category-hero:not(.lx-category-hero--has-image) {
  grid-template-columns: 1fr;
}

.lx-category-hero__title {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
}

.lx-category-hero__meta {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.lx-category-hero__desc {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.7;
}

.lx-category-hero__desc p:last-child {
  margin-bottom: 0;
}

.lx-category-hero__visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lx-category-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lx-category-subcats {
  margin-bottom: 48px;
}

.lx-cats--compact {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.lx-category-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.lx-category-layout:not(:has(.lx-category-sidebar)) {
  grid-template-columns: 1fr;
}

.lx-category-sidebar #column-left {
  width: 100% !important;
  max-width: none;
  display: block !important;
  padding: 0;
}

.lx-category-sidebar .card,
.lx-category-sidebar .list-group {
  border-radius: var(--lx-radius-sm);
  border-color: var(--lx-border);
  box-shadow: none;
}

.lx-category-sidebar .list-group-item {
  border-color: var(--lx-border);
  font-size: 14px;
}

.lx-category-sidebar .list-group-item a {
  color: var(--lx-text);
  text-decoration: none;
}

.lx-category-sidebar .list-group-item a:hover {
  color: var(--lx-primary);
}

.lx-category-main {
  min-width: 0;
}

.lx-category-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 16px 18px;
  border: 1px solid var(--lx-border);
  border-radius: var(--lx-radius-sm);
  background: var(--lx-bg-light);
}

.lx-category-toolbar__left,
.lx-category-toolbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lx-chip-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--lx-border);
  background: #fff;
  color: var(--lx-text);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.lx-chip-btn:hover {
  border-color: transparent;
  background: var(--lx-gradient);
  color: #fff;
}

.lx-category-toolbar__results {
  font-size: 13px;
  color: var(--lx-gray);
}

.lx-select-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lx-select-wrap__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lx-gray);
  white-space: nowrap;
}

.lx-select {
  min-width: 160px;
  padding: 10px 14px;
  border: 1px solid var(--lx-border);
  border-radius: 12px;
  background: #fff;
  color: var(--lx-text);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lx-select:focus {
  outline: none;
  border-color: var(--lx-primary);
  box-shadow: 0 0 0 3px rgba(146, 32, 119, 0.12);
}

.lx-products--listing {
  margin-bottom: 32px;
}

.lx-category-pagination {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.lx-category-pagination .pagination {
  gap: 6px;
  margin: 0;
}

.lx-category-pagination .page-link {
  border: 1px solid var(--lx-border);
  border-radius: 12px;
  color: var(--lx-text);
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: none;
}

.lx-category-pagination .page-item.active .page-link {
  background: var(--lx-gradient);
  border-color: transparent;
  color: #fff;
}

.lx-category-pagination .page-link:hover {
  background: var(--lx-bg-light);
  border-color: var(--lx-primary);
  color: var(--lx-primary);
}

.lx-category-empty {
  text-align: center;
  padding: 72px 24px;
  border: 1px dashed var(--lx-border);
  border-radius: var(--lx-radius);
  background: var(--lx-bg-light);
}

.lx-category-empty__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--lx-primary);
  font-size: 28px;
  box-shadow: var(--lx-shadow);
}

.lx-category-empty h2 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.lx-category-empty p {
  margin: 0 0 24px;
  color: var(--lx-gray);
}

@media (max-width: 991px) {
  .lx-category-hero {
    grid-template-columns: 1fr;
    padding: 32px 28px;
  }

  .lx-category-layout {
    grid-template-columns: 1fr;
  }

  .lx-category-sidebar {
    order: 2;
  }

  .lx-products--listing {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .lx-category {
    padding-top: 16px;
  }

  .lx-category-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .lx-category-toolbar__right {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .lx-select-wrap {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .lx-select {
    width: 100%;
    min-width: 0;
  }

  .lx-products--listing {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
