/* =========================================================
   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;
  scroll-padding-top: calc(var(--lx-header-h) + 28px);
  -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.lx-alert-sink {
  position: fixed;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  z-index: -1;
  pointer-events: none;
}

/* Modern cart / action toasts — top center under sticky header (easy to see) */
.lx-toast-root {
  position: fixed;
  top: calc(var(--lx-header-h, 72px) + 14px);
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translateX(-50%);
  z-index: 10050;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(440px, calc(100% - 24px));
  max-width: 440px;
  pointer-events: none;
  overflow: visible;
}

.lx-toast {
  pointer-events: auto;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #0f172a;
  color: #fff;
  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: translate3d(0, -12px, 0);
  opacity: 0;
  transition:
    transform 0.42s var(--lx-ease, cubic-bezier(0.22, 1, 0.36, 1)),
    opacity 0.28s ease;
}

.lx-toast.is-in {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.lx-toast.is-out {
  transform: translate3d(0, -10px, 0);
  opacity: 0;
}

.lx-toast--error {
  background: #7f1d1d;
  box-shadow:
    0 20px 50px rgba(127, 29, 29, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.lx-toast--error .lx-toast__icon {
  background: linear-gradient(145deg, #ef4444, #b91c1c);
  box-shadow: 0 10px 24px rgba(185, 28, 28, 0.35);
}

.lx-toast--error .lx-toast__glow {
  background: radial-gradient(circle, rgba(248, 113, 113, 0.4), transparent 68%);
}

.lx-toast--error .lx-toast__progress > span {
  background: linear-gradient(90deg, #fca5a5, #ef4444);
}

.lx-toast__glow {
  position: absolute;
  inset: auto -20% -40% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 116, 68, 0.45), transparent 68%);
  pointer-events: none;
}

.lx-toast__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 18px 18px 14px;
}

.lx-toast__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(4, 116, 68, 0.9), rgba(146, 32, 119, 0.75));
  box-shadow: 0 10px 24px rgba(4, 116, 68, 0.28);
  font-size: 18px;
}

.lx-toast--cart .lx-toast__icon {
  animation: lx-toast-pop 0.55s var(--lx-ease, cubic-bezier(0.22, 1, 0.36, 1)) both;
}

.lx-toast__copy {
  min-width: 0;
  padding-top: 2px;
}

.lx-toast__eyebrow {
  display: block;
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.lx-toast__title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.lx-toast__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.lx-toast__text a {
  color: #b8e6cf;
  font-weight: 600;
  text-decoration: none;
}

.lx-toast__text a:hover {
  text-decoration: underline;
}

.lx-toast__close {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lx-toast__close:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.lx-toast__actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  padding: 0 18px 16px;
}

.lx-toast__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.lx-toast__btn:hover {
  transform: translateY(-1px);
}

.lx-toast__btn--primary {
  background: #fff;
  color: #0f172a;
}

.lx-toast__btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.lx-toast__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.lx-toast__progress > span {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left center;
  background: linear-gradient(90deg, #047444, #922077);
  animation: lx-toast-progress linear forwards;
}

.lx-cart.is-toast-pulse .lx-tool__icon {
  animation: lx-cart-pulse 0.7s ease;
}

@keyframes lx-toast-pop {
  0% { transform: scale(0.6); opacity: 0; }
  60% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); }
}

@keyframes lx-toast-progress {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}

@keyframes lx-cart-pulse {
  0%, 100% { transform: scale(1); }
  40% { transform: scale(1.12); }
  70% { transform: scale(0.96); }
}

@media (prefers-reduced-motion: reduce) {
  .lx-toast,
  .lx-toast--cart .lx-toast__icon,
  .lx-toast__progress > span,
  .lx-cart.is-toast-pulse .lx-tool__icon,
  .lx-cart.is-toast-pulse {
    animation: none !important;
    transition: none !important;
  }
  .lx-toast { opacity: 1; transform: none; }
}

.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 {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 10px 0 8px;
}

/* Keep autocomplete / account menu above the nav + Deal Zone stacking context */
.lx-header__row--main:has(.lx-search-form.is-suggest-open),
.lx-header__row--main:has(.lx-search-form:focus-within),
.lx-header__row--main:has(.dropdown.show),
.lx-header__row--main:has(.dropdown-menu.show) {
  z-index: 1300;
}

.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;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.lx-header__search:has(.is-suggest-open),
.lx-header__search:focus-within {
  z-index: 1300;
}

.lx-search-form {
  position: relative;
  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,
.lx-search-form.is-suggest-open {
  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.is-suggest-open {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 1300;
}

.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);
}

/* Header search autocomplete */
.lx-search-suggest {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 1301;
  max-height: min(70vh, 420px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(17, 24, 39, 0.16);
  padding: 8px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.22s var(--lx-ease), transform 0.22s var(--lx-ease);
}

.lx-search-suggest:not([hidden]) {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lx-search-suggest__group + .lx-search-suggest__group {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid var(--lx-border);
}

.lx-search-suggest__label {
  display: block;
  padding: 6px 12px 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

.lx-search-suggest__item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--lx-text);
  text-decoration: none;
  transition: background 0.18s var(--lx-ease), transform 0.18s var(--lx-ease);
}

.lx-search-suggest__item:hover,
.lx-search-suggest__item.is-active {
  background: rgba(146, 32, 119, 0.07);
  color: var(--lx-text);
}

.lx-search-suggest__thumb {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f4f6f9;
  object-fit: contain;
  display: block;
}

.lx-search-suggest__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lx-gradient-soft);
  color: var(--lx-primary);
  font-size: 14px;
}

.lx-search-suggest__meta {
  flex: 1;
  min-width: 0;
}

.lx-search-suggest__name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lx-search-suggest__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lx-primary);
}

.lx-search-suggest__price s {
  color: #94a3b8;
  font-weight: 500;
}

.lx-search-suggest__empty,
.lx-search-suggest__status {
  padding: 18px 14px;
  text-align: center;
  color: var(--lx-gray);
  font-size: 13px;
}

.lx-search-suggest__all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--lx-bg-light);
  color: var(--lx-primary);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s var(--lx-ease), transform 0.18s var(--lx-ease);
}

.lx-search-suggest__all:hover,
.lx-search-suggest__all.is-active {
  background: rgba(146, 32, 119, 0.1);
  color: var(--lx-primary);
}

.lx-header__search--sheet .lx-search-suggest {
  max-height: min(55vh, 360px);
}

/* Improved tool icons */
.lx-header__actions {
  position: relative;
  z-index: 50;
  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;
  border: 1px solid rgba(17, 24, 39, 0.08) !important;
  border-radius: 14px !important;
  box-shadow:
    0 4px 6px rgba(17, 24, 39, 0.03),
    0 18px 40px rgba(17, 24, 39, 0.12) !important;
  margin-top: 10px !important;
}

.lx-cart-menu__list {
  max-height: 280px;
  overflow: auto;
  padding: 10px;
}

.lx-cart-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 10px;
}

.lx-cart-item:hover { background: rgba(146, 32, 119, 0.05); }

.lx-cart-item__thumb img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 10px;
  background: #fafbfc;
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.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: 30px;
  height: 30px;
  border: 0;
  border-radius: 8px;
  background: #fee2e2;
  color: #b91c1c;
}

.lx-cart-menu__totals {
  border-top: 1px solid rgba(17, 24, 39, 0.06);
  padding: 14px 16px 16px;
  background: #fafbfc;
}

.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: 12px;
}

.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: stretch;
  gap: 2px;
  flex-wrap: wrap;
  min-width: 0;
  flex: 1;
  overflow: visible;
  padding: 0;
  margin: 0;
}

.lx-nav__item {
  position: static;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.lx-nav__item--drop {
  /* Tall hit area so mouse can travel into megamenu without leaving the item */
  position: static;
}

.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;
}

/* ---------- Luxury full-width category megamenu ---------- */
.lx-nav-drop {
  position: absolute;
  /* Overlap nav row deeply so pointer never falls through a gap */
  top: calc(100% - 22px);
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  padding-top: 22px;
  margin: 0;
  background: transparent;
  border: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition:
    opacity 0.18s var(--lx-ease),
    transform 0.2s var(--lx-ease),
    visibility 0s linear 0.18s;
  z-index: 1200;
}

.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);
  transition-delay: 0s;
}

/* Invisible bridge strip under the trigger link */
.lx-nav__item--drop::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 28px;
  z-index: 1199;
  pointer-events: none;
}

.lx-nav__item--drop:hover::before,
.lx-nav__item--drop.is-open::before {
  pointer-events: auto;
}

.lx-nav-drop__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 240px) minmax(0, 1fr);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background:
    linear-gradient(165deg, #ffffff 0%, #fbfcfe 48%, #f6f8fb 100%);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-top: 1px solid transparent;
  border-radius: 0 0 18px 18px;
  box-shadow:
    0 24px 56px rgba(17, 24, 39, 0.12),
    0 8px 20px rgba(146, 32, 119, 0.06);
  overflow: hidden;
}

.lx-nav-drop__panel::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: var(--lx-gradient);
  opacity: 0.9;
  z-index: 3;
}

.lx-nav-drop__panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(146, 32, 119, 0.05), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(4, 116, 68, 0.05), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.lx-nav-drop__showcase {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 28px 22px 26px;
  min-height: 260px;
  color: #fff;
  background:
    linear-gradient(160deg, #151a28 0%, #0f1420 42%, #0c1a16 100%);
  overflow: hidden;
}

.lx-nav-drop__showcase-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 15% 20%, rgba(146, 32, 119, 0.45) 0%, transparent 58%),
    radial-gradient(ellipse 80% 60% at 95% 85%, rgba(4, 116, 68, 0.35) 0%, transparent 55%);
  pointer-events: none;
}

.lx-nav-drop__showcase::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  right: -50px;
  top: -40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.lx-nav-drop__showcase::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  right: 20px;
  top: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.lx-nav-drop__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-bottom: auto;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.lx-nav-drop__eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--lx-primary), var(--lx-secondary));
}

.lx-nav-drop__showcase-title {
  position: relative;
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
}

.lx-nav-drop__showcase-text {
  position: relative;
  margin: 0 0 6px;
  max-width: 18em;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
}

.lx-nav-drop__all {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-start;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--lx-primary) !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition:
    gap 0.2s var(--lx-ease),
    transform 0.2s var(--lx-ease),
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.lx-nav-drop__all i {
  font-size: 10px;
  transition: transform 0.2s var(--lx-ease);
}

.lx-nav-drop__all:hover {
  gap: 11px;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  color: var(--lx-secondary) !important;
}

.lx-nav-drop__all:hover i {
  transform: translateX(3px);
}

.lx-nav-drop__main {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 8px 8px 12px;
}

.lx-nav-drop__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 4px;
  padding: 10px 10px 12px;
  max-height: min(58vh, 400px);
  overflow-x: hidden;
  overflow-y: auto;
}

.lx-nav-drop__group {
  min-width: 0;
  padding: 14px 12px 16px;
  border-radius: 14px;
  background: transparent;
  transition:
    background 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s var(--lx-ease);
  animation: lx-mega-group-in 0.4s var(--lx-ease) both;
}

.lx-nav__item--drop:hover .lx-nav-drop__group:nth-child(1),
.lx-nav__item--drop.is-open .lx-nav-drop__group:nth-child(1) { animation-delay: 0.04s; }
.lx-nav__item--drop:hover .lx-nav-drop__group:nth-child(2),
.lx-nav__item--drop.is-open .lx-nav-drop__group:nth-child(2) { animation-delay: 0.07s; }
.lx-nav__item--drop:hover .lx-nav-drop__group:nth-child(3),
.lx-nav__item--drop.is-open .lx-nav-drop__group:nth-child(3) { animation-delay: 0.1s; }
.lx-nav__item--drop:hover .lx-nav-drop__group:nth-child(4),
.lx-nav__item--drop.is-open .lx-nav-drop__group:nth-child(4) { animation-delay: 0.13s; }
.lx-nav__item--drop:hover .lx-nav-drop__group:nth-child(5),
.lx-nav__item--drop.is-open .lx-nav-drop__group:nth-child(5) { animation-delay: 0.16s; }
.lx-nav__item--drop:hover .lx-nav-drop__group:nth-child(6),
.lx-nav__item--drop.is-open .lx-nav-drop__group:nth-child(6) { animation-delay: 0.19s; }
.lx-nav__item--drop:hover .lx-nav-drop__group:nth-child(n+7),
.lx-nav__item--drop.is-open .lx-nav-drop__group:nth-child(n+7) { animation-delay: 0.22s; }

@keyframes lx-mega-group-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lx-nav-drop__group:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 10px 28px rgba(17, 24, 39, 0.06),
    0 0 0 1px rgba(146, 32, 119, 0.08);
  transform: translateY(-1px);
}

.lx-nav-drop__group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.07);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--lx-text);
  line-height: 1.3;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.lx-nav-drop__group-title span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lx-nav-drop__group-title i {
  flex-shrink: 0;
  font-size: 10px;
  color: var(--lx-primary);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.18s ease, transform 0.2s var(--lx-ease);
}

.lx-nav-drop__group:hover .lx-nav-drop__group-title {
  color: var(--lx-primary);
  border-bottom-color: rgba(146, 32, 119, 0.2);
}

.lx-nav-drop__group:hover .lx-nav-drop__group-title i {
  opacity: 1;
  transform: translateX(0);
}

.lx-nav-drop__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lx-nav-drop__links li + li {
  margin-top: 1px;
}

.lx-nav-drop__links a {
  position: relative;
  display: block;
  padding: 5px 0;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--lx-gray);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s ease, padding-left 0.18s var(--lx-ease);
}

.lx-nav-drop__links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--lx-gradient);
  opacity: 0;
  transform: translateY(-50%);
  transition: width 0.2s var(--lx-ease), opacity 0.2s ease;
}

.lx-nav-drop__links a:hover {
  color: var(--lx-primary);
  padding-left: 12px;
}

.lx-nav-drop__links a:hover::before {
  width: 8px;
  opacity: 1;
}

.lx-nav-drop__more {
  color: var(--lx-secondary) !important;
  font-weight: 600 !important;
}

.lx-nav-drop__shop {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 600;
  color: var(--lx-secondary);
  transition: color 0.15s ease, gap 0.18s ease;
}

.lx-nav-drop__shop::after {
  content: '\2192';
  font-size: 11px;
  transition: transform 0.18s var(--lx-ease);
}

.lx-nav-drop__shop:hover {
  color: var(--lx-primary);
  gap: 8px;
}

.lx-nav-drop__shop:hover::after {
  transform: translateX(2px);
}

@media (max-width: 980px) {
  .lx-nav-drop__panel {
    grid-template-columns: minmax(180px, 200px) minmax(0, 1fr);
  }

  .lx-nav-drop__showcase {
    padding: 22px 16px 20px;
    min-height: 220px;
  }

  .lx-nav-drop__showcase-title {
    font-size: 18px;
  }

  .lx-nav-drop__grid {
    grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
    max-height: min(50vh, 320px);
  }
}

@media (max-width: 760px) {
  .lx-nav-drop__panel {
    grid-template-columns: 1fr;
  }

  .lx-nav-drop__showcase {
    min-height: 0;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 16px;
    padding: 16px 18px;
  }

  .lx-nav-drop__eyebrow {
    margin-bottom: 0;
    width: 100%;
  }

  .lx-nav-drop__showcase-title {
    font-size: 16px;
  }

  .lx-nav-drop__showcase-text {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lx-nav-drop,
  .lx-nav-drop__group {
    transition: none;
    transform: none;
    animation: none;
  }
}

/* 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;
  z-index: 60;
  padding: 0;
  margin: 0;
}

.lx-account-menu {
  width: 268px !important;
  border: 1px solid rgba(17, 24, 39, 0.08) !important;
  border-radius: 14px !important;
  box-shadow:
    0 4px 6px rgba(17, 24, 39, 0.03),
    0 18px 40px rgba(17, 24, 39, 0.12) !important;
  padding: 0 !important;
  margin-top: 10px !important;
  overflow: hidden;
  background: #fff !important;
  z-index: 1400 !important;
}

.lx-account-menu__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fafbfc;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.lx-account-menu__avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--lx-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.lx-account-menu__head strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--lx-text);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.lx-account-menu__head span {
  display: block;
  font-size: 11.5px;
  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: 6px;
}

.lx-account-menu__list a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lx-text);
  transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s var(--lx-ease);
}

.lx-account-menu__list a i {
  width: 16px;
  text-align: center;
  color: var(--lx-primary);
  opacity: 0.8;
  font-size: 13px;
}

.lx-account-menu__list a:hover {
  background: rgba(146, 32, 119, 0.06);
  color: var(--lx-primary);
  padding-left: 14px;
}

.lx-account-menu__foot {
  border-top: 1px solid rgba(17, 24, 39, 0.06);
  padding: 6px;
  background: #fafbfc;
}

.lx-account-menu__logout {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  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;
  clip-path: inset(0 0 0 100%);
  transition:
    opacity 0.9s var(--lx-ease),
    visibility 0.9s,
    clip-path 0.95s cubic-bezier(0.65, 0, 0.35, 1);
}

.lx-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 3;
  clip-path: inset(0 0 0 0);
}

.lx-hero__slide.is-leave {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  z-index: 2;
  clip-path: inset(0 100% 0 0);
  transition:
    opacity 0.55s 0.35s var(--lx-ease),
    visibility 0.55s 0.35s,
    clip-path 0.95s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Reverse wipe when going previous */
.lx-hero[data-dir="prev"] .lx-hero__slide:not(.is-active):not(.is-leave) {
  clip-path: inset(0 100% 0 0);
}

.lx-hero[data-dir="prev"] .lx-hero__slide.is-active {
  clip-path: inset(0 0 0 0);
}

.lx-hero[data-dir="prev"] .lx-hero__slide.is-leave {
  clip-path: inset(0 0 0 100%);
}

.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: none;
  filter: brightness(1) saturate(1);
}

.lx-hero__slide.is-active .lx-hero__img {
  filter: brightness(1) saturate(1);
}

.lx-hero__slide::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(7, 11, 20, 0.28) 45%, rgba(7, 11, 20, 0.72) 100%);
  pointer-events: none;
  z-index: 2;
  opacity: 0.85;
  transition: opacity 0.6s ease;
}

.lx-hero__slide.is-active::after {
  opacity: 1;
}

/* Soft light sweep on enter */
.lx-hero__slide.is-active .lx-hero__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.14) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: lx-hero-shine 1.1s 0.15s var(--lx-ease) both;
  pointer-events: none;
  z-index: 1;
}

@keyframes lx-hero-shine {
  to { transform: translateX(120%); }
}

.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: translate3d(-24px, 8px, 0);
}

.lx-hero__slide.is-active .lx-hero__caption {
  animation: lx-hero-caption-in 0.75s 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lx-hero__slide.is-active .lx-hero__caption-cta {
  animation: lx-hero-cta-in 0.55s 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes lx-hero-caption-in {
  from { opacity: 0; transform: translate3d(-28px, 10px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes lx-hero-cta-in {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(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,
  .lx-hero__slide.is-active .lx-hero__caption-cta,
  .lx-hero__slide.is-active .lx-hero__img-wrap::after {
    animation: none !important;
  }
  .lx-hero__slide.is-active .lx-hero__img { transform: none; filter: none; }
  .lx-hero__slide,
  .lx-hero__slide.is-leave {
    clip-path: none !important;
    transition: opacity 0.25s ease !important;
  }
  .lx-hero__caption { opacity: 1; transform: none; }
}

/* =========================================================
   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 var(--lx-brands-speed, 120s) linear infinite;
}

.lx-brands__track:hover { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .lx-brands__track { animation: none; }
}

@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;
  }
  .lx-search-suggest {
    scroll-behavior: auto;
  }
}

/* ---------- Phone Repair landing page ---------- */
.lx-repair-page #main-content {
  padding: 0;
}

/* ---------- Phone Repair hero (professional) ---------- */
.lx-repair-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #0f141d;
  padding: 20px 0 0;
}

.lx-repair-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 85% 40%, rgba(4, 116, 68, 0.18), transparent 60%),
    radial-gradient(ellipse 45% 55% at 10% 80%, rgba(146, 32, 119, 0.14), transparent 55%),
    linear-gradient(165deg, #121826 0%, #0f141d 48%, #0c1512 100%);
}

.lx-repair-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.35;
  mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
}

.lx-repair-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px 56px;
  align-items: center;
  padding-bottom: 0;
  min-height: min(62vh, 520px);
}

.lx-repair-crumb {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  padding-top: 8px;
}

.lx-repair-crumb a {
  color: rgba(255, 255, 255, 0.58);
}

.lx-repair-crumb a:hover {
  color: #fff;
}

.lx-repair-hero__copy {
  padding: 12px 0 40px;
}

.lx-repair-hero__brand {
  margin: 0 0 14px;
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}

.lx-repair-hero__title {
  margin: 0 0 16px;
  max-width: 14em;
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.92);
}

.lx-repair-hero__lead {
  margin: 0 0 28px;
  max-width: 34em;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
}

.lx-repair-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lx-btn--ghost-light {
  background: rgba(255, 255, 255, 0.06);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.lx-btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
  transform: translateY(-1px);
}

.lx-btn--outline-light {
  background: transparent;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}

.lx-btn--outline-light:hover {
  border-color: #fff;
  color: #fff !important;
  transform: scale(1.03);
}

.lx-repair-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0 40px;
}

.lx-repair-hero__frame {
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  backdrop-filter: blur(12px);
  animation: lx-repair-frame-in 0.7s var(--lx-ease) both;
}

@keyframes lx-repair-frame-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lx-repair-hero__frame-top {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}

.lx-repair-hero__frame-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.lx-repair-hero__frame-dot:nth-child(1) { background: #ef4444; opacity: 0.7; }
.lx-repair-hero__frame-dot:nth-child(2) { background: #eab308; opacity: 0.7; }
.lx-repair-hero__frame-dot:nth-child(3) { background: #22c55e; opacity: 0.7; }

.lx-repair-hero__frame-top em {
  margin-left: auto;
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.lx-repair-hero__stage {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 28px 22px 26px;
}

.lx-repair-phone {
  width: 92px;
  height: 176px;
  border-radius: 18px;
  padding: 7px;
  background: linear-gradient(160deg, #2c3344, #171c28);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.lx-repair-phone__bezel {
  width: 100%;
  height: 100%;
  border-radius: 13px;
  overflow: hidden;
  background: #070b12;
}

.lx-repair-phone__screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 8px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(4, 116, 68, 0.28), transparent 55%),
    #0a1018;
}

.lx-repair-phone__screen i {
  font-size: 22px;
  color: #34d399;
}

.lx-repair-phone__screen strong {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.lx-repair-phone__screen span {
  font-size: 8.5px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.5);
}

.lx-repair-hero__checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.lx-repair-hero__checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

.lx-repair-hero__checks i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  background: rgba(4, 116, 68, 0.22);
  color: #34d399;
  flex-shrink: 0;
}

.lx-repair-hero__assure {
  grid-column: 1 / -1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}

.lx-repair-hero__assure li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 12px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.lx-repair-hero__assure li:last-child {
  border-right: 0;
}

.lx-repair-hero__assure i {
  color: #34d399;
  font-size: 14px;
  opacity: 0.9;
}

@media (max-width: 980px) {
  .lx-repair-hero__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 8px;
  }

  .lx-repair-hero__copy {
    padding: 8px 0 24px;
    order: 1;
  }

  .lx-repair-hero__visual {
    order: 2;
    padding: 0 0 28px;
  }

  .lx-repair-hero__assure {
    order: 3;
  }

  .lx-repair-hero__frame {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .lx-repair-hero__assure {
    grid-template-columns: 1fr;
  }

  .lx-repair-hero__assure li {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 16px;
  }

  .lx-repair-hero__assure li:last-child {
    border-bottom: 0;
  }

  .lx-repair-hero__stage {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: left;
  }

  .lx-repair-hero__checks {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lx-repair-hero__frame {
    animation: none;
  }
}

.lx-repair-section {
  padding: 72px 0;
}

.lx-repair-section--process {
  background:
    linear-gradient(180deg, #f7f9fb 0%, #fff 100%);
  border-block: 1px solid rgba(17, 24, 39, 0.05);
}

.lx-repair-section__head {
  max-width: 36em;
  margin-bottom: 36px;
}

.lx-repair-section__head h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--lx-text);
}

.lx-repair-section__head p {
  margin: 0;
  font-size: 15px;
  color: var(--lx-gray);
  line-height: 1.6;
}

.lx-repair-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.lx-repair-service {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.07);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.04);
  transition:
    transform 0.25s var(--lx-ease),
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.lx-repair-service:hover {
  transform: translateY(-4px);
  border-color: rgba(146, 32, 119, 0.22);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
  color: inherit;
}

.lx-repair-service__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lx-gradient);
  color: #fff;
  font-size: 16px;
  margin-bottom: 4px;
}

.lx-repair-service strong {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--lx-text);
}

.lx-repair-service span:last-child {
  font-size: 13px;
  line-height: 1.5;
  color: var(--lx-gray);
}

.lx-repair-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: none;
}

.lx-repair-step {
  position: relative;
  padding: 8px 8px 8px 0;
}

.lx-repair-step__num {
  display: block;
  margin-bottom: 14px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
  background: var(--lx-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lx-repair-step strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lx-text);
}

.lx-repair-step p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--lx-gray);
}

.lx-repair-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.lx-repair-trust__item i {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 20px;
  color: var(--lx-primary);
}

.lx-repair-trust__item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--lx-text);
}

.lx-repair-trust__item p {
  margin: 0;
  font-size: 14px;
  color: var(--lx-gray);
  line-height: 1.5;
}

.lx-repair-cta {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  color: #fff;
  background:
    radial-gradient(ellipse 70% 80% at 10% 20%, rgba(146, 32, 119, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 70% at 90% 80%, rgba(4, 116, 68, 0.3), transparent 50%),
    linear-gradient(145deg, #111827 0%, #0b1220 100%);
}

.lx-repair-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 36px;
  align-items: end;
}

.lx-repair-cta__copy h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}

.lx-repair-cta__copy p {
  margin: 0 0 24px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}

.lx-repair-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lx-repair-cta__meta {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lx-repair-cta__meta span {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.lx-repair-cta__meta address,
.lx-repair-cta__meta div {
  font-style: normal;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.lx-repair-cta__store {
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

/* Header repair nav accent */
.lx-nav__link--repair {
  color: var(--lx-primary) !important;
}

.lx-nav__link--repair i {
  font-size: 11px;
  opacity: 0.85;
}

.lx-nav__link--repair:hover,
.lx-nav__link--repair:hover::after {
  color: var(--lx-secondary) !important;
}

@media (max-width: 980px) {
  .lx-repair-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lx-repair-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lx-repair-trust {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .lx-repair-cta__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .lx-repair-section {
    padding: 52px 0;
  }

  .lx-repair-services {
    grid-template-columns: 1fr;
  }

  .lx-repair-steps {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lx-repair-hero__frame {
    animation: none;
  }
}
