/* ===== RESET & VARIABLES ===== */
html, body {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--lx-header-height, 100px);
}
:root {
  --lx-gold:        #c9a84c;
  --lx-gold-light:  #e8d5a3;
  --lx-maroon:      #2d0a16;
  --lx-maroon-mid:  #3d0d1e;
  --lx-green-dark:  #0d2b1f;
  --lx-black:       #0a0a0a;
  --lx-cream:       #f0ebe0;
  --lx-muted:       #999;
  --lx-ff-serif:    'Cormorant Garamond', serif;
  --lx-ff-sans:     'Montserrat', sans-serif;
  --lx-ease-out:    cubic-bezier(.4,0,.2,1);
  --lx-header-height: 100px;
}
body {
  margin: 0;
  padding: 0;
}
.lx {
  background: var(--lx-black);
  color: var(--lx-cream);
  font-family: var(--lx-ff-serif);
}
.lx * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.lx a {
  color: inherit;
  text-decoration: none;
}

/* ===== UTILITY CLASSES ===== */
.lx-tag {
  font: 500 9px/1 var(--lx-ff-sans);
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--lx-gold);
  display: block;
  text-align: center;
  margin-bottom: 14px;
}
.lx-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: .05em;
  text-align: center;
  color: var(--lx-cream);
  margin-bottom: 14px;
}
.lx-title em {
  font-style: italic;
  color: var(--lx-gold-light);
}
.lx-sub {
  font: 300 11px/1 var(--lx-ff-sans);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--lx-muted);
  text-align: center;
  margin-bottom: 30px;
}
.lx-btn {
  font: 500 10px/1 var(--lx-ff-sans);
  letter-spacing: .3em;
  text-transform: uppercase;
  padding: 15px 34px;
  display: inline-block;
  cursor: pointer;
  transition: background .3s, transform .2s, border-color .3s;
}
.lx-btn:hover {
  transform: translateY(-2px);
}
.lx-btn-gold {
  background: var(--lx-gold);
  color: #000;
  border: none;
}
.lx-btn-gold:hover {
  background: var(--lx-gold-light);
}
.lx-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
}
.lx-btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
}

/* ===== HERO SECTION (FIXED – NO ZOOM ON MOBILE SCROLL) ===== */
.lx-hero {
  position: relative;
  width: 100%;
  height: 100lvh;           /* large viewport height – ignores address bar changes */
  max-height: 100lvh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
/* Fallback for browsers that don't support lvh */
@supports not (height: 100lvh) {
  .lx-hero {
    height: 100vh;
    max-height: 100vh;
  }
}
@keyframes lxHeroFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.lx-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,.82) 0%, rgba(10,10,10,.50) 35%, rgba(10,10,10,.12) 60%, rgba(10,10,10,.04) 100%);
}
.lx-hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.55) 0%, transparent 30%);
}
.lx-hero-line {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--lx-gold), transparent);
  opacity: .5;
  z-index: 2;
}
.lx-hero-body {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 680px;
  animation: lxFadeUp .8s ease both .2s;
  opacity: 0;
}
@keyframes lxFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lx-hero-eyebrow {
  font: 500 10px/1 var(--lx-ff-sans);
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--lx-gold);
  display: block;
  margin-bottom: 20px;
}
.lx-hero h1 {
  margin-bottom: 16px;
  line-height: 1.05;
}
.lx-hero-h1-main {
  display: block;
  font: 300 clamp(2.8rem, 6vw, 5.5rem)/1.05 var(--lx-ff-serif);
  letter-spacing: .04em;
  color: #fff;
}
.lx-hero-h1-cats {
  display: block;
  font: 300 clamp(1rem, 2.2vw, 1.8rem)/1.2 var(--lx-ff-sans);
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--lx-gold-light);
  margin-top: 10px;
}
.lx-hero-h1-cats em {
  font-style: normal;
  color: var(--lx-gold);
}
.lx-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.lx-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 60px;
}
.lx-scroll-label {
  font: 300 8px/1 var(--lx-ff-sans);
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 4px;
}
.lx-scroll-chevron {
  width: 12px;
  height: 12px;
  border-right: 1px solid rgba(255,255,255,.5);
  border-bottom: 1px solid rgba(255,255,255,.5);
  transform: rotate(45deg);
  animation: lxChevron 1.5s ease-in-out infinite;
}
.lx-scroll-chevron:nth-child(3) {
  border-color: rgba(255,255,255,.3);
  animation-delay: .2s;
  margin-top: -6px;
}
.lx-scroll-chevron:nth-child(4) {
  border-color: rgba(255,255,255,.15);
  animation-delay: .4s;
  margin-top: -6px;
}
@keyframes lxChevron {
  0%   { opacity: 0; transform: rotate(45deg) translate(-3px,-3px); }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: rotate(45deg) translate(3px,3px); }
}

/* ===== FILTER BAR ===== */
.lx-filter-bar {
  margin-bottom: 30px;
  position: relative;
}
.lx-filter-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lx-filter-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 2px 8px;
  flex: 1;
}
.lx-filter-scroll::-webkit-scrollbar {
  display: none;
}
.lx-filter-chip {
  font: 500 11px/1 var(--lx-ff-sans);
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 18px;
  background: transparent;
  color: var(--lx-muted);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 30px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s var(--lx-ease-out);
  flex-shrink: 0;
  text-decoration: none;
}
.lx-filter-chip:hover {
  border-color: var(--lx-gold);
  color: var(--lx-gold-light);
  background: rgba(201,168,76,0.05);
}
.lx-filter-chip.active {
  background: var(--lx-gold);
  color: #000;
  border-color: var(--lx-gold);
  font-weight: 600;
}
.lx-filter-chip:active {
  transform: scale(0.94);
}
.lx-filter-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(20,20,20,0.7);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--lx-gold);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.lx-filter-arrow:hover {
  background: var(--lx-gold);
  color: #000;
}
.lx-filter-arrow.disabled {
  opacity: 0.3;
  pointer-events: none;
}
.lx-filter-arrow.hidden {
  display: none;
}
@media (max-width: 480px) {
  .lx-filter-arrow {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
  .lx-filter-chip {
    padding: 8px 14px;
    font-size: 10px;
  }
}

/* ===== TRENDING CAROUSEL ===== */
.lx-trending {
  padding: 60px 20px 80px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.lx-trend-carousel {
  position: relative;
  margin-top: 20px;
}
.lx-carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
  padding-left: 2px;
  padding-right: 2px;
}
.lx-carousel-track::-webkit-scrollbar {
  display: none;
}
.lx-tcard {
  flex: 0 0 calc(25% - 12px);
  min-width: 200px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: #111;
  border: 1px solid rgba(255,255,255,.07);
  overflow: hidden;
  transition: border-color .3s var(--lx-ease-out), transform .3s var(--lx-ease-out);
}
.lx-tcard:hover {
  border-color: rgba(201,168,76,.35);
  transform: translateY(-5px);
}
.lx-tcard a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.lx-tcard-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #1a1a1a;
  flex-shrink: 0;
}
.lx-tcard-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.lx-tcard:hover .lx-tcard-img img {
  transform: scale(1.06);
}
.lx-tcard-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #161616, #1e1e1e);
  font-size: 32px;
  opacity: .5;
  pointer-events: none;
}
.lx-tcard-img img:not([src]) + .lx-tcard-placeholder,
.lx-tcard-img img[src=""] + .lx-tcard-placeholder {
  display: flex;
}
.lx-badge {
  position: absolute;
  top: 12px;
  font: 600 8px/1 var(--lx-ff-sans);
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 5px 11px;
  z-index: 3;
}
.lx-badge-new {
  left: 12px;
  background: var(--lx-gold);
  color: #000;
}
.lx-badge-hot {
  right: 12px;
  background: var(--lx-maroon-mid);
  color: var(--lx-gold-light);
  border: 1px solid rgba(201,168,76,.4);
}
.lx-tcard-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lx-tcard-name {
  font: 400 1.1rem/1.3 var(--lx-ff-serif);
  color: var(--lx-cream);
  letter-spacing: .02em;
}
.lx-tcard-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.lx-price-now {
  font: 500 13px/1 var(--lx-ff-sans);
  color: var(--lx-gold);
}
.lx-price-was {
  font: 300 11px/1 var(--lx-ff-sans);
  color: var(--lx-muted);
  text-decoration: line-through;
}
.lx-tcard-cta {
  margin-top: 10px;
  padding: 9px 0;
  text-align: center;
  font: 500 9px/1 var(--lx-ff-sans);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lx-gold);
  border: 1px solid rgba(201,168,76,.3);
  background: transparent;
  transition: background .2s, border-color .2s;
  display: block;
}
.lx-tcard:hover .lx-tcard-cta {
  background: rgba(201,168,76,.1);
  border-color: var(--lx-gold);
}
.lx-trending-more {
  text-align: center;
  margin-top: 50px;
}
.lx-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20,20,20,0.8);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--lx-gold);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.lx-carousel-btn:hover {
  background: var(--lx-gold);
  color: #000;
  border-color: var(--lx-gold);
}
.lx-carousel-btn:active {
  transform: translateY(-50%) scale(0.92);
}
.lx-carousel-btn.disabled {
  opacity: 0.3;
  pointer-events: none;
  border-color: rgba(255,255,255,0.2);
}
.lx-carousel-prev {
  left: -10px;
}
.lx-carousel-next {
  right: -10px;
}
@media (max-width: 1024px) {
  .lx-tcard {
    flex: 0 0 calc(33.333% - 11px);
  }
}
@media (max-width: 768px) {
  .lx-tcard {
    flex: 0 0 calc(50% - 8px);
    min-width: 0;
  }
  .lx-carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
  .lx-carousel-prev { left: -4px; }
  .lx-carousel-next { right: -4px; }
}
@media (max-width: 480px) {
  .lx-tcard {
    flex: 0 0 calc(50% - 6px);
  }
  .lx-carousel-btn {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }
}

/* ===== CATEGORIES ===== */
.lx-cats {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.lx-cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.lx-cat-card {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.lx-cat-card:first-child {
  grid-column: span 2;
  aspect-ratio: auto;
  min-height: 500px;
}
.lx-cat-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}
.lx-cat-card:hover .lx-cat-bg {
  transform: scale(1.05);
}
.lx-cat-card[data-cat=woman] .lx-cat-bg {
  background-color: var(--lx-maroon);
  background-image: url('https://images.unsplash.com/photo-1583391733956-3750e0ff4e8b?w=900&q=80');
}
.lx-cat-card[data-cat=beauty] .lx-cat-bg {
  background-color: var(--lx-green-dark);
  background-image: url('https://images.unsplash.com/photo-1596462502278-27bfdc403348?w=600&q=80');
}
.lx-cat-card[data-cat=fragrance] .lx-cat-bg {
  background-color: #1a1a1a;
  background-image: url('https://images.unsplash.com/photo-1615634260167-c8cdede054de?w=600&q=80');
}
.lx-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.1) 55%);
}
.lx-cat-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
}
.lx-cat-name-link,
.lx-subcat-link,
.lx-cat-cta {
  display: inline-block;
  transition: all 0.1s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(255,215,0,0.3);
}
.lx-cat-name-link:active,
.lx-subcat-link:active,
.lx-cat-cta:active {
  transform: scale(0.96);
  background-color: rgba(255, 255, 255, 0.2);
  transition: transform 0.05s ease, background-color 0.05s ease;
}
.lx-cat-name-link:hover,
.lx-subcat-link:hover,
.lx-cat-cta:hover {
  opacity: 0.85;
}
.lx-cat-name {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  letter-spacing: .1em;
  color: #fff;
  display: block;
  margin-bottom: 6px;
}
.lx-cat-range {
  font: 300 10px/1 var(--lx-ff-sans);
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--lx-gold);
  display: block;
  margin-bottom: 16px;
}
.lx-cat-cta {
  font: 300 10px/1 var(--lx-ff-sans);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap .25s, color .25s;
}
.lx-cat-card:hover .lx-cat-cta {
  gap: 16px;
  color: #fff;
}

/* ===== WHY US ===== */
.lx-why {
  padding: 90px 20px;
  background: linear-gradient(160deg, #0d0d0d, #111);
  border-top: 1px solid rgba(201,168,76,.1);
  border-bottom: 1px solid rgba(201,168,76,.1);
}
.lx-why-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.lx-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 50px;
}
.lx-why-card {
  padding: 36px 28px;
  background: #0d0d0d;
  border: 1px solid rgba(201,168,76,.1);
  position: relative;
  overflow: hidden;
  transition: border-color .3s, background .3s;
}
.lx-why-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lx-gold), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.lx-why-card:hover {
  border-color: rgba(201,168,76,.3);
  background: #111;
}
.lx-why-card:hover::before {
  opacity: 1;
}
.lx-why-icon {
  font-size: 28px;
  margin-bottom: 18px;
  display: block;
}
.lx-why-title {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--lx-gold-light);
  display: block;
  margin-bottom: 12px;
}
.lx-why-text {
  font: 300 11px/1.8 var(--lx-ff-sans);
  color: rgba(240,235,224,.6);
}
.lx-why-text strong {
  color: var(--lx-gold);
  font-weight: 500;
}
.lx-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.25);
  padding: 10px 16px;
  margin-top: 10px;
}
.lx-trust-label {
  font: 500 10px/1 var(--lx-ff-sans);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lx-gold);
}
.lx-trust-reg {
  font: 300 8px/1.4 var(--lx-ff-sans);
  letter-spacing: .08em;
  color: var(--lx-muted);
  display: block;
  margin-top: 3px;
}
.lx-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}
.lx-stat-box {
  text-align: center;
  padding: 14px;
  background: rgba(201,168,76,.05);
  border: 1px solid rgba(201,168,76,.15);
}
.lx-stat-num {
  font: 300 1.7rem/1 var(--lx-ff-serif);
  color: var(--lx-gold);
  display: block;
}
.lx-stat-lbl {
  font: 300 8px/1 var(--lx-ff-sans);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--lx-muted);
  display: block;
  margin-top: 6px;
}
.lx-refund {
  background: linear-gradient(135deg, #0d1a14, #0a1510);
  border: 1px solid rgba(126,203,161,.12);
}
.lx-refund-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #7ecba1;
  display: block;
  margin-bottom: 16px;
  letter-spacing: .06em;
}
.lx-refund-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.lx-refund-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.lx-refund-text {
  font: 300 11px/1.7 var(--lx-ff-sans);
  color: rgba(240,235,224,.6);
}
.lx-refund-text strong {
  color: var(--lx-gold-light);
  font-weight: 500;
}
.lx-refund-note {
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(201,168,76,.06);
  border-left: 2px solid var(--lx-gold);
}

/* ===== CONTACT ===== */
.lx-contact {
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.lx-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 50px;
}
.lx-contact-card {
  padding: 36px 24px;
  background: #111;
  border: 1px solid rgba(255,255,255,.06);
  display: block;
  transition: border-color .3s;
}
.lx-contact-card:hover {
  border-color: rgba(201,168,76,.3);
}
.lx-contact-lbl {
  font: 300 9px/1 var(--lx-ff-sans);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--lx-muted);
  display: block;
  margin: 14px 0 10px;
}
.lx-contact-val {
  font-size: 1rem;
  font-weight: 400;
  color: var(--lx-cream);
  display: block;
  line-height: 1.6;
}
.lx-contact-val small {
  font: 300 10px/1 var(--lx-ff-sans);
  color: var(--lx-muted);
  display: block;
  margin-top: 4px;
}

/* ===== PROMISE ===== */
.lx-promise {
  background: linear-gradient(135deg, var(--lx-maroon-mid), var(--lx-maroon));
  padding: 80px 20px;
  text-align: center;
}
.lx-promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 50px auto 0;
}
.lx-promise-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 10px;
  background: rgba(255,255,255,.02);
  border-radius: 4px;
  transition: transform .3s ease;
}
.lx-promise-item:hover {
  transform: translateY(-5px);
}
.lx-promise-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 16px;
}
.lx-promise-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--lx-gold-light);
  display: block;
  margin-bottom: 8px;
}
.lx-promise-text {
  font: 300 11px/1.7 var(--lx-ff-sans);
  color: rgba(240,235,224,.6);
}

/* ===== FOOTER ===== */
.lx-footer {
  background: #050505;
  border-top: 1px solid rgba(201,168,76,.2);
  padding: 70px 20px 30px;
}
.lx-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto 60px;
}
.lx-brand-name {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: .15em;
  color: var(--lx-gold);
  display: block;
  margin-bottom: 16px;
}
.lx-brand-name em {
  font-style: italic;
  color: var(--lx-gold-light);
}
.lx-brand-desc {
  font: 300 12px/1.8 var(--lx-ff-sans);
  color: var(--lx-muted);
  max-width: 280px;
  margin-bottom: 24px;
}
.lx-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.lx-social {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 3px;
  transition: transform .2s, filter .2s;
}
.lx-social:hover {
  transform: translateY(-3px);
  filter: brightness(1.2);
}
.lx-social.fb { background: #1877f2; color: #fff; }
.lx-social.ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.lx-social.tt { background: #000; color: #fff; border: 1px solid rgba(255,255,255,.15); }
.lx-social.wa { background: #25d366; color: #fff; }
.lx-footer-col h4 {
  font: 500 9px/1 var(--lx-ff-sans);
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--lx-gold);
  margin-bottom: 24px;
}
.lx-footer-col ul {
  list-style: none;
}
.lx-footer-col li {
  margin-bottom: 12px;
}
.lx-footer-col a,
.lx-footer-col .lx-placeholder-link {
  font: 300 12px/1 var(--lx-ff-sans);
  color: var(--lx-muted);
  letter-spacing: .05em;
  transition: color .2s;
}
.lx-footer-col a:hover {
  color: var(--lx-gold-light);
}
.lx-footer-col .lx-placeholder-link {
  cursor: default;
}
.lx-footer-bar {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.lx-copy {
  font: 300 11px/1 var(--lx-ff-sans);
  letter-spacing: .08em;
  color: var(--lx-muted);
}
.lx-copy strong {
  color: var(--lx-gold);
  font-weight: 400;
}
.lx-pay {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 300 10px/1 var(--lx-ff-sans);
  color: var(--lx-muted);
}
.lx-pay-badge {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  padding: 4px 10px;
  font-size: 10px;
  border-radius: 2px;
  color: rgba(255,255,255,.45);
}

/* ===== REVEAL ANIMATION ===== */
.js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.js-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .lx-hero-bg,
  .lx-hero-body {
    animation: none;
    opacity: 1;
  }
}

/* ===== RESPONSIVE GLOBAL ===== */
@media (max-width: 768px) {
  .lx-hero {
    height: 70dvh;
    min-height: 500px;
  }
  .lx-hero-body    { padding: 0 28px; max-width: 100%; text-align: center; }
  .lx-hero-line    { display: none; }
  .lx-hero-overlay { background: linear-gradient(to bottom, rgba(10,10,10,.7) 0%, rgba(10,10,10,.35) 45%, rgba(10,10,10,.6) 100%); }
  .lx-hero-btns    { justify-content: center; }
  .lx-hero-h1-cats { letter-spacing: .15em; }
  .lx-cats-grid    { grid-template-columns: 1fr; }
  .lx-cat-card:first-child { grid-column: span 1; min-height: 300px; aspect-ratio: 3/4; }
  .lx-why-grid     { grid-template-columns: 1fr; }
  .lx-contact-grid { grid-template-columns: 1fr; }
  .lx-promise-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .lx-footer-grid  { grid-template-columns: 1fr 1fr; gap: 40px; }
  .lx-footer-grid > div:first-child { grid-column: span 2; }
}
@media (max-width: 480px) {
  .lx-promise-grid { grid-template-columns: 1fr 1fr; }
  .lx-footer-grid  { grid-template-columns: 1fr; }
  .lx-footer-grid > div:first-child { grid-column: span 1; }
}

/* ── Footer Brand Top  ── */
.lx-footer-brand-top {
  padding: 48px 24px 32px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.lx-footer-brand-top .lx-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 5vw, 32px);
  color: #fff;
  display: block;
  margin-bottom: 12px;
}

.lx-footer-brand-top .lx-brand-desc {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ── 3 Columns Side by Side ── */
.lx-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr; /* Contact column thoda wide */
  gap: 0;
  padding: 40px 16px; /* left-right equal aur tight */
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.lx-footer-cols .lx-footer-col {
  padding: 0 8px; /* gap kam kiya */
}

.lx-footer-cols .lx-footer-col:first-child {
  padding-left: 0;
}

.lx-footer-cols .lx-footer-col:last-child {
  padding-right: 0;
}

.lx-footer-col ul li a,
.lx-footer-col ul li span {
  color: rgba(255,255,255,0.55);
  font-size: 11px; /* thoda chhota taake fit ho */
  text-decoration: none;
  line-height: 1.5;
  word-break: break-word; /* email wrap ho screen pe */
  transition: color 0.2s;
}

.lx-footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 16px;
}

.lx-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lx-footer-col ul li {
  margin-bottom: 10px;
}

.lx-footer-col ul li a,
.lx-footer-col ul li span {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s;
}

.lx-footer-col ul li a:hover {
  color: #c9a96e;
}

/* ── Footer Wordmark ── */
.lx-footer-wordmark {
  background: #000;
  padding: 48px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  text-align: center;
}

.lx-wm-main {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(56px, 15vw, 160px);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.06em;
  white-space: nowrap;
  display: block;
  line-height: 0.9;
}

.lx-wm-sub {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: clamp(18px, 5vw, 48px);
  font-weight: 300;
  color: #c9a96e;
  letter-spacing: 0.25em;
  display: block;
  padding-bottom: 40px;
  font-style: italic;
}                                                                               /* ===== Header SECTION ===== */
    /* ---------- DESIGN TOKENS ---------- */
    :root {
      --gold: #c9a84c;
      --gold-light: #e8d5a3;
      --black: #0a0a0a;
      --muted: #888;
      --serif: 'Cormorant Garamond', serif;
      --sans: 'Montserrat', sans-serif;
      --woman: #320a18;
      --beauty: #0e2c1e;
      --frag: #121212;
      --ease: cubic-bezier(0.4, 0, 0.2, 1);
      --header-height: 104px;
    }

    /* Hide default header */
    .site-header, #masthead, .ast-primary-header-bar {
      display: none !important;
    }

    body {
      padding-top: var(--header-height);
      margin: 0;
      -webkit-text-size-adjust: 100%;
    }

    /* Prevent iOS zoom on all inputs */
    input, textarea, select, button {
      font-size: 16px !important;
    }

    /* Prevent double-tap zoom */
    button, a, [role="button"], .lx-acc-row, .lx-sub, .lx-direct,
    .lx-drop-item, .lx-cbtn, .lx-icon-btn, .lx-soc, .lx-cart-x,
    .lx-panel-x, .lx-search-submit, .lx-recent-searches span,
    .lx-search-result {
      touch-action: manipulation;
      -webkit-tap-highlight-color: rgba(0,0,0,0);
    }

    /* Accessibility */
    :focus-visible {
      outline: 2px solid var(--gold) !important;
      outline-offset: 2px;
      border-radius: 2px;
    }
    .sr-only {
      position: absolute;
      width: 1px; height: 1px;
      padding: 0; margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      white-space: nowrap;
      border: 0;
    }

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

    /* Main header */
    #lx-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      background: #fff;
      box-shadow: 0 2px 16px rgba(0,0,0,0.05);
      transition: box-shadow 0.3s;
      will-change: box-shadow;
    }
    #lx-header.scrolled {
      box-shadow: 0 4px 28px rgba(0,0,0,0.12);
    }
    @supports (padding-top: env(safe-area-inset-top)) {
      #lx-header { padding-top: env(safe-area-inset-top); }
    }

    /* Marquee */
    .lx-marquee {
      width: 100%;
      background: var(--gold);
      max-height: 28px;
      padding: 9px 0;
      overflow: hidden;
      white-space: nowrap;
      flex-shrink: 0;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }
    .lx-marquee.lx-marquee-hidden {
      max-height: 0;
      padding: 0;
    }
    .lx-marquee-track {
      display: inline-block;
      animation: lxMarquee 28s linear infinite;
    }
    @keyframes lxMarquee {
      to { transform: translateX(-50%); }
    }
    .lx-marquee-track span {
      font: 500 10px/1 var(--sans);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #000;
      padding: 0 22px;
    }
    .lx-marquee-track .sep {
      color: rgba(0,0,0,0.3);
      padding: 0;
    }

    /* Main bar */
    #lx-bar {
      position: relative;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 10px;
      border-top: 1px solid rgba(0,0,0,0.07);
      box-sizing: border-box;
    }

    /* Burger */
    #lx-burger {
      width: 38px; height: 38px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 5px;
      background: var(--black);
      border: none; border-radius: 4px;
      cursor: pointer; flex-shrink: 0;
      transition: background 0.2s;
    }
    #lx-burger:hover { background: #1a1a1a; }
    #lx-burger span {
      display: block;
      width: 20px; height: 1.5px;
      background: #fff; border-radius: 2px;
      transition: transform 0.32s ease, opacity 0.2s;
    }
    #lx-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    #lx-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    #lx-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Logo */
    #lx-logo {
      position: absolute;
      left: 50%; transform: translateX(calc(-50% - 10px));
      display: flex; align-items: center;
      text-decoration: none;
      max-width: calc(100% - 180px);
      overflow: hidden;
    }
    .lx-logo-text {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: 14px;
      letter-spacing: 3px;
      color: #2a2a2a;
      text-transform: uppercase;
      white-space: nowrap;
    }

    /* Icons */
    #lx-icons {
      display: flex;
      align-items: center;
      gap: 0;
      flex-shrink: 0;
      position: relative;
    }
    .lx-icon-btn {
      width: 38px; height: 38px;
      display: flex; align-items: center; justify-content: center;
      background: transparent; border: none;
      cursor: pointer; border-radius: 4px;
      color: var(--black); position: relative;
      transition: background 0.2s;
    }
    .lx-icon-btn:hover { background: rgba(0,0,0,0.05); }

    /* Cart badge */
    #lx-cart-badge {
      position: absolute; top: 7px; right: 7px;
      min-width: 15px; height: 15px;
      background: var(--gold); color: #000;
      font: 700 8px/15px var(--sans);
      text-align: center; border-radius: 8px;
      padding: 0 3px; display: none;
    }

    /* Account dropdown */
    #lx-acc-wrap { position: relative; }
    #lx-acc-drop {
      position: absolute;
      top: calc(100% + 8px); right: 0;
      width: 200px;
      background: #fff;
      border: 1px solid rgba(0,0,0,0.08);
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      border-radius: 4px; overflow: hidden;
      opacity: 0; transform: translateY(-8px); pointer-events: none;
      transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
      z-index: 10000;
    }
    #lx-acc-wrap.open #lx-acc-drop {
      opacity: 1; transform: translateY(0); pointer-events: all;
    }
    .lx-drop-head {
      padding: 14px 16px 12px;
      border-bottom: 2px solid var(--gold);
      background: var(--black);
    }
    .lx-drop-title {
      font: 300 11px/1 var(--sans);
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--gold); display: block;
    }
    .lx-drop-sub {
      font: 300 9px/1 var(--sans);
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.35);
      display: block; margin-top: 4px;
    }
    .lx-drop-item {
      display: flex; align-items: center; gap: 12px;
      padding: 12px 16px;
      text-decoration: none; color: var(--black);
      border-bottom: 1px solid rgba(0,0,0,0.05);
      transition: background 0.15s, padding-left 0.15s;
    }
    .lx-drop-item:last-child { border-bottom: none; }
    .lx-drop-item:hover {
      background: rgba(201,168,76,0.06);
      padding-left: 20px;
    }
    .lx-drop-icon { font-size: 14px; width: 18px; text-align: center; flex-shrink: 0; }
    .lx-drop-label { font: 400 11px/1 var(--sans); letter-spacing: 0.1em; text-transform: uppercase; }
    .lx-drop-logout { color: #c0392b; }
    .lx-drop-divider {
      height: 1px;
      background: rgba(0,0,0,0.07);
      margin: 4px 0;
    }

    /* Cart panel */
    #lx-cart-veil {
      position: fixed; inset: 0; z-index: 10001;
      background: rgba(0,0,0,0.5);
      backdrop-filter: blur(3px);
      opacity: 0; pointer-events: none;
      transition: opacity 0.3s ease;
    }
    #lx-cart-veil.open { opacity: 1; pointer-events: all; }
    #lx-cart-panel {
      position: fixed;
      top: 0; right: 0; bottom: 0;
      width: min(380px, 92vw);
      z-index: 10002;
      background: #fff;
      box-shadow: -8px 0 40px rgba(0,0,0,0.15);
      display: flex; flex-direction: column;
      transform: translateX(100%);
      transition: transform 0.36s var(--ease);
    }
    #lx-cart-panel.open { transform: translateX(0); }
    .lx-cart-head {
      padding: 18px 20px;
      border-bottom: 1px solid rgba(0,0,0,0.07);
      display: flex; align-items: center; justify-content: space-between;
      background: var(--black); flex-shrink: 0;
    }
    .lx-cart-title {
      font: 300 1.1rem/1 var(--serif);
      letter-spacing: 0.15em;
      background: linear-gradient(135deg, #c9a84c, #e8d5a3, #c9a84c);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .lx-cart-x {
      width: 34px; height: 34px;
      border: 1px solid rgba(255,255,255,0.15);
      background: transparent; color: rgba(255,255,255,0.5);
      font-size: 15px; cursor: pointer; border-radius: 3px;
      display: flex; align-items: center; justify-content: center;
      transition: border-color 0.2s, color 0.2s;
    }
    .lx-cart-x:hover { border-color: var(--gold); color: var(--gold); }
    .lx-ship-wrap {
      padding: 12px 20px 10px;
      background: #fafafa;
      border-bottom: 1px solid rgba(0,0,0,0.06);
      flex-shrink: 0;
    }
    .lx-ship-msg {
      font: 300 9px/1 var(--sans); letter-spacing: 0.1em; color: var(--muted);
      display: block; margin-bottom: 6px;
    }
    .lx-ship-rail {
      height: 3px; background: rgba(0,0,0,0.08); border-radius: 2px; overflow: hidden;
    }
    .lx-ship-bar {
      height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light));
      border-radius: 2px; transition: width 0.5s ease;
      width: 100%;
    }
    .lx-cart-list {
      flex: 1; overflow-y: auto;
    }
    .lx-cart-item {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 16px 20px;
      border-bottom: 1px solid rgba(0,0,0,0.06);
      position: relative;
      transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
    }
    .lx-cart-img {
      width: 72px; height: 90px;
      object-fit: cover; flex-shrink: 0;
      border: 1px solid rgba(0,0,0,0.06);
      background: #f5f5f5;
    }
    .lx-cart-info { flex: 1; min-width: 0; }
    .lx-cart-name {
      font: 400 0.95rem/1.3 var(--serif);
      color: var(--black); letter-spacing: 0.02em;
      display: block; margin-bottom: 6px;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
      padding-right: 20px;
    }
    .lx-cart-meta {
      font: 300 9px/1 var(--sans);
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--muted); display: block; margin-bottom: 8px;
    }
    .lx-cart-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px;
    }
    .lx-cart-price {
      font: 500 12px/1 var(--sans);
      color: var(--gold);
      white-space: nowrap;
    }
    .lx-cart-qty-wrap {
      display: flex;
      align-items: center;
      gap: 4px;
      background: #f5f5f5;
      border-radius: 3px;
      padding: 2px;
    }
    .lx-cart-qty-btn {
      width: 24px; height: 24px;
      display: flex; align-items: center; justify-content: center;
      background: #fff;
      border: 1px solid rgba(0,0,0,0.1);
      border-radius: 3px;
      font-size: 14px;
      font-weight: 600;
      color: var(--black);
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
      padding: 0;
    }
    .lx-cart-qty-btn:hover:not(:disabled) {
      background: var(--gold);
      border-color: var(--gold);
      color: #000;
    }
    .lx-cart-qty-btn:disabled {
      opacity: 0.4;
      cursor: not-allowed;
    }
    .lx-cart-qty-input {
      width: 36px; height: 24px;
      text-align: center;
      font: 500 11px/1 var(--sans);
      border: 1px solid rgba(0,0,0,0.1);
      border-radius: 3px;
      background: #fff;
      padding: 0 2px;
    }
    .lx-cart-qty-input:focus {
      outline: 2px solid var(--gold);
      outline-offset: 1px;
    }
    .lx-cart-remove {
      background: transparent;
      border: none;
      color: #999;
      font-size: 16px;
      line-height: 1;
      cursor: pointer;
      padding: 4px;
      margin-left: 4px;
      border-radius: 3px;
      transition: color 0.2s, background 0.2s;
    }
    .lx-cart-remove:hover {
      color: #c0392b;
      background: rgba(192,57,43,0.1);
    }
    .lx-cart-item-loading {
      position: relative;
      opacity: 0.7;
      pointer-events: none;
    }
    .lx-cart-item-loading::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.5);
      backdrop-filter: blur(2px);
    }
    .lx-cart-item-loading::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      width: 24px; height: 24px;
      margin-top: -12px; margin-left: -12px;
      border: 2px solid var(--gold);
      border-top-color: transparent;
      border-radius: 50%;
      animation: lx-spin 0.8s linear infinite;
      z-index: 1;
    }
    .lx-cart-item.removing {
      opacity: 0;
      transform: translateX(20px);
      transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
      pointer-events: none;
    }
    @keyframes lx-spin { to { transform: rotate(360deg); } }
    .lx-cart-message {
      padding: 10px 20px;
      background: #fff3cd;
      border: 1px solid #ffe69c;
      color: #856404;
      font: 400 10px/1.4 var(--sans);
      letter-spacing: 0.02em;
      margin: 8px 20px;
      border-radius: 4px;
      display: none;
    }
    .lx-cart-message.show { display: block; }
    .lx-cart-skeleton {
      padding: 40px 20px;
      text-align: center;
    }
    .lx-cart-skeleton .skeleton-line {
      height: 16px;
      margin: 12px 0;
      background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
      background-size: 200% 100%;
      animation: skeleton-loading 1.5s infinite;
      border-radius: 4px;
    }
    .lx-cart-skeleton .skeleton-line.short {
      width: 60%;
      margin-left: auto;
      margin-right: auto;
    }
    @keyframes skeleton-loading {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }
    .lx-cart-error {
      padding: 40px 20px;
      text-align: center;
      color: #c0392b;
    }
    .lx-cart-retry-btn {
      margin-top: 12px;
      padding: 8px 16px;
      font-size: 10px;
      background: var(--black);
      color: #fff;
      border: none;
      border-radius: 2px;
      cursor: pointer;
    }
    .lx-cart-empty {
      padding: 40px 20px;
      text-align: center;
      color: var(--muted);
    }
    .lx-cart-foot {
      padding: 16px 20px 20px;
      border-top: 1px solid rgba(0,0,0,0.07);
      flex-shrink: 0; background: #fafafa;
    }
    .lx-cart-subtotal {
      display: flex; justify-content: space-between; align-items: center;
      margin-bottom: 14px;
    }
    .lx-sub-label {
      font: 400 10px/1 var(--sans); letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--muted);
    }
    .lx-sub-value {
      font: 500 1.1rem/1 var(--serif); color: var(--black); letter-spacing: 0.04em;
    }
    .lx-sub-value span { font-size: 0.75rem; color: var(--gold); }
    .lx-cart-btns { display: flex; flex-direction: column; gap: 8px; }
    .lx-cbtn {
      display: block; width: 100%; padding: 14px;
      text-align: center; font: 500 10px/1 var(--sans);
      letter-spacing: 0.28em; text-transform: uppercase;
      text-decoration: none; border: none; cursor: pointer;
      border-radius: 2px; transition: background 0.2s, transform 0.15s;
    }
    .lx-cbtn:hover { transform: translateY(-1px); }
    .lx-cbtn-gold { background: var(--gold); color: #000; }
    .lx-cbtn-gold:hover { background: var(--gold-light); }
    .lx-cbtn-dark { background: var(--black); color: #fff; }
    .lx-cbtn-dark:hover { background: #222; }

    /* Navigation drawer */
    #lx-drawer {
      position: fixed; inset: 0;
      z-index: 9998; pointer-events: none;
    }
    #lx-veil {
      position: absolute;
      top: var(--header-height); left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.55);
      opacity: 0; transition: opacity 0.3s ease;
      backdrop-filter: blur(3px);
    }
    #lx-drawer.open #lx-veil { opacity: 1; pointer-events: all; }
    #lx-panel {
      position: absolute;
      top: var(--header-height);
      left: 0;
      width: min(310px, 88vw);
      height: calc(100% - var(--header-height));
      display: flex;
      flex-direction: column;
      overflow-y: auto;
      overflow-x: hidden;
      background: var(--black);
      transform: translateX(-100%);
      transition: transform 0.36s var(--ease);
    }
    #lx-drawer.open #lx-panel { transform: translateX(0); pointer-events: all; }
    .lx-panel-head {
      padding: 14px 16px;
      border-bottom: 1px solid rgba(201,168,76,0.12);
      display: flex; align-items: center; justify-content: flex-end;
      flex-shrink: 0; background: var(--black);
    }
    .lx-panel-x {
      width: 34px; height: 34px;
      border: 1px solid rgba(255,255,255,0.14);
      background: transparent; color: rgba(255,255,255,0.5);
      font-size: 15px; cursor: pointer; border-radius: 3px;
      display: flex; align-items: center; justify-content: center;
      transition: border-color 0.2s, color 0.2s;
    }
    .lx-panel-x:hover { border-color: var(--gold); color: var(--gold); }
    .lx-acc {
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .lx-acc[data-c="woman"] { background: var(--woman); }
    .lx-acc[data-c="beauty"] { background: var(--beauty); }
    .lx-acc[data-c="fragrance"] { background: var(--frag); }
    .lx-acc-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 20px;
      height: 58px;
      cursor: pointer;
      user-select: none;
      transition: opacity 0.2s;
      box-sizing: border-box;
    }
    .lx-acc-left { display: flex; align-items: center; gap: 12px; }
    .lx-acc-icon {
      font-size: 18px;
      width: 26px;
      text-align: center;
      flex-shrink: 0;
      color: var(--gold);
    }
    .lx-acc-lbl {
      font: 500 11px/1 var(--sans); letter-spacing: 0.28em;
      text-transform: uppercase; color: var(--gold);
    }
    .lx-acc-arrow {
      font-size: 11px; color: rgba(201,168,76,0.5);
      transition: transform 0.3s ease, color 0.2s;
    }
    .lx-acc.open .lx-acc-arrow { transform: rotate(180deg); color: var(--gold); }
    .lx-acc-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.38s var(--ease);
    }
    .lx-acc.open .lx-acc-body { max-height: 450px; }
    .lx-sub {
      display: flex; align-items: center; gap: 8px;
      padding: 7px 20px;
      border-top: 1px solid rgba(255,255,255,0.05);
      text-decoration: none;
      transition: background 0.18s, padding-left 0.18s;
    }
    .lx-sub:hover { background: rgba(255,255,255,0.04); padding-left: 26px; }
    .lx-sub-lbl {
      font: 300 10px/1 var(--sans); letter-spacing: 0.2em;
      text-transform: uppercase; color: rgba(201,168,76,0.75);
    }
    .lx-direct {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      height: 58px;
      text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      transition: filter 0.2s, padding-left 0.2s;
      box-sizing: border-box;
    }
    .lx-direct:hover { filter: brightness(1.15); padding-left: 26px; }
    .lx-direct-arrow { color: var(--gold); font-size: 13px; opacity: 0.7; }
    .lx-direct-new {
      background: linear-gradient(135deg, #1a0e00, #2a1a00);
    }
    .lx-direct-offers {
      background: linear-gradient(135deg, #0d0900, #1a1200);
    }
    .lx-direct-new .lx-acc-lbl,
    .lx-direct-offers .lx-acc-lbl {
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .lx-panel-foot {
      padding: 20px;
      border-top: 1px solid rgba(201,168,76,0.1);
      margin-top: auto; flex-shrink: 0;
      background: var(--black);
    }
    .lx-socials { display: flex; gap: 8px; margin-bottom: 16px; }
    .lx-soc {
      width: 38px; height: 38px; border-radius: 3px;
      display: flex; align-items: center; justify-content: center;
      text-decoration: none;
      transition: transform 0.2s, filter 0.2s;
    }
    .lx-soc:hover { transform: translateY(-3px); filter: brightness(1.2); }
    .lx-soc.fb { background: #1877f2; color: #fff; }
    .lx-soc.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
    .lx-soc.tt { background: #000; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
    .lx-soc.wa { background: #25d366; color: #fff; }
    .lx-contact {
      font: 300 10px/1.9 var(--sans);
      letter-spacing: 0.06em; color: rgba(255,255,255,0.3);
    }
    .lx-contact a {
      color: rgba(255,255,255,0.3);
      text-decoration: none;
      transition: color 0.2s;
    }
    .lx-contact a:hover { color: var(--gold); }

    /* Search panel - two panel layout */
    #lx-search-panel {
      position: fixed;
      top: var(--header-height);
      left: 0; right: 0;
      background: var(--black);
      z-index: 9997;
      transform: translateY(-100%);
      transition: transform 0.36s var(--ease);
      box-shadow: 0 8px 32px rgba(0,0,0,0.3);
      padding: 20px;
      box-sizing: border-box;
      pointer-events: none;
    }
    #lx-search-panel.open {
      transform: translateY(0);
      pointer-events: all;
    }
    .lx-search-inner {
      max-width: 600px;
      margin: 0 auto;
      position: relative;
    }
    .lx-search-input {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid rgba(201,168,76,0.3);
      padding: 16px 40px 16px 16px;
      font: 300 16px/1 var(--sans);
      letter-spacing: 0.1em;
      color: #fff;
      transition: border-color 0.2s;
    }
    .lx-search-input::placeholder {
      color: rgba(255,255,255,0.3);
      text-transform: uppercase;
      font-size: 11px;
      letter-spacing: 0.2em;
    }
    .lx-search-input:focus {
      outline: none;
      border-bottom-color: var(--gold);
    }
    .lx-search-submit {
      position: absolute;
      right: 0; top: 50%;
      transform: translateY(-50%);
      background: transparent; border: none;
      color: var(--gold); cursor: pointer;
      padding: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: color 0.2s;
    }
    .lx-search-submit:hover { color: var(--gold-light); }
    /* Two-panel containers */
    .lx-search-recent {
      margin-top: 16px;
      color: rgba(255,255,255,0.5);
      font: 300 10px/1 var(--sans);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .lx-search-results {
      margin-top: 16px;
      position: relative;
      min-height: 100px;
    }
    .lx-search-results.loading {
      opacity: 0.6;
      pointer-events: none;
    }
    .lx-search-results.loading::after {
      content: '';
      position: absolute;
      top: 20px;
      left: 50%;
      width: 24px;
      height: 24px;
      margin-left: -12px;
      border: 2px solid var(--gold);
      border-top-color: transparent;
      border-radius: 50%;
      animation: lx-spin 0.8s linear infinite;
    }
    .lx-recent-searches span {
      display: inline-block;
      margin-right: 12px; margin-bottom: 6px;
      padding: 6px 12px;
      background: rgba(201,168,76,0.1);
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: 20px;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
    }
    .lx-recent-searches span:hover {
      background: rgba(201,168,76,0.2);
      border-color: var(--gold);
    }
    .lx-search-section-title {
      font: 500 8px/1 var(--sans);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin: 12px 0 8px 0;
      border-bottom: 1px solid rgba(201,168,76,0.3);
      padding-bottom: 6px;
    }
    .lx-search-category {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 8px 12px;
      margin-bottom: 8px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: 4px;
      cursor: pointer;
      text-decoration: none;
      color: inherit;
      transition: background 0.2s;
    }
    .lx-search-category:hover {
      background: rgba(201,168,76,0.15);
      border-color: var(--gold);
    }
    .lx-search-category .cat-icon {
      font-size: 20px;
      width: 32px;
      text-align: center;
    }
    .lx-search-category .cat-name {
      flex: 1;
      font: 400 12px/1.4 var(--sans);
      color: #fff;
    }
    .lx-search-category .cat-count {
      font: 300 9px/1 var(--sans);
      color: var(--gold);
    }
    .lx-search-result {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 8px 12px;
      margin-bottom: 8px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: 4px;
      cursor: pointer;
      text-decoration: none;
      color: inherit;
      transition: background 0.2s;
    }
    .lx-search-result:hover {
      background: rgba(201,168,76,0.15);
      border-color: var(--gold);
    }
    .lx-search-result img {
      width: 40px;
      height: 40px;
      object-fit: cover;
      border-radius: 2px;
      background: #f5f5f5;
    }
    .lx-search-result-info {
      flex: 1;
    }
    .lx-search-result-name {
      font: 400 12px/1.4 var(--sans);
      color: #fff;
      margin-bottom: 4px;
    }
    .lx-search-result-price {
      font: 500 11px/1 var(--sans);
      color: var(--gold);
    }
    mark {
      background: var(--gold);
      color: #000;
      padding: 0 2px;
      border-radius: 2px;
    }

    /* Toast and undo */
    #lx-toast {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 10003;
      background: var(--black);
      color: var(--gold);
      padding: 12px 20px;
      border-radius: 4px;
      font: 500 12px/1 var(--sans);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
      transform: translateY(100px);
      opacity: 0;
      transition: transform 0.3s ease, opacity 0.3s ease;
      pointer-events: none;
      max-width: 280px;
    }
    #lx-toast.show {
      transform: translateY(0);
      opacity: 1;
    }
    #lx-toast.undo-toast {
      pointer-events: auto;
      cursor: pointer;
    }
    #lx-toast.undo-toast:hover {
      background: #1a1a1a;
    }

    /* Shop page font pairing */
    .woocommerce-loop-product__title,
    .product_title,
    h1.entry-title,
    .woocommerce ul.products li.product .woocommerce-loop-product__title {
      font-family: 'Cormorant Garamond', serif !important;
      font-weight: 700 !important;
    }
    .woocommerce ul.products li.product .price,
    .woocommerce .price,
    .woocommerce a.button,
    .woocommerce button.button,
    .woocommerce input.button,
    .single_add_to_cart_button {
      font-family: 'Montserrat', sans-serif !important;
      font-weight: 500 !important;
    }
    body.logged-in .lx-guest-only { display: none !important; }
    body:not(.logged-in) .lx-loggedin-only { display: none !important; }

/* ===== section unplash images removed ===== */

.lx-cat-card[data-cat=woman] .lx-cat-bg,
.lx-cat-card[data-cat=beauty] .lx-cat-bg,
.lx-cat-card[data-cat=fragrance] .lx-cat-bg {
    background-image: none !important;
}
.lx-cat-card[data-cat=woman] .lx-cat-bg {
    background-color: #2d0a16 !important;
}
.lx-cat-card[data-cat=beauty] .lx-cat-bg {
    background-color: #0d2b1f !important;
}
.lx-cat-card[data-cat=fragrance] .lx-cat-bg {
    background-color: #1a1a1a !important;
}
/* Hero Image - Fixes LCP Delay */
.lx-hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    animation: lxHeroFadeIn 1s ease-out forwards;
    z-index: 0;
}

/* Mobile: Move eyebrow higher above model's head */
@media (max-width: 768px) {
    .lx-hero-eyebrow {
        position: relative;
        top: -90px;               /* Try -90px, -100px, or -110px as needed */
        margin-bottom: 5px;
    }
    .lx-hero-body h1,
    .lx-hero-btns {
        position: relative;
        top: 20px;
    }
}
/* Remove the default WooCommerce quantity field on variable products */
.single-product form.cart .quantity {
    display: none !important;
}
/* force the hero img to be lcp */
.lx-hero-bg-img { opacity: 1 !important; }

/* Ensure exactly 2 cards fit on mobile, with clean titles */
@media (max-width: 768px) {
  .lx-tcard {
    flex: 0 0 calc(50% - 6px) !important;
    min-width: 0 !important;
  }
  .lx-tcard-name {
    font-size: 0.9rem !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.4rem;
  }
}

/* Mobile trending card optimizations */
@media (max-width: 768px) {
  .lx-tcard {
    flex: 0 0 calc(50% - 6px) !important;
    min-width: 0 !important;
  }
  .lx-tcard-name {
    font-size: 0.85rem !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.2rem;
  }
}

/* Classic & slightly bold product card title */
.lx-tcard-name {
  font-family: var(--lx-ff-serif), 'Cormorant Garamond', serif !important;
  font-weight: 600 !important;               /* classic semi‑bold */
  font-size: 1.1rem !important;              /* comfortable size */
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--lx-cream) !important;

  /* Keep title to max 2 lines */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.6rem;                       /* consistent height */
}

/* On mobile make the title a bit smaller but still bold */
@media (max-width: 768px) {
  .lx-tcard-name {
    font-size: 0.95rem !important;
    min-height: 2.4rem;
  }
}

/* ==================== LUBABA GLOBAL CSS ====================
   Merged from:
   1. Subcategory Cleanup (category pages, tabs, cards, grid)
   2. Single Page Styling (product page, accordion, cart, checkout)
   =========================================================== */

/* -------------------------------------------------------
   SECTION 1 – CATEGORY & SUB-CATEGORY PAGES
   ------------------------------------------------------- */

/* ---------- Phase 0: Cleanup for Category & Sub‑category Pages ---------- */

/* Hide the long category description block */
.woocommerce-products-header .term-description,
.woocommerce-archive-header .term-description {
    display: none !important;
}

/* Hide default star ratings (we add our own styled version later) */
.woocommerce ul.products li.product .star-rating {
    display: none !important;
}

/* Unify product title typography with homepage – classic, uniform weight */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .product-title {
    font-weight: 400 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    letter-spacing: 0.02em;
}

/* Hide the default sorting dropdown */
.woocommerce-ordering {
    display: none !important;
}

/* Hide the result count text ("Showing all 7 results") */
.woocommerce-result-count {
    display: none;
}

/* Hide the redundant category page title */
.woocommerce-products-header__title,
.woocommerce-loop-category__title {
    display: none !important;
}

/* Breadcrumb: strong black, not faded */
.woocommerce-breadcrumb,
.woocommerce-breadcrumb a {
    color: #000 !important;
    font-weight: 500;
}

.woocommerce-breadcrumb .separator {
    color: #888;
}

/* ---------- Phase 2: Subcategory Tab Row ---------- */
.lubaba-subcat-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px 0;
    padding: 0;
}

.lubaba-subcat-tabs a {
    display: inline-block;
    text-decoration: none;
    background: #f5f5f5;
    color: #222;
    font-size: 13px;
    font-weight: 400;
    padding: 7px 16px;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
}

.lubaba-subcat-tabs a:hover,
.lubaba-subcat-tabs a.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* ---------- Phase 3: Product Card Redesign ---------- */

/* Card wrapper */
.lubaba-product-card {
    background: #fff;
    border: none;
    position: relative;
    text-align: left;
    margin-bottom: 24px;
}

/* Image area */
.lubaba-card-image-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.lubaba-card-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
}

/* Badges */
.lubaba-badge {
    position: absolute;
    top: 8px;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 2px;
    z-index: 2;
    -webkit-font-smoothing: antialiased;
}

.discount-badge {
    left: 8px;
    background: #c0392b;
    color: #fff;
}

.new-badge {
    right: 8px;
    background: #000;
    color: #fff;
}

/* Wishlist heart (final merged version) */
.lubaba-wishlist-heart {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
    z-index: 3;
    padding: 0;
}

.lubaba-wishlist-heart .tinvwl_add_to_wishlist_button {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    font-size: 18px;
    color: #444;
    line-height: 1;
}

/* Hide the text "Add to wishlist" inside the heart */
.lubaba-wishlist-heart .tinvwl_add_to_wishlist-text {
    display: none;
}

/* Hide any other TI Wishlist button outside the heart */
li.product .tinvwl_add_to_wishlist_button {
    display: none !important;
}

/* Show our heart button explicitly */
.lubaba-wishlist-heart .tinvwl_add_to_wishlist_button {
    display: inline-block !important;
}

/* Subtitle */
.lubaba-card-subtitle {
    font-size: 11px;
    color: #888;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
}

/* Title */
.lubaba-card-title {
    font-size: 13px;
    font-weight: 400 !important;
    margin: 0 0 6px 0;
    line-height: 1.3;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.lubaba-card-title a {
    color: #111;
    text-decoration: none;
}

.lubaba-card-title a:hover {
    color: #555;
}

/* Price */
.lubaba-card-price-wrap {
    font-size: 14px;
    font-weight: 500;
    color: #111;
    margin-bottom: 6px;
    -webkit-font-smoothing: antialiased;
}

.lubaba-card-price-wrap del {
    color: #999;
    font-weight: 400;
    margin-right: 6px;
    font-size: 13px;
}

.lubaba-card-price-wrap ins {
    text-decoration: none;
    color: #c0392b;
}

/* Action buttons */
.lubaba-card-action {
    margin-bottom: 6px;
}

.lubaba-btn-add-to-cart,
.lubaba-btn-view-product {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.2s ease;
    -webkit-font-smoothing: antialiased;
    cursor: pointer;
}

.lubaba-btn-add-to-cart {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}

.lubaba-btn-add-to-cart:hover {
    background: #333;
    color: #fff;
}

.lubaba-btn-view-product {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}

.lubaba-btn-view-product:hover {
    background: #000;
    color: #fff;
}

/* Rating – Google‑style gold */
.lubaba-card-rating {
    font-size: 13px;
    color: #555;
    -webkit-font-smoothing: antialiased;
    line-height: 1.4;
}

.lubaba-stars {
    color: #f4b400;
    letter-spacing: 1px;
}

.lubaba-rating-num {
    font-weight: 500;
    color: #222;
    margin-left: 2px;
}

.lubaba-rating-count {
    color: #999;
    margin-left: 2px;
}

/* Override default WooCommerce grid */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.woocommerce ul.products li.product {
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    float: none !important;
    clear: none !important;
}

@media (max-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* ---- FIX: Hide blank subcategory ghost cards ---- */
.woocommerce ul.products li.product-category {
    display: none !important;
}

/* Fix: Remove WooCommerce clearfix pseudo-elements that become ghost grid items */
.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
    content: none !important;
}

/* ---------- Phase 5 (optional micro‑polish) ---------- */

/* Slightly tighter vertical rhythm */
.lubaba-card-subtitle {
    margin-bottom: 2px;
}

.lubaba-card-title {
    margin-bottom: 4px;
}

.lubaba-card-price-wrap {
    margin-bottom: 4px;
}

.lubaba-card-action {
    margin-bottom: 4px;
}

/* Reduce space between cards (rows) */
.woocommerce ul.products {
    gap: 14px;
}

/* Optional: center the product grid if it feels off‑center */
.woocommerce ul.products {
    justify-content: center;
}

/* -------------------------------------------------------
   SECTION 2 – SINGLE PRODUCT PAGE, ACCORDION, CART, CHECKOUT
   ------------------------------------------------------- */

/*************** Phase 7.1 – Product Page ***************/

/* ----- Overall product summary spacing ----- */
.woocommerce div.product .summary.entry-summary {
    padding: 4px 8px 0 8px;
}

@media (max-width: 768px) {
    .woocommerce div.product .summary.entry-summary {
        padding: 4px 4px 0 4px;
    }
}

/* ----- Rating (gold stars) ----- */
.lubaba-single-rating {
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* ----- Product title – Montserrat clean ----- */
.woocommerce div.product h1.product_title.entry-title,
body.single-product h1.product_title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    font-style: normal !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    line-height: 1.4 !important;
    margin: 0 0 12px 0 !important;
    color: #111 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* ----- Price ----- */
.lubaba-single-price {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #111;
}
.lubaba-single-price del {
    font-weight: 400;
    color: #999;
    font-size: 16px;
    margin-right: 8px;
}
.lubaba-single-price ins {
    text-decoration: none;
    color: #c0392b;
    font-weight: 600;
}

/* ----- SKU ----- */
.lubaba-single-sku {
    margin-top: 20px;
    font-size: 13px;
    color: #555;
    letter-spacing: 0.02em;
}
.lubaba-single-sku .sku-label {
    font-weight: 500;
    color: #111;
}
.lubaba-single-sku .sku-value {
    color: #333;
}

/* ----- Categories ----- */
.lubaba-single-cats {
    margin-top: 6px;
    font-size: 13px;
    color: #555;
}
.lubaba-single-cats a {
    color: #555;
    text-decoration: none;
    margin-right: 6px;
}
.lubaba-single-cats a:hover {
    color: #000;
}

/* Hide default tabs */
.woocommerce-tabs {
    display: none;
}

/* ----- Screen edge fix – All WooCommerce pages ----- */
.woocommerce-page .site-main,
.woocommerce .site-main {
    padding-left: 8px;
    padding-right: 8px;
}

@media (min-width: 769px) {
    .woocommerce-page .site-main,
    .woocommerce .site-main {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ---------- Accordion (Description | Details | Reviews) ---------- */
.lubaba-accordion {
    margin: 30px 0 20px;
    border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
}

.lubaba-accordion-item {
    border-bottom: 1px solid #e2e2e2;
}

.lubaba-accordion-item:last-child {
    border-bottom: none;
}

.lubaba-accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    padding: 16px 0;
    cursor: pointer;
    list-style: none;               /* hide default arrow */
    user-select: none;
    letter-spacing: 0.03em;
}

.lubaba-accordion-title::-webkit-details-marker {
    display: none;
}

/* Custom chevron down (▾) */
.lubaba-accordion-title::after {
    content: '\25BE';               /* ▾ heavy down‑pointing chevron */
    font-size: 20px;
    color: #888;
    margin-left: 10px;
    transition: transform 0.2s ease;
}

details[open] .lubaba-accordion-title::after {
    transform: rotate(180deg);      /* point up */
}

/* Accordion content – black, readable, with bold headings */
.lubaba-accordion-content {
    padding: 0 0 20px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #000;                    /* pure black */
    font-weight: 400;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Make any bold text inside the accordion really stand out */
.lubaba-accordion-content strong,
.lubaba-accordion-content b,
.lubaba-accordion-content h2,
.lubaba-accordion-content h3,
.lubaba-accordion-content h4 {
    font-weight: 700 !important;
    color: #111;
}

.lubaba-accordion-content p {
    color: #000;
    margin-bottom: 12px;
}

/* ---------- "You might also like" heading ---------- */
.lubaba-related-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 40px 0 20px;
    letter-spacing: 0.03em;
    text-transform: none;
}

/* Force product thumbnail visible */
.woocommerce-cart-form .product-thumbnail {
    display: table-cell !important;
    width: 80px !important;
    padding-right: 15px !important;
}
.woocommerce-cart-form .product-thumbnail img {
    width: 80px !important;
    height: auto !important;
    display: block !important;
    border-radius: 4px;
}

/* Remove the entire default shipping row */
.woocommerce-cart-form + .cart-collaterals tr.shipping,
.cart_totals tr.shipping {
    display: none !important;
}

/* ---------- Compact Cart – one‑screen, clean shipping, coupon still visible ---------- */

/* Page heading */
.woocommerce-cart .entry-title {
    font-size: 26px !important;
    margin-bottom: 18px !important;
}

/* Tighter product rows */
.woocommerce-cart-form tbody td {
    padding: 8px 0 !important;
}

/* Product image */
.woocommerce-cart-form .product-thumbnail img {
    width: 60px !important;
}

/* Product name and variant */
.woocommerce-cart-form .product-name {
    font-size: 13px !important;
}
.woocommerce-cart-form .variation {
    font-size: 11px !important;
    margin-top: 2px;
}

/* Price / Subtotal in cart rows */
.woocommerce-cart-form .product-price,
.woocommerce-cart-form .product-subtotal {
    font-size: 13px !important;
}

/* Quantity input */
.woocommerce-cart-form .product-quantity input.qty {
    width: 45px !important;
    height: 30px !important;
    font-size: 13px !important;
}

/* Quantity +/– buttons */
.lubaba-qty-btn {
    width: 22px !important;
    height: 22px !important;
    font-size: 13px !important;
}

/* Totals box – compact */
.cart_totals {
    padding: 10px !important;
}

.cart_totals table td,
.cart_totals table th {
    font-size: 13px !important;
    padding: 6px 0 !important;
}

.cart_totals .order-total td {
    font-size: 18px !important;
}

/* Custom shipping message – no colon, tight */
.lubaba-shipping-msg td {
    padding: 2px 0 !important;
    border: none !important;
}

.lubaba-shipping-msg td::before {
    content: none !important;   /* kill any injected colon */
}

.lubaba-shipping-msg span {
    font-size: 12px !important;
    font-weight: 500;
    color: #111;
    display: inline-block;
    margin: 0;
}

/* Checkout button */
.wc-proceed-to-checkout .checkout-button {
    font-size: 13px !important;
    padding: 12px 0 !important;
    margin-top: 14px !important;
}

/* Reduce gap between subtotal rows */
.cart_totals tr:not(.order-total) td {
    padding: 6px 0 !important;
}

/* Mobile padding – keep text off the edges */
@media (max-width: 768px) {
    .woocommerce-cart-form table.shop_table td,
    .woocommerce-cart-form table.shop_table th {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .cart_totals {
        padding: 12px !important;
    }

    .woocommerce-cart .entry-title {
        font-size: 22px !important;
    }
}

/* ----- Checkout page title ----- */
.woocommerce-checkout h1.entry-title,
.woocommerce-checkout .post-title,
h1.entry-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    color: #111 !important;
    margin-bottom: 16px !important;
}

/* ----- Pay via badges ----- */
.lx-pay {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin: 0 0 24px 0 !important;
    font-family: 'Montserrat', sans-serif !important;
}

.lx-pay span:first-child {
    font-size: 11px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    color: #888 !important;
}

.lx-pay-badge {
    display: inline-block !important;
    padding: 4px 12px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em !important;
    color: #111 !important;
    background: #fafafa !important;
}