/* ============================================================================
   LuxePalace™ — Design system & styles
   Palette tokens map 1:1 to Elementor Global Colors in Phase 2:
     Primary  = --lp-gold   Secondary = --lp-white
     Text     = --lp-white  Accent    = --lp-gold   Background = --lp-black
   ========================================================================== */

:root {
  /* Brand palette */
  --lp-black:      #010101;
  --lp-white:      #fefefe;
  --lp-gold:       #c3a03c;
  --lp-gold-soft:  #d8bd6a;
  --lp-gold-deep:  #8c7325;

  /* Derived neutrals */
  --lp-charcoal:   #0c0c0c;
  --lp-charcoal-2: #141414;
  --lp-charcoal-3: #1c1c1c;
  --lp-muted:      #9a9a9a;
  --lp-line:       rgba(195,160,60,.22);
  --lp-line-soft:  rgba(255,255,255,.08);

  /* Typography */
  --lp-font-head:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --lp-font-body:  'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --lp-font-ui:    'Montserrat', Arial, sans-serif;

  /* Layout */
  --lp-container:  1200px;
  --lp-radius:     14px;
  --lp-radius-sm:  8px;
  --lp-shadow:     0 24px 70px rgba(0,0,0,.55);
  --lp-shadow-sm:  0 8px 30px rgba(0,0,0,.35);
  --lp-header-h:   76px;
  --lp-ease:       cubic-bezier(.22,.61,.36,1);
}

/* --- Reset / base --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--lp-black);
  color: var(--lp-white);
  font-family: var(--lp-font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--lp-font-head); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; }
p { margin: 0 0 1em; }

/* --- Utilities ------------------------------------------------------------ */
.lp-container { width: 100%; max-width: var(--lp-container); margin: 0 auto; padding: 0 24px; }
.lp-section { padding: 88px 0; }
.lp-section--tight { padding: 56px 0; }
.lp-eyebrow {
  font-family: var(--lp-font-ui); text-transform: uppercase; letter-spacing: .32em;
  font-size: 12px; font-weight: 600; color: var(--lp-gold); margin: 0 0 14px;
}
.lp-section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.lp-section-head h2 { font-size: clamp(28px, 4vw, 44px); }
.lp-section-head p { color: var(--lp-muted); }
.lp-rule { width: 64px; height: 2px; background: var(--lp-gold); margin: 18px auto 0; border: 0; }
.lp-gold { color: var(--lp-gold); }
.text-center { text-align: center; }
.lp-two { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 760px) { .lp-two { grid-template-columns: 1fr; } }

/* --- Buttons -------------------------------------------------------------- */
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--lp-font-ui); font-weight: 600; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 2px; transition: all .3s var(--lp-ease);
  border: 1px solid transparent; white-space: nowrap;
}
.lp-btn--gold { background: var(--lp-gold); color: var(--lp-black); }
.lp-btn--gold:hover { background: var(--lp-gold-soft); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(195,160,60,.3); }
.lp-btn--outline { border-color: var(--lp-gold); color: var(--lp-white); }
.lp-btn--outline:hover { background: var(--lp-gold); color: var(--lp-black); }
.lp-btn--light { background: var(--lp-white); color: var(--lp-black); }
.lp-btn--light:hover { background: #fff; transform: translateY(-2px); }
.lp-btn--ghost { color: var(--lp-white); border-color: var(--lp-line-soft); }
.lp-btn--ghost:hover { border-color: var(--lp-gold); color: var(--lp-gold); }
.lp-btn--wa { background: #25D366; color: #04210f; }
.lp-btn--wa:hover { background: #2ee672; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,.3); }
.lp-btn--block { width: 100%; }
.lp-btn--lg { padding: 17px 38px; font-size: 14px; }
.lp-btn svg { width: 18px; height: 18px; flex: 0 0 auto; }
.lp-btn--lg svg { width: 20px; height: 20px; }
.lp-mega__link .arrow svg { width: 16px; height: 16px; }
.lp-brandcard__link svg { width: 15px; height: 15px; }

/* --- Header / Nav --------------------------------------------------------- */
.lp-topbar {
  background: var(--lp-charcoal); color: var(--lp-muted);
  font-family: var(--lp-font-ui); font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase;
  text-align: center; padding: 9px 16px; border-bottom: 1px solid var(--lp-line-soft);
}
.lp-topbar b { color: var(--lp-gold); font-weight: 600; }

.lp-header { position: sticky; top: 0; z-index: 100; background: rgba(3,3,3,.92);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--lp-line-soft); }
.lp-header__inner { display: flex; align-items: center; justify-content: space-between;
  height: var(--lp-header-h); gap: 24px; }
.lp-logo img { height: 42px; width: auto; }
.lp-logo--circle img { height: 56px; width: 56px; border-radius: 50%; object-fit: cover; }

.lp-nav { display: flex; align-items: center; gap: 6px; }
.lp-nav__item { position: relative; }
.lp-nav__link {
  display: inline-flex; align-items: center; gap: 6px; padding: 10px 16px;
  font-family: var(--lp-font-ui); font-size: 13px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--lp-white); position: relative; transition: color .25s;
}
.lp-nav__link::after { content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 1px; background: var(--lp-gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--lp-ease); }
.lp-nav__link:hover, .lp-nav__link.is-active { color: var(--lp-gold); }
.lp-nav__link:hover::after, .lp-nav__link.is-active::after { transform: scaleX(1); }
.lp-nav__chev { width: 9px; height: 9px; transition: transform .3s; }
.lp-nav__item:hover .lp-nav__chev { transform: rotate(180deg); }

/* Mega menu */
.lp-mega {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(12px);
  min-width: 304px; background: var(--lp-charcoal-2); border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-sm); box-shadow: var(--lp-shadow); padding: 14px;
  opacity: 0; visibility: hidden; transition: all .28s var(--lp-ease); z-index: 120;
}
.lp-mega::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.lp-nav__item:hover .lp-mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.lp-mega__title { font-family: var(--lp-font-ui); font-size: 10.5px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--lp-muted); padding: 6px 12px 10px; }
.lp-mega__link {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 11px 12px; border-radius: 6px; color: var(--lp-white);
  font-size: 14.5px; transition: all .2s; border: 1px solid transparent;
}
.lp-mega__name { display: inline-flex; align-items: baseline; gap: 8px; white-space: nowrap; }
.lp-mega__link span.brand-model { color: var(--lp-muted); font-size: 12px; }
.lp-mega__link:hover { background: rgba(195,160,60,.1); border-color: var(--lp-line); color: var(--lp-gold); padding-left: 16px; }
.lp-mega__link .arrow { display: inline-flex; align-items: center; line-height: 0; flex: 0 0 auto;
  color: var(--lp-gold); opacity: 0; transform: translateX(-6px); transition: all .2s; }
.lp-mega__link .arrow svg { width: 16px; height: 16px; display: block; }
.lp-mega__link:hover .arrow { opacity: 1; transform: translateX(0); }

.lp-header__actions { display: flex; align-items: center; gap: 8px; }
.lp-icon-btn { display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; transition: all .25s; position: relative; }
.lp-icon-btn:hover { background: rgba(195,160,60,.12); color: var(--lp-gold); }
.lp-icon-btn svg { width: 22px; height: 22px; }
.lp-cart-count {
  position: absolute; top: 4px; right: 2px; min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--lp-gold); color: var(--lp-black); border-radius: 9px; font-family: var(--lp-font-ui);
  font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.lp-cart-count[data-empty="true"] { display: none; }
.lp-burger { display: none; width: 44px; height: 44px; border-radius: 8px; }
.lp-burger svg { width: 24px; height: 24px; }

/* Mobile panel */
.lp-mobile { display: none; }
.lp-mobile__panel { position: fixed; top: 0; right: 0; bottom: 0; width: min(360px, 86vw);
  background: var(--lp-charcoal); border-left: 1px solid var(--lp-line); z-index: 200;
  transform: translateX(100%); transition: transform .35s var(--lp-ease); padding: 22px; overflow-y: auto; }
.lp-mobile.is-open .lp-mobile__panel { transform: translateX(0); }
.lp-mobile__overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); opacity: 0; visibility: hidden;
  transition: opacity .35s; z-index: 199; }
.lp-mobile.is-open .lp-mobile__overlay { opacity: 1; visibility: visible; }
.lp-mobile__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.lp-mobile__close { width: 40px; height: 40px; }
.lp-mobile__close svg { width: 22px; height: 22px; }
.lp-macc__link { display: block; padding: 16px 6px; font-family: var(--lp-font-ui); letter-spacing: .1em;
  text-transform: uppercase; font-size: 14px; border-bottom: 1px solid var(--lp-line-soft); }
.lp-macc__head { display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 16px 6px; font-family: var(--lp-font-ui); letter-spacing: .1em; text-transform: uppercase;
  font-size: 14px; border-bottom: 1px solid var(--lp-line-soft); }
.lp-macc__head svg { width: 16px; height: 16px; transition: transform .3s; color: var(--lp-gold); }
.lp-macc.is-open .lp-macc__head svg { transform: rotate(180deg); }
.lp-macc__body { max-height: 0; overflow: hidden; transition: max-height .35s var(--lp-ease); }
.lp-macc.is-open .lp-macc__body { max-height: 600px; }
.lp-macc__body a { display: block; padding: 12px 18px; color: var(--lp-muted); font-size: 14px; }
.lp-macc__body a:hover { color: var(--lp-gold); }

/* --- Floating WhatsApp ---------------------------------------------------- */
.lp-fab { position: fixed; right: 22px; bottom: 22px; z-index: 150; width: 60px; height: 60px;
  border-radius: 50%; background: #25D366; box-shadow: 0 10px 30px rgba(37,211,102,.45);
  display: flex; align-items: center; justify-content: center; transition: transform .3s var(--lp-ease);
  animation: lp-fab-in .4s var(--lp-ease) both; }
.lp-fab:hover { transform: scale(1.08); }
.lp-fab svg { width: 32px; height: 32px; }
.lp-fab::after { content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: lp-pulse 2.4s infinite; }
@keyframes lp-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@keyframes lp-fab-in { from { opacity: 0; transform: scale(.4); } to { opacity: 1; transform: scale(1); } }

/* --- Hero carousel -------------------------------------------------------- */
.lp-hero { position: relative; overflow: hidden; background: var(--lp-black); }
.lp-hero__track { display: flex; transition: transform .8s var(--lp-ease); }
.lp-slide { flex: 0 0 100%; min-height: clamp(520px, 78vh, 760px); display: flex; align-items: center;
  position: relative; }
/* Full-bleed photo background (set via inline style) with a readable dark overlay.
   If the image is missing, the slide's own gradient (below) shows through. */
.lp-slide__bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.lp-slide__bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(2,2,2,.94) 0%, rgba(2,2,2,.74) 40%, rgba(2,2,2,.4) 68%, rgba(2,2,2,.6) 100%); }
.lp-slide--sc  { background: radial-gradient(120% 120% at 80% 20%, #1a1407 0%, #060606 55%, #010101 100%); }
.lp-slide--aaa { background: radial-gradient(120% 120% at 80% 20%, #101622 0%, #070707 55%, #010101 100%); }
.lp-slide__inner { position: relative; z-index: 2; display: flex; align-items: center;
  width: 100%; max-width: var(--lp-container); margin: 0 auto; padding: 0 24px; }
.lp-slide__copy { max-width: 600px; }
.lp-slide__copy .lp-eyebrow { animation: lp-up .7s var(--lp-ease) both .1s; }
.lp-slide__title { font-size: clamp(36px, 6vw, 68px); line-height: 1.05; margin-bottom: 18px;
  animation: lp-up .7s var(--lp-ease) both .2s; }
.lp-slide__title em { font-style: italic; color: var(--lp-gold); }
.lp-slide__text { color: #cfcfcf; font-size: 18px; margin-bottom: 30px; animation: lp-up .7s var(--lp-ease) both .3s; }
.lp-slide__cta { display: flex; gap: 14px; flex-wrap: wrap; animation: lp-up .7s var(--lp-ease) both .4s; }
.lp-slide__art { display: flex; justify-content: center; position: relative; }
.lp-slide__art::before { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(195,160,60,.25), transparent 70%); filter: blur(10px); }
.lp-slide__art img { width: clamp(280px, 36vw, 440px); position: relative; z-index: 1;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.6)); animation: lp-float 6s ease-in-out infinite; }
@keyframes lp-float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-16px) rotate(2deg); } }
@keyframes lp-up { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }

.lp-hero__dots { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 5;
  display: flex; gap: 10px; }
.lp-hero__dot { width: 36px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.25); transition: all .3s; }
.lp-hero__dot.is-active { background: var(--lp-gold); width: 52px; }
.lp-hero__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 52px; height: 52px;
  border-radius: 50%; border: 1px solid var(--lp-line); background: rgba(0,0,0,.35); display: flex;
  align-items: center; justify-content: center; transition: all .25s; }
.lp-hero__arrow:hover { background: var(--lp-gold); color: var(--lp-black); border-color: var(--lp-gold); }
.lp-hero__arrow svg { width: 20px; height: 20px; }
.lp-hero__arrow--prev { left: 24px; } .lp-hero__arrow--next { right: 24px; }

/* --- Trust marquee -------------------------------------------------------- */
.lp-trust { padding: 40px 0; border-top: 1px solid var(--lp-line-soft); border-bottom: 1px solid var(--lp-line-soft);
  background: var(--lp-charcoal); }
.lp-trust__label { text-align: center; font-family: var(--lp-font-ui); text-transform: uppercase;
  letter-spacing: .26em; font-size: 11.5px; color: var(--lp-muted); margin-bottom: 26px; }
.lp-marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.lp-marquee__track { display: flex; align-items: center; gap: 60px; width: max-content; animation: lp-marquee 38s linear infinite; }
.lp-marquee:hover .lp-marquee__track { animation-play-state: paused; }
.lp-marquee__item { flex: 0 0 auto; height: 34px; display: flex; align-items: center; opacity: .92; transition: opacity .3s, transform .3s; }
.lp-marquee__item:hover { opacity: 1; transform: translateY(-2px); }
.lp-marquee__item svg { height: 34px; width: auto; }
@keyframes lp-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- Grid & product cards ------------------------------------------------- */
.lp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.lp-grid--3 { grid-template-columns: repeat(3, 1fr); }
.lp-card { background: var(--lp-charcoal-2); border: 1px solid var(--lp-line-soft); border-radius: var(--lp-radius);
  overflow: hidden; transition: all .35s var(--lp-ease); display: flex; flex-direction: column; }
.lp-card:hover { transform: translateY(-6px); border-color: var(--lp-line); box-shadow: var(--lp-shadow-sm); }
.lp-card__media { position: relative; aspect-ratio: 1/1; background:
  radial-gradient(120% 120% at 50% 20%, #1d1d1d, #0a0a0a); display: flex; align-items: center; justify-content: center; padding: 26px; }
.lp-card__media img { width: 78%; transition: transform .5s var(--lp-ease); }
.lp-card:hover .lp-card__media img { transform: scale(1.07) rotate(-2deg); }
.lp-badge { position: absolute; top: 14px; left: 14px; font-family: var(--lp-font-ui); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase; padding: 5px 10px; border-radius: 2px; font-weight: 600; }
.lp-badge--aaa { background: rgba(195,160,60,.16); color: var(--lp-gold-soft); border: 1px solid var(--lp-line); }
.lp-badge--superclone { background: var(--lp-gold); color: var(--lp-black); }
.lp-card__body { padding: 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.lp-card__brand { font-family: var(--lp-font-ui); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--lp-muted); }
.lp-card__name { font-family: var(--lp-font-head); font-size: 20px; }
.lp-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 14px; }
.lp-card__price { font-family: var(--lp-font-ui); font-size: 19px; font-weight: 600; color: var(--lp-gold); }
.lp-card__add { width: 42px; height: 42px; border-radius: 50%; background: rgba(195,160,60,.12); color: var(--lp-gold);
  display: inline-flex; align-items: center; justify-content: center; transition: all .25s; }
.lp-card__add:hover { background: var(--lp-gold); color: var(--lp-black); }
.lp-card__add svg { width: 20px; height: 20px; }

/* --- Brand cards (overview pages) ----------------------------------------- */
.lp-brandcard { position: relative; border-radius: var(--lp-radius); overflow: hidden; border: 1px solid var(--lp-line-soft);
  background: var(--lp-charcoal-2); min-height: 260px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; transition: all .35s var(--lp-ease); }
.lp-brandcard:hover { transform: translateY(-6px); border-color: var(--lp-gold); box-shadow: var(--lp-shadow-sm); }
.lp-brandcard__art { position: absolute; top: -10px; right: -20px; width: 200px; opacity: .14; transition: all .4s; }
.lp-brandcard:hover .lp-brandcard__art { opacity: .28; transform: rotate(8deg) scale(1.05); }
.lp-brandcard__count { font-family: var(--lp-font-ui); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--lp-gold); margin-bottom: 8px; }
.lp-brandcard__name { font-size: 28px; margin-bottom: 6px; position: relative; z-index: 1; }
.lp-brandcard__link { font-family: var(--lp-font-ui); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--lp-muted); display: inline-flex; align-items: center; gap: 8px; transition: color .25s; }
.lp-brandcard:hover .lp-brandcard__link { color: var(--lp-gold); }

/* --- Page hero band ------------------------------------------------------- */
.lp-pagehero { padding: 70px 0 56px; text-align: center; position: relative;
  background: radial-gradient(120% 120% at 50% 0%, #131313, #050505); border-bottom: 1px solid var(--lp-line-soft); }
.lp-pagehero h1 { font-size: clamp(34px, 5vw, 56px); }
.lp-pagehero p { color: var(--lp-muted); max-width: 620px; margin: 0 auto; }
.lp-crumbs { font-family: var(--lp-font-ui); font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--lp-muted); margin-bottom: 18px; }
.lp-crumbs a:hover { color: var(--lp-gold); }
.lp-crumbs span { color: var(--lp-gold); }

/* --- Shop filters & toolbar ----------------------------------------------- */
.lp-filters { margin-bottom: 6px; }
.lp-filterrow { display: flex; align-items: flex-start; gap: 18px; padding: 16px 0; flex-wrap: wrap;
  border-bottom: 1px solid var(--lp-line-soft); }
.lp-filterrow:first-child { padding-top: 0; }
.lp-filterlabel { font-family: var(--lp-font-ui); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--lp-gold); padding-top: 9px; min-width: 54px; flex: 0 0 auto; }
.lp-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  margin: 18px 0 34px; padding-bottom: 22px; border-bottom: 1px solid var(--lp-line-soft); }
.lp-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.lp-chip { font-family: var(--lp-font-ui); font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  padding: 9px 16px; border-radius: 2px; border: 1px solid var(--lp-line-soft); color: var(--lp-muted); transition: all .25s; }
.lp-chip:hover { border-color: var(--lp-gold); color: var(--lp-gold); }
.lp-chip.is-active { background: var(--lp-gold); color: var(--lp-black); border-color: var(--lp-gold); }
.lp-sort { display: flex; align-items: center; gap: 10px; }
.lp-sort label { font-family: var(--lp-font-ui); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--lp-muted); }
.lp-select { font-family: var(--lp-font-ui); font-size: 13px; background: var(--lp-charcoal-2); color: var(--lp-white);
  border: 1px solid var(--lp-line); border-radius: 2px; padding: 11px 16px; cursor: pointer; }
.lp-select:focus { outline: none; border-color: var(--lp-gold); }
.lp-count { font-family: var(--lp-font-ui); font-size: 12px; color: var(--lp-muted); letter-spacing: .08em; }
.lp-empty { text-align: center; padding: 70px 0; color: var(--lp-muted); }

/* --- Single product ------------------------------------------------------- */
.lp-product { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.lp-product__media { background: radial-gradient(120% 120% at 50% 20%, #1d1d1d, #080808);
  border: 1px solid var(--lp-line-soft); border-radius: var(--lp-radius); padding: 48px; position: sticky; top: 96px; }
.lp-product__media img { width: 84%; margin: 0 auto; filter: drop-shadow(0 30px 50px rgba(0,0,0,.6)); }
.lp-product__brand { font-family: var(--lp-font-ui); letter-spacing: .2em; text-transform: uppercase; color: var(--lp-gold); font-size: 13px; margin-bottom: 10px; }
.lp-product__title { font-size: clamp(30px, 4vw, 46px); margin-bottom: 16px; }
.lp-product__price { font-family: var(--lp-font-ui); font-size: 30px; font-weight: 600; color: var(--lp-gold); margin-bottom: 22px; }
.lp-product__desc { color: #cfcfcf; margin-bottom: 28px; }
.lp-qty { display: inline-flex; align-items: center; border: 1px solid var(--lp-line); border-radius: 2px; overflow: hidden; margin-right: 14px; }
.lp-qty button { width: 46px; height: 50px; font-size: 20px; color: var(--lp-gold); transition: background .2s; }
.lp-qty button:hover { background: rgba(195,160,60,.12); }
.lp-qty input { width: 56px; height: 50px; text-align: center; background: transparent; border: none; color: var(--lp-white);
  font-family: var(--lp-font-ui); font-size: 16px; -moz-appearance: textfield; }
.lp-qty input::-webkit-outer-spin-button, .lp-qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.lp-buyrow { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 30px; }
.lp-features { border-top: 1px solid var(--lp-line-soft); padding-top: 26px; display: grid; gap: 16px; }
.lp-feature { display: flex; gap: 14px; align-items: flex-start; }
.lp-feature svg { width: 22px; height: 22px; color: var(--lp-gold); flex: 0 0 auto; margin-top: 2px; }
.lp-feature b { display: block; font-family: var(--lp-font-ui); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.lp-feature span { color: var(--lp-muted); font-size: 14px; }

/* --- Why us / trust strip ------------------------------------------------- */
.lp-why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.lp-why__item { text-align: center; padding: 30px 18px; border: 1px solid var(--lp-line-soft); border-radius: var(--lp-radius);
  background: var(--lp-charcoal-2); transition: all .3s; }
.lp-why__item:hover { border-color: var(--lp-line); transform: translateY(-4px); }
.lp-why__item svg { width: 36px; height: 36px; color: var(--lp-gold); margin: 0 auto 14px; }
.lp-why__item h3 { font-size: 19px; margin-bottom: 6px; }
.lp-why__item p { color: var(--lp-muted); font-size: 14px; margin: 0; }

/* --- CTA band ------------------------------------------------------------- */
.lp-ctaband { background: linear-gradient(120% 120% at 100% 0%, #1a1407, #060606); border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius); padding: 56px; text-align: center; }
.lp-ctaband h2 { font-size: clamp(26px, 4vw, 40px); }
.lp-ctaband p { color: var(--lp-muted); max-width: 560px; margin: 0 auto 26px; }

/* --- Cart ----------------------------------------------------------------- */
.lp-cart { display: grid; grid-template-columns: 1.6fr .9fr; gap: 40px; align-items: start; }
.lp-cartitem { display: grid; grid-template-columns: 96px 1fr auto; gap: 18px; align-items: center;
  padding: 18px 0; border-bottom: 1px solid var(--lp-line-soft); }
.lp-cartitem__media { background: radial-gradient(120% 120% at 50% 20%, #1d1d1d, #0a0a0a); border-radius: var(--lp-radius-sm);
  border: 1px solid var(--lp-line-soft); padding: 12px; }
.lp-cartitem__name { font-family: var(--lp-font-head); font-size: 18px; }
.lp-cartitem__brand { font-family: var(--lp-font-ui); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--lp-muted); }
.lp-cartitem__price { color: var(--lp-gold); font-family: var(--lp-font-ui); font-weight: 600; }
.lp-cartitem__right { text-align: right; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.lp-remove { font-family: var(--lp-font-ui); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--lp-muted); transition: color .2s; }
.lp-remove:hover { color: #e06464; }
.lp-summary { background: var(--lp-charcoal-2); border: 1px solid var(--lp-line); border-radius: var(--lp-radius); padding: 28px; position: sticky; top: 96px; }
.lp-summary h3 { font-size: 22px; margin-bottom: 18px; }
.lp-summary__row { display: flex; justify-content: space-between; padding: 9px 0; color: var(--lp-muted); font-size: 14px; }
.lp-summary__total { display: flex; justify-content: space-between; padding: 16px 0; margin-top: 8px; border-top: 1px solid var(--lp-line);
  font-family: var(--lp-font-head); font-size: 22px; }
.lp-summary__total span:last-child { color: var(--lp-gold); }
.lp-checkout-opts { display: grid; gap: 12px; margin-top: 18px; }
.lp-or { text-align: center; color: var(--lp-muted); font-family: var(--lp-font-ui); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; position: relative; margin: 4px 0; }
.lp-or::before, .lp-or::after { content: ""; position: absolute; top: 50%; width: 38%; height: 1px; background: var(--lp-line-soft); }
.lp-or::before { left: 0; } .lp-or::after { right: 0; }
.lp-secure-note { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 16px; color: var(--lp-muted);
  font-size: 12px; }
.lp-secure-note svg { width: 15px; height: 15px; color: var(--lp-gold); }

/* --- Generic content (terms etc.) ---------------------------------------- */
.lp-prose { max-width: 820px; margin: 0 auto; }
.lp-prose h2 { font-size: 26px; margin-top: 40px; color: var(--lp-white); }
.lp-prose h3 { font-size: 19px; margin-top: 26px; color: var(--lp-gold-soft); }
.lp-prose p, .lp-prose li { color: #c9c9c9; }
.lp-prose ul { list-style: disc; padding-left: 22px; margin-bottom: 1em; }
.lp-prose ul li { margin-bottom: 8px; }
.lp-prose a { color: var(--lp-gold); text-decoration: underline; }
.lp-notice { background: var(--lp-charcoal-2); border: 1px solid var(--lp-line); border-left: 3px solid var(--lp-gold);
  border-radius: var(--lp-radius-sm); padding: 22px 26px; }

/* --- Footer --------------------------------------------------------------- */
.lp-footer { background: var(--lp-charcoal); border-top: 1px solid var(--lp-line-soft); padding: 64px 0 30px; margin-top: 20px; }
.lp-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.lp-footer__logo img { height: 44px; margin-bottom: 18px; }
.lp-footer__about { color: var(--lp-muted); font-size: 14px; max-width: 320px; }
.lp-footer h4 { font-family: var(--lp-font-ui); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--lp-gold); margin-bottom: 18px; }
.lp-footer__links a { display: block; color: var(--lp-muted); font-size: 14px; padding: 6px 0; transition: color .2s; }
.lp-footer__links a:hover { color: var(--lp-gold); }
.lp-socials { display: flex; gap: 12px; margin-top: 4px; }
.lp-social { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--lp-line); display: inline-flex;
  align-items: center; justify-content: center; transition: all .25s; color: var(--lp-white); }
.lp-social:hover { background: var(--lp-gold); color: var(--lp-black); border-color: var(--lp-gold); transform: translateY(-3px); }
.lp-social svg { width: 20px; height: 20px; }
.lp-footer__pay { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 18px; opacity: .7; }
.lp-footer__pay svg { height: 24px; width: auto; }
.lp-footer__bottom { border-top: 1px solid var(--lp-line-soft); padding-top: 24px; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; flex-wrap: wrap; color: var(--lp-muted); font-size: 13px; }
.lp-footer__bottom a:hover { color: var(--lp-gold); }

/* --- Reveal animation ----------------------------------------------------- */
.lp-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--lp-ease), transform .7s var(--lp-ease); }
.lp-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   LANDING PAGE (hidden ads page) — INVERTED palette
   White background, black secondary sections, white text on black, gold accent
   ========================================================================== */
body.lp-landing { background: var(--lp-white); color: var(--lp-black); text-align: center; }
.lp-land-wrap { min-height: 100vh; display: flex; flex-direction: column; }
.lp-land-top { padding: 40px 24px 10px; }
.lp-land-top img { height: 58px; margin: 0 auto; }
.lp-land-top img.lp-land-logo { height: 96px; width: 96px; border-radius: 50%; object-fit: cover; }
.lp-land-hero { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 30px 24px 50px; max-width: 720px; margin: 0 auto; }
.lp-land-eyebrow { font-family: var(--lp-font-ui); text-transform: uppercase; letter-spacing: .3em; font-size: 12px;
  color: var(--lp-gold-deep); font-weight: 600; margin-bottom: 16px; }
.lp-land-hero h1 { font-size: clamp(30px, 6vw, 52px); color: var(--lp-black); margin-bottom: 14px; }
.lp-land-hero h1 em { font-style: italic; color: var(--lp-gold); }
.lp-land-hero p { color: #333; font-size: 18px; margin-bottom: 30px; }
.lp-land-imgwrap { background: var(--lp-black); border-radius: 20px; padding: 26px; margin-bottom: 34px; width: 100%;
  box-shadow: 0 30px 70px rgba(0,0,0,.25); }
.lp-land-imgwrap img { border-radius: 12px; width: 100%; }
.lp-land-cta { font-size: 16px; padding: 18px 44px; }
.lp-land-foot { background: var(--lp-black); color: var(--lp-white); padding: 30px 24px; }
.lp-land-foot p { margin: 0; color: rgba(255,255,255,.7); font-size: 13px; }
.lp-land-foot a { color: var(--lp-gold); }
.lp-land-trust { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-top: 8px; color: #555;
  font-family: var(--lp-font-ui); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.lp-land-trust span { display: inline-flex; align-items: center; gap: 7px; }
.lp-land-trust svg { width: 15px; height: 15px; color: var(--lp-gold-deep); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .lp-grid { grid-template-columns: repeat(3, 1fr); }
  .lp-why { grid-template-columns: repeat(2, 1fr); }
  .lp-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .lp-nav { display: none; }
  .lp-burger { display: inline-flex; }
  .lp-mobile { display: block; }
  .lp-slide__inner { grid-template-columns: 1fr; text-align: center; }
  .lp-slide__copy { margin: 0 auto; }
  .lp-slide__cta { justify-content: center; }
  .lp-slide__art { display: none; }
  .lp-slide { min-height: 540px; }
  .lp-hero__arrow { display: none; }
  .lp-product { grid-template-columns: 1fr; gap: 32px; }
  .lp-product__media { position: static; padding: 32px; }
  .lp-cart { grid-template-columns: 1fr; }
  .lp-summary { position: static; }
  .lp-section { padding: 60px 0; }
}
@media (max-width: 620px) {
  .lp-grid, .lp-grid--3 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .lp-why { grid-template-columns: 1fr; }
  .lp-footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .lp-card__name { font-size: 17px; }
  .lp-ctaband, .lp-summary, .lp-product__media { padding: 30px 22px; }
  .lp-toolbar { flex-direction: column; align-items: stretch; }
  .lp-footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 420px) {
  .lp-grid, .lp-grid--3 { grid-template-columns: 1fr; }
}
