@charset "UTF-8";
:root {
  --lp-blue: #383bf1;
  --lp-blue-2: #6f72ff;
  --lp-blue-soft: #eef0ff;
  --lp-blue-deep: #0a26d6;
  --lp-yellow: #FFD153;
  --lp-yellow-deep: #f6b800;
  --lp-gold: #f9a825;
  --lp-green: #2bc26a;
  --lp-pink: #ffacb4;
  --lp-hot: #ff3b6e;
  --lp-purple: #9333ea;
  --lp-ink: #1a1a1a;
  --lp-gray: #5e5e5e;
  --lp-line: #e8e6e0;
  --lp-bg: #f6f3eb;
  --lp-card: #ffffff;
  --lp-hero-bg: #020312;
  --lp-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --lp-sharp: 'Space Grotesk', system-ui, sans-serif;
  --lp-serif: 'Fraunces', Georgia, serif;
  --lp-body: 'DM Sans', system-ui, sans-serif;
  --lp-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--lp-bg);
  color: var(--lp-ink);
  font-family: var(--lp-body);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

/* annotation chrome (preview only) */
.ann {
  position: relative;
  z-index: 1;
  max-width: 1540px;
  margin: 30px auto 12px;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 14px;
}

.ann h1 {
  font-family: var(--lp-display);
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -0.035em;
  margin: 0;
}

.ann h1 em {
  font-style: normal;
  background: linear-gradient(110deg, var(--lp-yellow), var(--lp-hot) 60%, var(--lp-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ann .meta {
  font-family: var(--lp-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--lp-gray);
}

.ann .meta b {
  color: var(--lp-ink);
  font-weight: 600;
}

.changes {
  max-width: 1540px;
  margin: 0 auto 32px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 980px) {
  .changes {
    grid-template-columns: repeat(2, 1fr);
  }
}
.changes .chg {
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  padding: 12px 14px;
}

.chg .n {
  font-family: var(--lp-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--lp-blue);
  letter-spacing: 0.08em;
  background: var(--lp-blue-soft);
  padding: 2px 7px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 8px;
}

.chg h3 {
  font-family: var(--lp-display);
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}

.chg p {
  font-size: 12px;
  color: var(--lp-gray);
  line-height: 1.5;
  margin: 0;
}

/* ─── TOP NAVBAR ─── */
.lp-topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--lp-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
}

.lp-brand {
  font-family: var(--lp-display);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--lp-yellow-deep);
  text-decoration: none;
}

.lp-brand sup {
  font-size: 9px;
  font-weight: 600;
  margin-left: 2px;
  color: var(--lp-gray);
}

.lp-topnav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-store-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: var(--lp-ink);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--lp-sharp);
  font-weight: 700;
}

.lp-store-pill span {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-size: 11.5px;
}

.lp-store-pill span small {
  font-size: 8.5px;
  font-weight: 500;
  opacity: 0.65;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.lp-topnav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 99px;
  padding: 7px 14px;
  min-width: 220px;
}

.lp-topnav-search svg {
  width: 13px;
  height: 13px;
  color: var(--lp-gray);
}

.lp-topnav-search input {
  background: none;
  border: none;
  outline: none;
  font-family: var(--lp-body);
  font-size: 13px;
  flex: 1;
  color: var(--lp-ink);
}

.lp-login-btn {
  background: var(--lp-yellow);
  color: var(--lp-ink);
  border: 1.5px solid var(--lp-yellow-deep);
  border-radius: 10px;
  padding: 8px 22px;
  font-family: var(--lp-sharp);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(253, 216, 53, 0.3);
}

.lp-login-btn:hover {
  background: var(--lp-yellow-deep);
}

/* ─── PAGE LAYOUT ─── */
.lp-v2-page {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  width: 100%;
  margin: 0 auto;
  padding: 24px 28px 0;
}

@media (max-width: 880px) and (min-width: 768px) {
  .lp-v2-page {
    grid-template-columns: 100px 1fr;
    gap: 16px;
    padding: 16px 16px 0;
  }
}
/* sidebar extras */
.lp-opt-radios {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 4px;
}

.lp-opt-radios label {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 0;
  font-family: var(--lp-sharp);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  color: var(--lp-ink);
}

.lp-opt-radios input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid #8a8a8a;
  border-radius: 50%;
  margin: 0;
  cursor: pointer;
  flex: 0 0 auto;
  position: relative;
  transition: border-color 0.15s;
}

.lp-opt-radios input[type=checkbox] {
  border-radius: 5px;
}

.lp-opt-radios input:checked {
  border-color: var(--lp-blue);
}

.lp-opt-radios input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lp-blue);
  transform: translate(-50%, -50%);
}

.lp-opt-radios input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 10px;
  border: solid var(--lp-blue);
  border-width: 0 2.5px 2.5px 0;
  transform: translate(-50%, -60%) rotate(45deg);
}

.lp-ql-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
  margin-bottom: 14px;
  padding: 0 4px;
}

.lp-ql-grid a {
  color: var(--lp-ink);
  font-size: 13px;
  font-family: var(--lp-sharp);
  font-weight: 500;
  text-decoration: none;
  padding: 4px 0;
}

.lp-ql-grid a:hover {
  color: var(--lp-blue);
}

.lp-socials-row {
  display: flex;
  gap: 8px;
  padding: 8px 4px 0;
}

.lp-socials-row a {
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-gray);
  font-family: var(--lp-sharp);
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.15s;
}

.lp-socials-row a:hover {
  background: var(--lp-yellow);
  color: var(--lp-ink);
  border-color: var(--lp-yellow);
  transform: translateY(-1px);
}

.lp-side-head .chev {
  color: var(--lp-blue);
  flex-shrink: 0;
}

/* ─── SIDEBAR ─── */
.lp-sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px;
  scrollbar-width: thin;
}

.lp-side-block {
  margin-bottom: 20px;
}

.lp-side-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 4px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.lp-side-head h4 {
  font-family: var(--lp-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--lp-blue);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-family: var(--lp-mono);
  font-weight: 700;
}

.lp-side-head .chev {
  color: var(--lp-blue);
}

.lp-loc-select {
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--lp-sharp);
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-gray);
  transition: all 0.2s;
}

.lp-loc-select:hover {
  border-color: var(--lp-blue);
  box-shadow: 0 4px 12px rgba(56, 59, 241, 0.08);
}

.lp-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lp-cat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--lp-sharp);
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-ink);
  transition: all 0.15s;
}

.lp-cat-item:hover {
  background: rgba(56, 59, 241, 0.06);
}

.lp-cat-item.active {
  background: rgba(56, 59, 241, 0.12);
  color: var(--lp-blue);
  font-weight: 700;
}

.lp-cat-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--lp-yellow), var(--lp-yellow-deep));
  flex: 0 0 auto;
}

.lp-cat-item.active .lp-cat-icon {
  box-shadow: 0 4px 10px rgba(255, 184, 0, 0.4);
}

/* ─── MAIN ─── */
.lp-main-v2 {
  min-width: 0;
}

/* ════════════ HERO — modernised ════════════ */
.lp-hero-v2 {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #1f1d2a;
  padding: 40px 48px 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 300px;
  /* was 420 */
  isolation: isolate;
}

.lp-hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 22% 28%, rgba(255, 184, 0, 0.18) 0%, transparent 38%), radial-gradient(circle at 78% 72%, rgba(56, 59, 241, 0.2) 0%, transparent 42%), radial-gradient(ellipse at center, rgba(255, 184, 0, 0.05) 0%, rgba(31, 29, 42, 0.5) 50%, #1f1d2a 80%);
}

[data-bs-theme=dark] .lp-hero-v2 {
  background: #15131e;
}

[data-bs-theme=dark] .lp-hero-v2::before {
  background: radial-gradient(circle at 22% 28%, rgba(255, 184, 0, 0.22) 0%, transparent 38%), radial-gradient(circle at 78% 72%, rgba(56, 59, 241, 0.26) 0%, transparent 42%), radial-gradient(ellipse at center, rgba(255, 184, 0, 0.05) 0%, rgba(21, 19, 30, 0.5) 50%, #15131e 80%);
}

/* Subtle grain */
.lp-hero-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.4;
  background-image: radial-gradient(1.5px 1.5px at 12% 18%, rgba(255, 255, 255, 0.5), transparent), radial-gradient(1px 1px at 28% 36%, rgba(255, 255, 255, 0.4), transparent), radial-gradient(1.5px 1.5px at 52% 22%, rgba(255, 255, 255, 0.5), transparent), radial-gradient(1px 1px at 72% 44%, rgba(255, 255, 255, 0.4), transparent), radial-gradient(2px 2px at 88% 70%, rgba(255, 209, 83, 0.5), transparent), radial-gradient(1px 1px at 18% 78%, rgba(255, 255, 255, 0.4), transparent), radial-gradient(1.5px 1.5px at 42% 88%, rgba(255, 255, 255, 0.3), transparent), radial-gradient(1px 1px at 68% 84%, rgba(255, 255, 255, 0.4), transparent);
  animation: hero-stars 5s ease-in-out infinite;
}

@keyframes hero-stars {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}
.lp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.lp-hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  font-family: var(--lp-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.lp-hero-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 209, 83, 0.35);
  background: linear-gradient(145deg, rgba(255, 184, 0, 0.16), rgba(255, 184, 0, 0.04));
  color: var(--lp-yellow);
  font-family: var(--lp-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 18px rgba(255, 184, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  animation: badge-glow 3.5s ease-in-out infinite;
  margin-bottom: 20px;
}

.lp-hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp-yellow);
  box-shadow: 0 0 6px var(--lp-yellow);
  animation: badge-pulse 1.6s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
@keyframes badge-glow {
  0%, 100% {
    box-shadow: 0 0 18px rgba(255, 184, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 184, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}
.lp-hero-content h1 {
  font-family: var(--lp-display);
  color: #fff;
  font-size: clamp(40px, 4.6vw, 68px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 0 0 14px;
}

.lp-hero-content h1 .lead-word {
  display: block;
  font-family: var(--lp-sharp);
  font-size: 0.22em;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
  line-height: 1;
}

.lp-hero-content h1 .place {
  background: linear-gradient(110deg, #FFE08A 0%, var(--lp-gold) 35%, #FFE08A 70%, var(--lp-gold) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
  animation: place-shimmer 5s ease-in-out infinite;
}

@keyframes place-shimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 200% 50%;
  }
}
.lp-hero-content h1 .place::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, transparent, var(--lp-gold), transparent);
  transform-origin: center;
  animation: place-underline 4.5s ease-in-out infinite;
}

@keyframes place-underline {
  0%, 100% {
    transform: scaleX(0.2);
    opacity: 0.4;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}
.lp-hero-content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
  max-width: 540px;
}

/* Hero stat chips */
.lp-hero-chips {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.lp-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--lp-sharp);
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.lp-hero-chip svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  color: var(--lp-yellow);
}

.lp-hero-chip b {
  color: #fff;
  font-weight: 800;
}

/* ════════════ TABS — modernised ════════════ */
.lp-tabnav-v2 {
  background: var(--lp-card);
  border: 1px solid var(--lp-line);
  border-radius: 18px;
  margin: 20px 0 0;
  position: sticky;
  top: 72px;
  z-index: 50;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: box-shadow 0.2s, border-radius 0.2s, background 0.2s;
}

.lp-tabnav-v2.is-stuck {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.lp-tabnav-v2 .scroll {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 8px;
  gap: 4px;
}

.lp-tabnav-v2 .scroll::-webkit-scrollbar {
  display: none;
}

.lp-tab-btn {
  flex: 1;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 14px 16px 15px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-family: var(--lp-sharp);
  font-size: 13.5px;
  font-weight: 600;
  /* bigger */
  color: var(--lp-gray);
  min-width: 120px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  letter-spacing: -0.005em;
}

.lp-tab-btn::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0;
  height: 2.5px;
  background: var(--lp-blue);
  border-radius: 99px;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.lp-tab-btn:hover {
  color: var(--lp-ink);
  background: rgba(56, 59, 241, 0.05);
  transform: translateY(-2px);
}

.lp-tab-btn:hover::before {
  width: 60%;
}

.lp-tab-btn.active {
  color: var(--lp-blue);
  background: var(--lp-blue-soft);
  font-weight: 700;
}

.lp-tab-btn.active::before {
  width: 60%;
}

.lp-tab-btn .lp-tab-icon-3d {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.18));
  transition: transform 0.35s cubic-bezier(0.5, -0.4, 0.3, 1.5);
}

.lp-tab-btn:hover .lp-tab-icon-3d {
  transform: translateY(-3px) rotate(-6deg) scale(1.08);
}

.lp-tab-btn.active .lp-tab-icon-3d {
  animation: tab-pop 0.5s cubic-bezier(0.5, -0.4, 0.3, 1.5);
}

@keyframes tab-pop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.2) rotate(-8deg);
  }
  100% {
    transform: scale(1);
  }
}
/* ════════════ ABOUT — modernised ════════════ */
.lp-about-v2 {
  background: var(--lp-card);
  border: none;
  border-radius: 20px;
  padding: 32px 36px;
  margin: 20px 0 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.lp-about-v2::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 209, 83, 0.16), transparent 70%);
  pointer-events: none;
}

.lp-about-eyebrow {
  font-family: var(--lp-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lp-gray);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lp-about-eyebrow::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: currentColor;
}

.lp-about-head {
  font-family: var(--lp-display);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.04;
  font-weight: 900;
  color: var(--lp-ink);
  letter-spacing: -0.035em;
  margin: 0 0 16px;
  position: relative;
  z-index: 1;
}

.lp-about-head em {
  font-style: italic;
  font-family: var(--lp-serif);
  font-weight: 600;
  color: var(--lp-blue);
}

.lp-about-head .lp-pill {
  background: var(--lp-yellow);
  color: var(--lp-blue);
  padding: 0 12px;
  border-radius: 8px;
  display: inline-block;
  line-height: 1.08;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.08);
}

.lp-about-body {
  color: var(--lp-gray);
  font-size: 15px;
  line-height: 1.75;
  max-width: 920px;
  margin: 0;
  position: relative;
  z-index: 1;
}

.lp-about-body .drop {
  float: left;
  font-family: var(--lp-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 46px;
  line-height: 0.85;
  color: var(--lp-blue);
  margin: 6px 8px 0 0;
}

/* ════════════ SECTION HEAD — modernised ════════════ */
.lp-section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.lp-section-head .lp-sec-icon {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  flex: 0 0 auto;
}

.lp-section-head h2 {
  font-family: var(--lp-display);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--lp-ink);
}

.lp-section-head h2 em {
  font-family: var(--lp-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--lp-blue);
}

.lp-section-head .lp-sec-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--lp-blue), transparent);
  border-radius: 2px;
}

.lp-section-head .lp-sec-count {
  font-family: var(--lp-mono);
  font-size: 11px;
  color: var(--lp-gray);
  background: var(--lp-bg);
  padding: 4px 10px;
  border-radius: 99px;
  font-weight: 600;
}

.lp-section-head .lp-arrows {
  display: flex;
  gap: 6px;
  flex: 0 0 auto;
}

.lp-section-head .lp-arrows button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--lp-line);
  background: var(--lp-card);
  color: var(--lp-ink);
  cursor: pointer;
  font-size: 14px;
  font-family: var(--lp-sharp);
  font-weight: 700;
  transition: all 0.15s;
}

.lp-section-head .lp-arrows button:hover {
  background: var(--lp-ink);
  color: #fff;
  border-color: var(--lp-ink);
}

.lp-section-v2 {
  margin-bottom: 18px;
  padding-block: 10px;
}

.lp-card-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
  scroll-behavior: smooth;
}

.lp-card-row::-webkit-scrollbar {
  display: none;
}

.lp-exp-slot {
  flex: 0 0 calc((100% - 48px) / 4);
  scroll-snap-align: start;
  aspect-ratio: 1/1.18;
  background: var(--lp-card);
  border: 1.5px solid var(--lp-line);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  background: linear-gradient(160deg, #3a2418, #1a0e08);
}

.lp-exp-slot:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

/* ════════════ PRICING + REVIEW — modernised ════════════ */
.lp-pr-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 22px;
  margin-bottom: 28px;
}

@media (max-width: 992px) {
  .lp-pr-grid {
    grid-template-columns: 1fr;
  }
}
.lp-pricing-card {
  background: var(--lp-card);
  border: 1px solid var(--lp-line);
  border-radius: 20px;
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}

.lp-pricing-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 209, 83, 0.14), transparent 70%);
  pointer-events: none;
}

.lp-pricing-card .lp-card-eyebrow {
  font-family: var(--lp-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-blue);
  background: var(--lp-blue-soft);
  padding: 4px 10px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 10px;
}

.lp-pricing-card h3 {
  font-family: var(--lp-display);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: var(--lp-ink);
  position: relative;
  z-index: 1;
}

.lp-pricing-card h3 em {
  font-family: var(--lp-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--lp-blue);
}

.lp-tier {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--lp-bg);
  border: 1px solid transparent;
  border-radius: 14px;
  margin-bottom: 10px;
  transition: all 0.2s;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.lp-tier:hover {
  transform: translateX(4px);
  background: #fff;
  border-color: var(--lp-blue);
  box-shadow: 0 8px 20px rgba(56, 59, 241, 0.08);
}

.lp-tier-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lp-yellow), var(--lp-gold));
  box-shadow: 0 4px 12px rgba(255, 184, 0, 0.3);
  font-family: var(--lp-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--lp-ink);
}

.lp-tier:nth-child(3) .lp-tier-icon {
  background: linear-gradient(135deg, #ffacb4, var(--lp-hot));
  box-shadow: 0 4px 12px rgba(255, 107, 122, 0.3);
  color: #fff;
}

.lp-tier:nth-child(4) .lp-tier-icon {
  background: linear-gradient(135deg, #a0e0ff, #5bb0ff);
  box-shadow: 0 4px 12px rgba(91, 176, 255, 0.3);
  color: #fff;
}

.lp-tier h4 {
  font-family: var(--lp-display);
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 2px;
  letter-spacing: -0.01em;
}

.lp-tier p {
  font-size: 13px;
  color: var(--lp-gray);
  margin: 0;
  line-height: 1.4;
}

.lp-review-block {
  background: linear-gradient(135deg, #0d2137 0%, #0a0930 100%);
  border-radius: 20px;
  padding: 36px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-review-block::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 80% 20%, rgba(255, 209, 83, 0.12), transparent 50%), radial-gradient(circle at 20% 80%, rgba(56, 59, 241, 0.18), transparent 50%);
}

.lp-review-block > * {
  position: relative;
  z-index: 1;
}

.lp-review-eyebrow {
  font-family: var(--lp-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-yellow);
  background: rgba(255, 209, 83, 0.12);
  padding: 4px 10px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 12px;
}

.lp-review-block h3 {
  font-family: var(--lp-display);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
}

.lp-review-block h3 em {
  font-family: var(--lp-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--lp-yellow);
}

.lp-review-quotemark {
  font-family: var(--lp-serif);
  font-style: italic;
  font-size: 64px;
  color: var(--lp-yellow);
  line-height: 0.5;
  height: 28px;
  margin-bottom: 8px;
  opacity: 0.85;
}

.lp-review-stars {
  color: var(--lp-yellow);
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.lp-review-text {
  font-family: var(--lp-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 20px;
}

.lp-review-author {
  font-family: var(--lp-sharp);
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
}

.lp-review-author small {
  display: block;
  font-weight: 500;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 3px;
}

.lp-review-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 24px;
}

.lp-review-nav button {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  cursor: pointer;
  font-family: var(--lp-sharp);
  font-weight: 700;
  transition: all 0.2s;
}

.lp-review-nav button:hover {
  background: var(--lp-yellow);
  color: var(--lp-ink);
  border-color: var(--lp-yellow);
}

.lp-review-dots {
  display: inline-flex;
  gap: 5px;
  margin: 0 12px;
  align-items: center;
}

.lp-review-dots .d {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  transition: all 0.25s;
}

.lp-review-dots .d.on {
  background: var(--lp-yellow);
  width: 22px;
}

/* ════════════ FAQ + CONTACT — modernised ════════════ */
.fq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
  align-items: start;
}

@media (max-width: 992px) {
  .fq-grid {
    grid-template-columns: 1fr;
  }
}
.faq-block {
  background: var(--lp-card);
  border: 1px solid var(--lp-line);
  border-radius: 20px;
  padding: 30px 34px;
}

.faq-block-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.faq-block h2 {
  font-family: var(--lp-display);
  font-size: 24px;
  font-weight: 900;
  margin: 0;
  letter-spacing: -0.025em;
  color: var(--lp-ink);
}

.faq-block h2 em {
  font-family: var(--lp-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--lp-blue);
}

.faq-block .schema-badge {
  font-family: var(--lp-mono);
  font-size: 10px;
  color: #1a6e3a;
  background: #dff3ec;
  padding: 4px 9px;
  border-radius: 5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.faq-block .schema-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp-green);
}

.faq-item {
  border-bottom: 1px solid var(--lp-line);
  margin-bottom: 0;
  transition: all 0.2s;
  background: none;
  border-radius: 0;
}

.faq-item:last-of-type {
  border-bottom: none;
}

.faq-item summary {
  list-style: none;
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  transition: padding 0.2s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item .q-num {
  font-family: var(--lp-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--lp-blue);
  background: var(--lp-blue-soft);
  padding: 3px 8px;
  border-radius: 5px;
  letter-spacing: 0.04em;
  flex: 0 0 auto;
  margin-top: 2px;
}

.faq-item .q-text {
  font-family: var(--lp-display);
  font-weight: 700;
  font-size: 16.5px;
  line-height: 1.35;
  flex: 1;
  color: var(--lp-ink);
  letter-spacing: -0.005em;
}

.faq-item .q-toggle {
  width: 30px;
  height: 30px;
  background: var(--lp-bg);
  color: var(--lp-ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  flex: 0 0 auto;
  font-family: var(--lp-sharp);
  font-weight: 700;
  font-size: 18px;
}

.faq-item:hover .q-toggle {
  background: var(--lp-blue);
  color: #fff;
}

.faq-item[open] .q-toggle {
  background: var(--lp-blue);
  color: #fff;
  transform: rotate(45deg);
}

.faq-item[open] {
  background: linear-gradient(180deg, rgba(56, 59, 241, 0.03), transparent);
  border-radius: 12px;
  margin: 0 -12px;
  padding: 0 12px;
  border-bottom-color: transparent;
}

.faq-answer {
  padding: 0 0 18px 36px;
  font-family: var(--lp-body);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--lp-gray);
}

.contact-block-y {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 32px 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-block-y::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 0% 0%, rgba(56, 59, 241, 0.28), transparent 45%), radial-gradient(circle at 100% 100%, rgba(255, 209, 83, 0.12), transparent 45%);
}

.contact-block-y .contact-cell {
  position: relative;
  z-index: 1;
}

.contact-block-y .lp-card-eyebrow {
  font-family: var(--lp-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-yellow);
  background: rgba(255, 209, 83, 0.12);
  padding: 4px 10px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 10px;
}

.contact-block-y h2 {
  font-family: var(--lp-display);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: #fff !important;
  margin: 0 0 6px;
}

.contact-block-y h2 em {
  font-family: var(--lp-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--lp-yellow);
}

.contact-block-y > .contact-cell > p {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 13.5px;
  font-weight: 500;
  margin: 0 0 22px;
  line-height: 1.55;
}

.contact-block-y .form-control {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  padding: 11px 16px !important;
  color: #fff !important;
  font-family: var(--lp-body);
  font-size: 14px;
  transition: border-color 0.15s, background 0.15s;
  resize: none;
  width: 100%;
  margin-bottom: 10px;
}

.contact-block-y .form-control:focus {
  outline: none;
  border-color: var(--lp-blue-2) !important;
  background: rgba(255, 255, 255, 0.09) !important;
}

.contact-block-y .form-control::-moz-placeholder {
  color: #ffffff !important;
  opacity: 0.85;
}

.contact-block-y .form-control::placeholder {
  color: #ffffff !important;
  opacity: 0.85;
}

.contact-block-y #contactUsSubmitBtn {
  background: var(--lp-blue) !important;
  border: none !important;
  border-radius: 12px !important;
  font-family: var(--lp-sharp);
  font-size: 14px;
  font-weight: 700;
  color: #fff !important;
  padding: 13px 18px;
  width: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.15s;
  margin-top: 6px;
}

.contact-block-y #contactUsSubmitBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(56, 59, 241, 0.45);
}

/* Contact form validation */
.contact-block-y .form-control.is-invalid {
  border-color: #ff6b7a !important;
  background: rgba(255, 107, 122, 0.08) !important;
}

.contact-block-y .field-error {
  color: #ff6b7a;
  font-family: var(--lp-mono);
  font-size: 10.5px;
  font-weight: 600;
  margin: -6px 0 6px 4px;
  display: block;
  letter-spacing: 0.04em;
}

.contact-block-y .field-error::before {
  content: "⚠ ";
}

.faq-item.hidden-faq {
  display: none;
}

.faq-list.expanded .faq-item.hidden-faq {
  display: block;
  animation: fq-in 0.25s ease-out;
}

@keyframes fq-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.faq-more-btn {
  margin-top: 14px;
  background: none;
  border: 1.5px dashed var(--lp-blue);
  color: var(--lp-blue);
  border-radius: 10px;
  padding: 10px 20px;
  font-family: var(--lp-sharp);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s;
}

.faq-more-btn:hover {
  background: var(--lp-blue);
  color: #fff;
  border-style: solid;
}

.faq-more-btn .fq-arr {
  display: inline-block;
  transition: transform 0.25s;
}

.faq-list.expanded .faq-more-btn .fq-arr {
  transform: rotate(180deg);
}

/* ════════════ POPULAR SEARCHES — modernised ════════════ */
.lp-popsearch {
  margin-bottom: 28px;
  background: var(--lp-card);
  border: 1px solid var(--lp-line);
  padding-top: 0px !important;
  border-radius: 20px;
  padding: 30px 34px;
  position: relative;
  overflow: hidden;
}

.lp-popsearch::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 209, 83, 0.18), transparent 70%);
  pointer-events: none;
}

.lp-popsearch > * {
  position: relative;
  z-index: 1;
}

.lp-popsearch-eyebrow {
  font-family: var(--lp-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lp-gray);
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lp-popsearch-eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: currentColor;
}

.lp-popsearch h2 {
  font-family: var(--lp-display);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.035em;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: 1.04;
}

.lp-popsearch h2 em {
  font-family: var(--lp-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 24px;
  /* same size as "Popular" */
  background: linear-gradient(110deg, var(--lp-blue), var(--lp-purple) 60%, var(--lp-hot));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pop-search-flow 5s linear infinite;
  position: relative;
}

@keyframes pop-search-flow {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 200% 50%;
  }
}
.lp-popsearch h2 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--lp-yellow), transparent);
  border-radius: 3px;
  animation: pop-underline 4s ease-in-out infinite;
}

@keyframes pop-underline {
  0%, 100% {
    transform: scaleX(0.3);
    opacity: 0.4;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}
.lp-popsearch h2::before {
  content: "";
  width: 25px;
  height: 25px;
  background: radial-gradient(circle at 30% 30%, #FFE17E 0%, #FFBE2A 60%, #C98A00 100%);
  border-radius: 50%;
  flex: 0 0 auto;
  box-shadow: 0 4px 10px rgba(255, 190, 42, 0.4), inset -3px -3px 5px rgba(0, 0, 0, 0.2);
  animation: pop-orb 5s ease-in-out infinite;
}

@keyframes pop-orb {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-3px) rotate(15deg);
  }
}
.lp-popsearch-sub {
  color: var(--lp-gray);
  font-size: 14px;
  margin: 0 0 22px;
  font-family: var(--lp-body);
  line-height: 1.5;
  max-width: 520px;
}

.lp-pop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lp-pop-tag {
  position: relative;
  padding: 10px 18px 10px 36px;
  border-radius: 999px;
  font-family: var(--lp-sharp);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  overflow: hidden;
}

.lp-pop-tag::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  border-radius: 50%;
  transition: transform 0.25s;
}

.lp-pop-tag:nth-child(1) {
  background: linear-gradient(135deg, #FFE9D5, #FFD9B0);
  color: #8a4a00;
}

.lp-pop-tag:nth-child(1)::before {
  background: radial-gradient(circle at 30% 30%, #FFE17E, #FFBE2A);
}

.lp-pop-tag:nth-child(2) {
  background: linear-gradient(135deg, #FFE3E6, #FFC9CE);
  color: #a02838;
}

.lp-pop-tag:nth-child(2)::before {
  background: radial-gradient(circle at 30% 30%, #FFA8B0, #FF6B7A);
}

.lp-pop-tag:nth-child(3) {
  background: linear-gradient(135deg, #E8EAFF, #C8CDFF);
  color: #2528b8;
}

.lp-pop-tag:nth-child(3)::before {
  background: radial-gradient(circle at 30% 30%, #8A8DFF, #383BF1);
}

.lp-pop-tag:nth-child(4) {
  background: linear-gradient(135deg, #FFF3E0, #FFE3B5);
  color: #855700;
}

.lp-pop-tag:nth-child(4)::before {
  background: radial-gradient(circle at 30% 30%, #FFE17E, #F6B800);
}

.lp-pop-tag:nth-child(5) {
  background: linear-gradient(135deg, #E8FAF0, #BFEDD5);
  color: #146140;
}

.lp-pop-tag:nth-child(5)::before {
  background: radial-gradient(circle at 30% 30%, #7CEFAA, #2BC26A);
}

.lp-pop-tag:nth-child(6) {
  background: linear-gradient(135deg, #E0F1FF, #B8DCFF);
  color: #0d4f99;
}

.lp-pop-tag:nth-child(6)::before {
  background: radial-gradient(circle at 30% 30%, #A0E0FF, #5BB0FF);
}

.lp-pop-tag:nth-child(7) {
  background: linear-gradient(135deg, #F5E8FF, #E3C9FF);
  color: #5a1a8c;
}

.lp-pop-tag:nth-child(7)::before {
  background: radial-gradient(circle at 30% 30%, #C0A8FF, #7B6AE0);
}

.lp-pop-tag:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.lp-pop-tag:hover::before {
  transform: translateY(-50%) scale(1.25) rotate(15deg);
}

/* ════════════ EXPLORE LOCATIONS — modernised ════════════ */
.lp-explore {
  margin-bottom: 28px;
}

.lp-loc-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.lp-loc-grid::-webkit-scrollbar {
  display: none;
}

.lp-loc-card {
  flex: 0 0 calc(20% - 12px);
  height: 200px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #2a2a2a, #555);
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 0.35s, box-shadow 0.35s;
  isolation: isolate;
}

.lp-loc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.15), transparent 60%);
  z-index: 0;
}

.lp-loc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent 55%);
  z-index: 1;
}

.lp-loc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
}

.lp-loc-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 18px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.lp-loc-name {
  color: #fff;
  font-family: var(--lp-display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 0;
}

.lp-loc-sub {
  display: block;
  font-family: var(--lp-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-top: 3px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lp-loc-arrow {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-ink);
  font-size: 15px;
  flex-shrink: 0;
  transition: all 0.25s;
}

.lp-loc-card:hover .lp-loc-arrow {
  background: var(--lp-yellow);
  transform: rotate(-45deg) scale(1.1);
}

/* ════════════════════════════════════════════════════════════
     APP AD · "For the moments between" — Apple-style premium
     ════════════════════════════════════════════════════════════ */
.lp-app-pa {
  position: relative;
  border-radius: 28px;
  background: #0a0a0c;
  color: #fff;
  overflow: hidden;
  padding: 80px 56px;
  margin-bottom: 28px;
  isolation: isolate;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

/* Cinematic glow layers */
.lp-pa-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.lp-pa-glow1 {
  top: -30%;
  left: -15%;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.16), transparent 70%);
  animation: lp-pa-drift 14s ease-in-out infinite;
}

.lp-pa-glow2 {
  bottom: -40%;
  right: -15%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(105, 80, 180, 0.22), transparent 70%);
  animation: lp-pa-drift 18s ease-in-out infinite reverse;
}

@keyframes lp-pa-drift {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -20px) scale(1.06);
  }
}
/* Grain */
.lp-pa-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.lp-pa-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* Copy column */
.lp-pa-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--lp-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 32px;
}

.lp-pa-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp-yellow);
  box-shadow: 0 0 8px rgba(255, 209, 83, 0.6);
  animation: lp-pa-pulse 1.8s ease-in-out infinite;
}

@keyframes lp-pa-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
.lp-app-pa h2 {
  font-family: var(--lp-display);
  font-weight: 300;
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  color: #fff;
}

.lp-app-pa h2 .ln {
  display: block;
  opacity: 0;
  transform: translateY(8px);
  animation: lp-pa-rise 0.9s cubic-bezier(0.2, 0.6, 0.2, 1) forwards;
}

.lp-app-pa h2 .ln:nth-child(1) {
  animation-delay: 0.05s;
}

.lp-app-pa h2 .ln:nth-child(2) {
  animation-delay: 0.2s;
}

.lp-app-pa h2 .ln:nth-child(3) {
  animation-delay: 0.35s;
}

.lp-app-pa h2 .ln:nth-child(4) {
  animation-delay: 0.5s;
}

@keyframes lp-pa-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lp-app-pa h2 em {
  font-family: var(--lp-serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.65);
  padding-right: 0.1em;
}

.lp-app-pa h2 strong {
  font-family: var(--lp-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(105deg, #FFE08A 0%, var(--lp-gold) 35%, #FFE08A 70%, var(--lp-gold) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: lp-pa-shimmer 6s ease-in-out infinite;
}

@keyframes lp-pa-shimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 200% 50%;
  }
}
.lp-pa-sub {
  font-family: var(--lp-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 36px;
  max-width: 480px;
  letter-spacing: -0.005em;
}

.lp-pa-mark {
  font-family: var(--lp-display);
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #fff;
  position: relative;
}

.lp-pa-mark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--lp-yellow);
  transform: scaleX(0);
  transform-origin: left;
  animation: lp-pa-underline 5s ease-out 1s forwards;
}

@keyframes lp-pa-underline {
  to {
    transform: scaleX(1);
  }
}
/* CTA pills */
.lp-pa-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.lp-pa-store {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 13px 22px 13px 20px;
  color: #fff !important;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.2, 0.6, 0.2, 1), box-shadow 0.25s, filter 0.25s;
  position: relative;
  overflow: hidden;
}

/* Apple (first child) — brand blue */
.lp-pa-store:nth-of-type(1) {
  background: linear-gradient(135deg, #1e3df1 0%, #383bf1 55%, #0a26d6 100%);
  box-shadow: 0 8px 22px rgba(56, 59, 241, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.lp-pa-store:nth-of-type(1):hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(56, 59, 241, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  filter: brightness(1.05);
}

/* Google (second child) — red */
.lp-pa-store:nth-of-type(2) {
  background: linear-gradient(135deg, #ff3b6e 0%, #e53e3e 55%, #c52828 100%);
  box-shadow: 0 8px 22px rgba(229, 62, 62, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.lp-pa-store:nth-of-type(2):hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(229, 62, 62, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  filter: brightness(1.05);
}

/* Continuous shine sweep (no hover required) */
.lp-pa-store::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0) 70%, transparent 100%);
  animation: lp-pa-shine 3.6s ease-in-out infinite;
  pointer-events: none;
  border-radius: inherit;
}

.lp-pa-store:nth-of-type(2)::before {
  animation-delay: -1.8s;
}

/* Glossy highlight at top edge */
.lp-pa-store::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent);
  pointer-events: none;
  border-radius: 14px 14px 0 0;
}

@keyframes lp-pa-shine {
  0% {
    left: -100%;
  }
  60%, 100% {
    left: 200%;
  }
}
.lp-pa-store svg {
  flex: 0 0 auto;
  color: #fff;
  position: relative;
  z-index: 1;
}

.lp-pa-store span {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-family: var(--lp-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.012em;
  color: #fff;
  position: relative;
  z-index: 1;
}

.lp-pa-store span small {
  font-family: var(--lp-sharp);
  font-size: 9.5px;
  font-weight: 500;
  opacity: 0.75;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
  color: #fff;
}

.lp-pa-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--lp-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
}

.lp-pa-meta b {
  color: #fff;
  font-weight: 700;
  margin-right: 3px;
}

.lp-pa-meta svg {
  vertical-align: -1px;
  color: var(--lp-yellow);
  margin: 0 2px 0 -1px;
}

.lp-pa-meta .sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.lp-pa-live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp-yellow);
  box-shadow: 0 0 0 0 rgba(255, 209, 83, 0.6);
  animation: lp-pa-live 1.4s ease-out infinite;
  margin-right: 2px;
}

@keyframes lp-pa-live {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 209, 83, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 209, 83, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 209, 83, 0);
  }
}
.lp-pa-meta-end {
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.85) 0%, #FFD153 50%, rgba(255, 255, 255, 0.85) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: lp-pa-shimmer-end 3s linear infinite;
  font-style: italic;
  font-family: var(--lp-serif);
  font-weight: 600;
  letter-spacing: -0.005em;
}

@keyframes lp-pa-shimmer-end {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
.lp-pa-bubble-final {
  font-family: var(--lp-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: -0.005em;
  line-height: 1.4;
  padding: 9px 16px;
  max-width: 220px;
  text-align: right;
  box-shadow: 0 4px 14px rgba(255, 209, 83, 0.18);
  animation: lp-pa-final-glow 3s ease-in-out infinite;
}

@keyframes lp-pa-final-glow {
  0%, 100% {
    box-shadow: 0 4px 14px rgba(255, 209, 83, 0.18);
  }
  50% {
    box-shadow: 0 4px 22px rgba(255, 209, 83, 0.45);
  }
}
.lp-pa-msg-final {
  margin-top: 4px;
}

/* Phone stage */
.lp-pa-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.lp-pa-device {
  position: relative;
  width: 300px;
  border-radius: 42px;
  background: linear-gradient(160deg, #1c1c22, #0d0d10);
  padding: 12px 10px 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 0 1.5px rgba(255, 255, 255, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: perspective(900px) rotateY(-3deg) rotateX(2deg);
  transition: transform 0.6s ease;
}

.lp-pa-device:hover {
  transform: perspective(900px) rotateY(0) rotateX(0);
}

.lp-pa-notch {
  width: 90px;
  height: 22px;
  background: #000;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 10px;
  position: relative;
}

.lp-pa-notch::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.lp-pa-screen {
  background: linear-gradient(180deg, #fbf4e8 0%, #ffe9c8 50%, #ffc8ad 100%);
  border-radius: 28px;
  padding: 18px 18px 22px;
  color: #1a1a1a;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.lp-pa-screen-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--lp-sharp);
  font-size: 11px;
  font-weight: 700;
  color: #1a1a1a;
  padding: 0 4px;
}

.lp-pa-screen-status .sig {
  font-family: var(--lp-sharp);
  font-size: 9.5px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.lp-pa-screen-status .sig small {
  font-size: 9px;
  font-weight: 600;
  margin-left: 3px;
}

.lp-pa-shadow {
  position: absolute;
  left: 50%;
  bottom: -30px;
  width: 80%;
  height: 24px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.5), transparent 70%);
  filter: blur(8px);
  transform: translateX(-50%);
  z-index: -1;
}

.lp-pa-quote {
  font-family: var(--lp-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: -0.005em;
}

/* Chat-UI phone screen */
.lp-pa-chat {
  background: #ffffff !important;
  padding: 0 !important;
  min-height: 600px !important;
  border-radius: 30px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  overflow: hidden !important;
}

.lp-pa-chathead {
  background: #0a0a0a;
  padding: 34px 14px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-pa-chatbrand {
  font-family: var(--lp-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #FFD153, #ff9f47);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-pa-chatbrand sup {
  font-size: 7px;
  font-weight: 600;
  margin-left: 2px;
  color: rgba(255, 255, 255, 0.5);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.5);
}

.lp-pa-chathead-r {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.lp-pa-chatbrand-img {
  height: 14px;
  width: auto;
  display: block;
}

.lp-pa-chathead-r svg {
  width: 14px;
  height: 14px;
}

.lp-pa-chatlog {
  background: var(--lp-yellow);
  color: #0a0a0a;
  padding: 5px 12px;
  border-radius: 8px;
  font-family: var(--lp-sharp);
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 0.02em;
  box-shadow: 0 3px 0 #d4a833;
}

/* Thread */
.lp-pa-thread {
  flex: 1;
  padding: 12px 12px 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
}

.lp-pa-msg {
  display: flex;
  gap: 6px;
}

.lp-pa-msg-awe {
  align-items: flex-start;
}

.lp-pa-msg-user {
  justify-content: flex-end;
  align-items: flex-end;
}

.lp-pa-avatar {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lp-display);
  font-weight: 900;
  font-size: 8px;
  text-transform: lowercase;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

.lp-pa-avatar-awe {
  background: linear-gradient(135deg, #FFD153, #f6b800);
  color: #0a0a0a;
}

.lp-pa-avatar-you {
  background: linear-gradient(135deg, #1e3df1, #6f72ff);
  color: #fff;
  border: none;
  flex-direction: column;
  gap: 0;
  padding-top: 5px;
  box-shadow: 0 2px 6px rgba(56, 59, 241, 0.3);
}

.lp-pa-avatar-you svg {
  width: 13px;
  height: 13px;
  color: #fff;
}

.lp-pa-avatar-you small {
  font-size: 6.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  margin-top: -1px;
}

.lp-pa-bubble {
  background: #f4f1ec;
  color: #1a1a1a;
  padding: 8px 12px;
  border-radius: 14px;
  font-family: var(--lp-body);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.4;
  max-width: 200px;
  animation: lp-pa-bubble-in 0.35s ease-out;
}

.lp-pa-bubble-thin {
  padding: 8px 11px;
  font-size: 11px;
  line-height: 1.4;
}

.lp-pa-bubble-user {
  background: #0a0a0a;
  color: #fff;
  border: 2px solid #0a0a0a;
  font-weight: 700;
  font-family: var(--lp-sharp);
  font-size: 12px;
  padding: 7px 14px;
}

@keyframes lp-pa-bubble-in {
  from {
    opacity: 0;
    transform: translateY(4px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.lp-pa-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  max-width: 230px;
}

/* Mood pill row — clickable */
.lp-pa-moods-row {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-left: 34px;
  margin-top: -2px;
}

.lp-pa-mood {
  background: #fff;
  border: 1.5px solid rgba(0, 0, 0, 0.16);
  color: #1a1a1a;
  cursor: pointer;
  font-family: var(--lp-sharp);
  font-size: 10.5px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 99px;
  transition: all 0.2s ease;
  letter-spacing: -0.005em;
}

.lp-pa-mood:hover {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
  transform: translateY(-1px);
}

.lp-pa-mood.on {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
  animation: lp-pa-mood-pop 0.35s cubic-bezier(0.4, -0.2, 0.3, 1.5);
}

@keyframes lp-pa-mood-pop {
  0% {
    transform: scale(0.92);
  }
  60% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}
/* Experience card inside chat (matches user's card style) */
.lp-pa-expcard {
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid #0a0a0a;
  overflow: hidden;
  width: 100%;
  max-width: 230px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.lp-pa-exp-img {
  height: 88px;
  background: #3a2418 url("https://images.unsplash.com/photo-1565193566173-7a0ee3dbe261?w=300&h=200&q=70&auto=format&fit=crop&crop=center") center/cover no-repeat;
  position: relative;
  transition: transform 0.35s ease;
}

.lp-pa-expcard:hover .lp-pa-exp-img {
  transform: scale(1.04);
}

.lp-pa-exp-img::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  font-family: var(--lp-sharp);
  font-size: 8.5px;
  font-weight: 800;
  color: #0a0a0a;
  letter-spacing: 0.04em;
  background: var(--lp-yellow);
  padding: 2px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  content: "⚡ Trending";
}

.lp-pa-exp-avail {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #7CEFAA;
  backdrop-filter: blur(6px);
  padding: 3px 10px;
  font-family: var(--lp-sharp);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lp-pa-exp-cta {
  padding: 10px 12px 0;
  background: #0a0a0a;
}

.lp-pa-exp-title {
  font-family: var(--lp-display);
  font-weight: 800;
  font-size: 12.5px;
  color: #fff;
  line-height: 1.18;
  letter-spacing: -0.015em;
}

.lp-pa-exp-meta {
  font-family: var(--lp-sharp);
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
  font-weight: 600;
}

.lp-pa-exp-foot {
  display: grid;
  grid-template-columns: 5fr 7fr;
  background: var(--lp-blue);
  margin: 8px -12px 0;
}

.lp-pa-exp-price {
  padding: 8px 8px 8px 12px;
  border-right: 1px dashed rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-pa-exp-price .now {
  font-family: var(--lp-display);
  font-weight: 900;
  font-size: 15px;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.lp-pa-exp-price .old {
  font-family: var(--lp-sharp);
  font-size: 9px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
  text-decoration-color: var(--lp-yellow);
  margin-top: 3px;
}

.lp-pa-exp-book {
  background: linear-gradient(135deg, #FFD153, #ffb000);
  color: #0a0a0a;
  border: none;
  cursor: pointer;
  font-family: var(--lp-display);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.lp-pa-exp-book:hover {
  filter: brightness(1.08);
}

/* Composer (matches input bar in screenshot) */
.lp-pa-composer {
  margin: auto 10px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f4f1ec;
  border: 1.5px solid #0a0a0a;
  border-radius: 99px;
  padding: 5px 5px 5px 14px;
}

.lp-pa-input {
  flex: 1;
  font-family: var(--lp-body);
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.55);
}

.lp-pa-send {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--lp-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(56, 59, 241, 0.4);
  animation: lp-pa-send-pulse 2.4s ease-in-out infinite;
}

.lp-pa-send svg {
  width: 14px;
  height: 14px;
}

@keyframes lp-pa-send-pulse {
  0%, 100% {
    box-shadow: 0 4px 10px rgba(56, 59, 241, 0.4);
  }
  50% {
    box-shadow: 0 4px 18px rgba(56, 59, 241, 0.7);
  }
}
/* Remove the old phone notch since chat header replaces it */
.lp-pa-notch {
  display: none;
}

/* Responsive */
@media (max-width: 980px) {
  .lp-app-pa {
    padding: 56px 32px;
  }
  .lp-pa-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .lp-pa-eyebrow,
  .lp-pa-cta {
    justify-content: center;
  }
  .lp-pa-cta {
    display: inline-flex;
  }
  .lp-pa-meta {
    justify-content: center;
  }
  .lp-pa-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .lp-app-pa h2 {
    font-size: 36px;
  }
  .lp-pa-stage {
    align-self: center;
  }
}
@media (max-width: 560px) {
  .lp-app-pa {
    padding: 44px 22px;
    border-radius: 22px;
  }
  .lp-app-pa h2 {
    font-size: 30px;
  }
  .lp-pa-device {
    width: 240px;
    transform: none;
  }
}
/* Light/dark — section stays dark in both modes (intentional cinematic) */
[data-bs-theme=dark] .lp-app-pa {
  background: #070708;
}

/* ════════════ NEWSLETTER — modernised ════════════ */
.lp-news {
  background: linear-gradient(135deg, var(--lp-yellow-deep) 0%, #ffb700 100%);
  border-radius: 24px;
  padding: 32px 40px;
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.lp-news::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
  pointer-events: none;
}

.lp-news::after {
  content: "";
  position: absolute;
  bottom: -60%;
  left: 30%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(56, 59, 241, 0.18), transparent 70%);
  pointer-events: none;
}

.lp-news > * {
  position: relative;
  z-index: 1;
}

.lp-news-eyebrow {
  font-family: var(--lp-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lp-ink);
  margin-bottom: 8px;
  display: inline-block;
  opacity: 0.6;
}

.lp-news h2 {
  font-family: var(--lp-display);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 6px;
  color: var(--lp-ink);
}

.lp-news h2 em {
  font-family: var(--lp-serif);
  font-style: italic;
  font-weight: 600;
}

.lp-news p {
  color: var(--lp-ink);
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.75;
}

.lp-news form {
  display: flex;
  gap: 10px;
}

.lp-news input {
  flex: 1;
  background: rgba(255, 255, 255, 0.75);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 13px 18px;
  font-family: var(--lp-body);
  font-size: 14px;
  color: var(--lp-ink);
  transition: all 0.2s;
}

.lp-news input:focus {
  outline: none;
  border-color: var(--lp-ink);
  background: #fff;
}

.lp-news button {
  background: var(--lp-ink);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0 26px;
  font-family: var(--lp-sharp);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lp-news input {
  -webkit-text-fill-color: #000 !important;
}

.lp-news button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.lp-news button .arr {
  display: inline-block;
  transition: transform 0.2s;
}

.lp-news button:hover .arr {
  transform: translateX(3px);
}

/* ════════════ PARTNER SIGNUP — modernised ════════════ */
.lp-partner-section {
  background: linear-gradient(135deg, #1a1d8a 0%, #2c2db8 100%);
  /* deeper indigo — not too bright */
  border-radius: 24px;
  padding: 40px 44px;
  margin-bottom: 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: center;
}

.lp-partner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 0% 0%, rgba(255, 209, 83, 0.22), transparent 45%), radial-gradient(circle at 100% 100%, rgba(255, 168, 176, 0.22), transparent 45%);
}

.lp-partner-section > * {
  position: relative;
  z-index: 1;
}

.lp-partner-eyebrow {
  font-family: var(--lp-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lp-yellow);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lp-partner-eyebrow::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: currentColor;
}

.lp-partner-pitch h3 {
  font-family: var(--lp-display);
  font-size: 38px;
  font-weight: 900;
  margin: 0 0 10px;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
}

.lp-partner-pitch h3 em {
  font-family: var(--lp-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--lp-yellow);
}

.lp-partner-pitch p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.lp-partner-perks {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  font-family: var(--lp-sharp);
}

.lp-partner-perks span {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 5px 12px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-partner-perks span::before {
  content: "✓";
  color: var(--lp-yellow);
  font-weight: 800;
}

.lp-partner-section form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lp-partner-section .lp-full {
  grid-column: 1/-1;
}

.lp-partner-section input,
.lp-partner-section select,
.lp-partner-section textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fff;
  font-family: var(--lp-body);
  font-size: 13.5px;
  transition: all 0.15s;
}

.lp-partner-section input::-moz-placeholder, .lp-partner-section textarea::-moz-placeholder {
  color: #ffffff;
  opacity: 0.85;
}

.lp-partner-section input::placeholder,
.lp-partner-section textarea::placeholder {
  color: #ffffff;
  opacity: 0.85;
}

.lp-partner-section input:focus,
.lp-partner-section select:focus,
.lp-partner-section textarea:focus {
  outline: none;
  border-color: var(--lp-yellow);
  background: rgba(255, 255, 255, 0.12);
}

.lp-partner-section textarea {
  min-height: 80px;
  resize: vertical;
}

.lp-partner-section select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='white' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.lp-partner-section select option {
  color: var(--lp-ink);
  background: #fff;
}

.lp-partner-section button {
  grid-column: 1/-1;
  background: var(--lp-yellow);
  color: var(--lp-ink);
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--lp-display);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(255, 209, 83, 0.3);
}

.lp-partner-section button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(255, 209, 83, 0.45);
  background: #fff;
}

.lp-lang-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 18px;
  padding: 4px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  width: -moz-fit-content;
  width: fit-content;
}

.lp-lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 11px;
  border-radius: 99px;
  font-family: var(--lp-sharp);
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  transition: all 0.15s;
  line-height: 1;
  min-width: 34px;
}

.lp-lang-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.lp-lang-btn.active {
  background: var(--lp-yellow);
  color: var(--lp-ink);
}

/* ════════════ FOOTER (clean, no animation) ════════════ */
.lp-footer {
  position: relative;
}

/* ════════════ FOOTER — modernised ════════════ */
.lp-footer {
  margin-top: 40px;
  border-top: 1px solid var(--lp-line);
  padding-top: 24px;
}

.main-breadcrumb {
  font-family: var(--lp-mono);
  font-size: 11px;
  color: var(--lp-gray);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.main-breadcrumb a {
  color: var(--lp-gray);
  text-decoration: none;
}

.main-breadcrumb a:hover {
  color: var(--lp-blue);
}

.main-breadcrumb .crumb-sep {
  opacity: 0.4;
}

.main-breadcrumb .current {
  color: var(--lp-ink);
  font-weight: 700;
}

.lp-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
  flex-wrap: wrap;
}

.lp-footer-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.lp-footer-brand img {
  height: 28px;
  width: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.lp-footer-nav {
  display: flex;
  gap: 18px;
  font-family: var(--lp-sharp);
  font-size: 13px;
  font-weight: 600;
}

.lp-footer-nav a {
  color: var(--lp-ink);
}

.lp-footer-nav a:hover {
  color: var(--lp-blue);
}

.lp-footer-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lp-footer-ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--lp-bg);
  color: var(--lp-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.lp-footer-ico:hover {
  background: var(--lp-ink);
  color: #fff;
}

.lp-footer-ico.lp-app {
  width: auto;
  border-radius: 99px;
  padding: 6px 12px;
  gap: 6px;
  font-family: var(--lp-sharp);
  font-size: 11px;
  font-weight: 700;
}

.lp-footer-copy {
  font-family: var(--lp-mono);
  font-size: 11px;
  color: var(--lp-gray);
  padding: 14px 0;
  text-align: center;
}

@media (max-width: 880px) and (min-width: 481px) {
  .lp-v2-page {
    grid-template-columns: 220px 1fr;
    gap: 16px;
    padding: 16px 16px 0;
  }
  .lp-sidebar {
    position: sticky;
    top: 64px;
    max-height: calc(100vh - 80px);
  }
  .lp-exp-slot {
    flex: 0 0 calc((100% - 16px) / 2);
  }
  .lp-hero-v2 {
    padding: 36px 24px;
    min-height: 320px;
  }
  .lp-hero-content h1 {
    font-size: 40px;
  }
  .lp-topnav {
    padding: 10px 16px;
    flex-wrap: wrap;
  }
  .lp-topnav-search {
    display: none;
  }
  .lp-store-pill {
    display: none;
  }
}
@media (max-width: 480px) {
  .lp-v2-page {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 12px 0;
  }
  .lp-sidebar {
    display: none;
  }
  .lp-mobile-filter-row {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 10px 12px 0;
  }
  .lp-mobile-left-rail {
    min-width: 0;
  }
  .lp-mobile-filter-row .left-content {
    position: static;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    overflow: visible;
    border-right: 0;
    background: transparent;
    z-index: auto;
  }
  .lp-mobile-left-rail .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(100vh - 150px);
    padding-right: 2px;
  }
  .lp-mobile-left-rail .filter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0;
    width: 100%;
    text-align: center;
  }
  .lp-mobile-left-rail .filter-item .filter-img img {
    width: 42px !important;
    height: 42px !important;
  }
  .lp-mobile-left-rail .filter-content {
    width: 100%;
  }
  .lp-mobile-left-rail .filter-content span {
    display: block;
    font-size: 10px;
    line-height: 1.2;
    white-space: normal;
    word-break: break-word;
  }
  .lp-mobile-filter-wrap {
    min-width: 0;
  }
  .lp-mobile-filter-wrap .mobile-form {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    background: transparent;
    position: sticky;
  }
  .lp-mobile-filter-wrap .row {
    margin-left: 0;
    margin-right: 0;
    --bs-gutter-x: 8px;
    --bs-gutter-y: 8px;
  }
  .lp-mobile-filter-wrap .col-12,
  .lp-mobile-filter-wrap .col-6 {
    padding-left: 0;
    padding-right: 0;
    min-width: 0;
  }
  .lp-mobile-filter-wrap .custom-select-wrapper {
    min-width: 0;
  }
  .lp-mobile-filter-wrap .custom-select-trigger {
    min-height: 44px;
    padding-inline: 10px;
  }
  .lp-mobile-filter-wrap .custom-select-trigger .selected-option {
    min-width: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .lp-mobile-filter-wrap .custom-options {
    max-height: 50vh;
  }
}
/* Placeholder photo backgrounds */
.ph1 {
  background: linear-gradient(160deg, #c96442, #6b2d1f);
}

.ph2 {
  background: linear-gradient(180deg, #1a4d2a, #0a2614);
}

.ph3 {
  background: linear-gradient(135deg, #1e3df1, #9333ea);
}

.ph4 {
  background: radial-gradient(circle at 40% 40%, #f4cdb3, #c98963 60%, #6b2d1f);
}

.ph5 {
  background: linear-gradient(135deg, #0a0930, #1a1450);
}

/* ════════════════════════════════════════════════════════════
     SIDEBAR · INLINE MINIMAL EDITORIAL — every block different layout
     · No grey text — all ink black
     · Subtle heading + selection animations
     · Tuned for young audience: editorial, modern, kinetic
     ════════════════════════════════════════════════════════════ */
.lp-sidebar-edit {
  padding: 0 4px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp-sidebar-edit .lp-edit-block {
  padding: 20px 0;
  border-top: 1px solid var(--lp-line);
  position: relative;
}

.lp-sidebar-edit .lp-edit-block:first-child {
  border-top: none;
  padding-top: 6px;
}

/* ── Heading shared (subtle dash-grow on hover) ── */
.lp-edit-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.lp-edit-head h4 {
  font-family: var(--lp-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-blue-deep);
  /* ★ deep blue heading */
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.25s ease, letter-spacing 0.25s ease;
  position: relative;
}

/* Animated stroke dash before each heading — gradient that flows */
.lp-edit-head h4::before {
  content: "";
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--lp-yellow), var(--lp-blue), var(--lp-hot), var(--lp-blue));
  background-size: 300% 100%;
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.5, -0.2, 0.3, 1.5);
  animation: lp-edit-head-flow 6s ease-in-out infinite;
}

@keyframes lp-edit-head-flow {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
/* Soft underline that breathes under the heading text */
/* ── Location: big underlined display heading ── */
.lp-edit-loc-btn {
  background: none;
  border: none;
  border-bottom: 2px solid var(--lp-ink);
  padding: 4px 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  font-family: var(--lp-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--lp-ink);
  letter-spacing: -0.025em;
  line-height: 1;
  transition: border-color 0.25s;
}

.lp-edit-loc-btn:hover {
  border-bottom-color: var(--lp-blue);
}

.lp-edit-loc-btn:hover svg {
  transform: translateY(2px);
}

.lp-edit-loc-btn svg {
  transition: transform 0.2s;
  color: var(--lp-ink);
}

.lp-edit-loc-sub {
  display: block;
  margin-top: 8px;
  font-family: var(--lp-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-ink);
}

/* ── Category list: vertical, with pulsing yellow active dot ── */
.lp-edit-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp-edit-cat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  cursor: pointer;
  font-family: var(--lp-sharp);
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-ink);
  position: relative;
  transition: transform 0.2s ease, font-weight 0.15s;
}

.lp-edit-cat-item:hover {
  transform: translateX(4px);
}

.lp-edit-cat-item .cic {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: #e8e6e0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12), inset 0 0 0 1.5px rgba(255, 255, 255, 0.6);
  transition: transform 0.3s cubic-bezier(0.5, -0.2, 0.3, 1.5), box-shadow 0.25s;
}

.lp-edit-cat-item .cic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.lp-edit-cat-item:hover .cic {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.lp-edit-cat-item:hover .cic img {
  transform: scale(1.12);
}

.lp-edit-cat-item .ctxt {
  transition: font-weight 0.15s;
}

.lp-edit-cat-item::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lp-yellow);
  box-shadow: 0 0 0 4px rgba(255, 209, 83, 0.25);
  transition: transform 0.35s cubic-bezier(0.5, -0.2, 0.3, 1.5);
}

.lp-edit-cat-item.active {
  font-weight: 800;
  font-size: 15px;
  color: var(--lp-ink);
}

.lp-edit-cat-item.active::before {
  transform: translateY(-50%) scale(1);
  animation: lp-edit-pulse 2.4s ease-in-out infinite;
}

.lp-edit-cat-item.active .cic {
  box-shadow: 0 0 0 2px var(--lp-ink), 0 4px 12px rgba(255, 209, 83, 0.4), inset 0 0 0 1.5px rgba(255, 255, 255, 0.6);
}

@keyframes lp-edit-pulse {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(255, 209, 83, 0.25);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(255, 209, 83, 0.08);
  }
}
/* category color dots (reused) */
.cd-all {
  background: linear-gradient(135deg, #FFE17E, #FFBE2A);
}

.cd-rom {
  background: linear-gradient(135deg, #FFA8B0, #FF6B7A);
}

.cd-adv {
  background: linear-gradient(135deg, #7CEFAA, #2BC26A);
}

.cd-fd {
  background: linear-gradient(135deg, #FFE17E, #F6B800);
}

.cd-wel {
  background: linear-gradient(135deg, #A0E0FF, #5BB0FF);
}

.cd-spo {
  background: linear-gradient(135deg, #C0A8FF, #7B6AE0);
}

.cd-cre {
  background: linear-gradient(135deg, #FFD9B0, #c98963);
}

.cd-day {
  background: linear-gradient(135deg, #FFE17E, #FFBE2A);
}

/* Suitable: 2-col icon grid (different from Mood chips) */
.lp-edit-suit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.lp-edit-suit-grid button {
  background: none;
  border: 1.5px solid var(--lp-ink);
  border-radius: 10px;
  cursor: pointer;
  padding: 11px 10px 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--lp-sharp);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--lp-ink);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.lp-edit-suit-grid button svg {
  width: 22px;
  height: 22px;
  color: var(--lp-ink);
  transition: transform 0.3s cubic-bezier(0.5, -0.2, 0.3, 1.5);
}

.lp-edit-suit-grid button:hover {
  background: rgba(0, 0, 0, 0.04);
  transform: translateY(-1px);
}

.lp-edit-suit-grid button:hover svg {
  transform: scale(1.12) rotate(-6deg);
}

.lp-edit-suit-grid button.on {
  background: var(--lp-blue);
  color: #fff;
  border-color: var(--lp-blue);
  box-shadow: 0 4px 12px rgba(56, 59, 241, 0.32);
  animation: lp-edit-suit-pop 0.35s cubic-bezier(0.4, -0.2, 0.3, 1.5);
}

.lp-edit-suit-grid button.on svg {
  color: var(--lp-yellow);
}

.lp-edit-suit-grid button.on::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 6px;
  height: 6px;
  background: var(--lp-yellow);
  border-radius: 50%;
  animation: lp-edit-check 0.4s ease-out;
}

@keyframes lp-edit-suit-pop {
  0% {
    transform: scale(0.92);
  }
  60% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lp-edit-check {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
/* ── Mood: tag chips (different layout) ── */
.lp-edit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.lp-edit-chips button {
  background: none;
  cursor: pointer;
  border: 1.5px solid var(--lp-ink);
  border-radius: 99px;
  padding: 6px 12px;
  font-family: var(--lp-sharp);
  font-size: 12px;
  font-weight: 600;
  color: var(--lp-ink);
  transition: all 0.25s ease;
  letter-spacing: -0.005em;
}

.lp-edit-chips button:hover {
  background: var(--lp-ink);
  color: #fff;
}

.lp-edit-chips button:hover {
  transform: translateY(-1px) rotate(-1.5deg);
}

.lp-edit-chips button.on {
  background: var(--lp-yellow);
  border-color: var(--lp-ink);
  color: var(--lp-ink);
  transform: rotate(-2deg);
  box-shadow: 2px 2px 0 var(--lp-ink);
  animation: lp-edit-chip-pop 0.35s cubic-bezier(0.4, -0.2, 0.3, 1.5);
}

@keyframes lp-edit-chip-pop {
  0% {
    transform: rotate(-2deg) scale(0.92);
  }
  60% {
    transform: rotate(-2deg) scale(1.06);
  }
  100% {
    transform: rotate(-2deg) scale(1);
  }
}
/* ── Quick links: numbered editorial list ── */
.lp-edit-ql-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: ql-counter;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp-edit-ql-list li {
  counter-increment: ql-counter;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.18);
  transition: border-color 0.25s;
}

.lp-edit-ql-list li:last-child {
  border-bottom: none;
}

.lp-edit-ql-list li::before {
  content: counter(ql-counter, decimal-leading-zero);
  font-family: var(--lp-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--lp-ink);
  margin-right: 10px;
  opacity: 0.55;
  transition: opacity 0.25s, transform 0.25s;
  display: inline-block;
}

.lp-edit-ql-list li:hover::before {
  opacity: 1;
  transform: translateX(2px);
}

.lp-edit-ql-list li:hover {
  border-bottom-color: var(--lp-ink);
}

.lp-edit-ql-list li a {
  color: var(--lp-ink);
  font-size: 13.5px;
  font-family: var(--lp-sharp);
  font-weight: 600;
  text-decoration: none;
  padding: 9px 0;
  display: inline-block;
  letter-spacing: -0.005em;
  position: relative;
}

.lp-edit-ql-list li a::after {
  content: "→";
  margin-left: 6px;
  display: inline-block;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s, transform 0.25s;
}

.lp-edit-ql-list li:hover a::after {
  opacity: 1;
  transform: translateX(0);
}

/* ── Socials: borderless letterforms with hover-line ── */
.lp-edit-soc-row {
  display: flex;
  gap: 0;
}

.lp-edit-soc-row a {
  flex: 1;
  padding: 14px 0 6px;
  border-top: 2px solid var(--lp-ink);
  text-decoration: none;
  font-family: var(--lp-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: var(--lp-ink);
  text-align: center;
  position: relative;
  transition: color 0.25s, transform 0.25s;
}

.lp-edit-soc-row a span {
  display: inline-block;
  transition: transform 0.25s;
}

.lp-edit-soc-row a:hover span {
  transform: translateY(-3px);
}

.lp-edit-soc-row a::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--lp-yellow);
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.5, -0.2, 0.3, 1.5);
}

.lp-edit-soc-row a:hover::before {
  width: 100%;
}

/* Reduced motion — strip the kinetic stuff */
@media (prefers-reduced-motion: reduce) {
  .lp-sidebar-edit *,
  .lp-sidebar-edit *::before,
  .lp-sidebar-edit *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
/* Theme toggle pill */
.lp-edit-theme-pill {
  display: flex;
  background: rgba(0, 0, 0, 0.05);
  border: 1.5px solid var(--lp-ink);
  border-radius: 99px;
  padding: 3px;
  position: relative;
}

.lp-edit-theme-pill button {
  flex: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 6px;
  border-radius: 99px;
  font-family: var(--lp-sharp);
  font-size: 12px;
  font-weight: 700;
  color: var(--lp-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all 0.25s ease;
  position: relative;
  letter-spacing: -0.005em;
}

.lp-edit-theme-pill button svg {
  width: 14px;
  height: 14px;
  transition: transform 0.35s cubic-bezier(0.5, -0.2, 0.3, 1.5);
}

.lp-edit-theme-pill button:hover svg {
  transform: rotate(45deg);
}

.lp-edit-theme-pill button.on {
  background: var(--lp-ink);
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.lp-edit-theme-pill button.on svg {
  color: var(--lp-yellow);
}

/* ── Sidebar scrollbar: thinner, gradient, animated ── */
.lp-sidebar {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

.lp-sidebar::-webkit-scrollbar {
  width: 4px;
}

.lp-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.lp-sidebar::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #FFD153, #ff3b6e 50%, #9333ea);
  background-size: 100% 300%;
  background-position: 0 0;
  border-radius: 99px;
  animation: lp-scroll-flow 6s ease-in-out infinite;
}

.lp-sidebar:hover::-webkit-scrollbar-thumb {
  box-shadow: 0 0 8px rgba(255, 209, 83, 0.5);
}

@keyframes lp-scroll-flow {
  0%, 100% {
    background-position: 0 0;
  }
  50% {
    background-position: 0 100%;
  }
}
@supports (scrollbar-color: #FFD153 transparent) {
  .lp-sidebar {
    scrollbar-color: #FFD153 transparent;
    padding-left: 30px;
    padding-right: 40px;
  }
}
/* Store buttons (sidebar) */
.lp-edit-store-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-edit-store {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: var(--lp-ink);
  color: #fff !important;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.lp-edit-store::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transition: left 0.5s ease;
}

.lp-edit-store:hover {
  transform: translateY(-1px);
  background: var(--lp-blue);
  box-shadow: 0 8px 18px rgba(56, 59, 241, 0.32);
}

.lp-edit-store:hover::before {
  left: 200%;
}

.lp-edit-store svg {
  flex: 0 0 auto;
}

.lp-edit-store span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-family: var(--lp-display);
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: -0.01em;
}

.lp-edit-store span small {
  font-family: var(--lp-sharp);
  font-size: 9.5px;
  font-weight: 500;
  opacity: 0.6;
  letter-spacing: 0.02em;
  margin-bottom: 1px;
}

/* Finale — climax thank-you + copyright */
.lp-edit-finale {
  padding: 20px 0 4px;
  border-top: none;
  margin-top: 0;
  text-align: center;
}

.lp-edit-thanks {
  font-family: var(--lp-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--lp-ink);
  margin: 0 0 10px;
  animation: lp-edit-fade-up 5s ease-out;
}

.lp-edit-thanks a {
  color: var(--lp-blue);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1.5px solid var(--lp-blue);
  transition: all 0.2s;
}

.lp-edit-thanks a:hover {
  color: var(--lp-hot);
  border-bottom-color: var(--lp-hot);
}

.lp-edit-copy {
  font-family: var(--lp-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--lp-ink);
  margin: 0;
  opacity: 0.7;
}

.lp-edit-copy .heart {
  color: var(--lp-hot);
  animation: lp-edit-heartbeat 1.8s ease-in-out infinite;
  display: inline-block;
}

@keyframes lp-edit-heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.25);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.18);
  }
  60% {
    transform: scale(1);
  }
}
@keyframes lp-edit-fade-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ════════════ DARK MODE — editorial sidebar overrides ════════════ */
[data-bs-theme=dark] .lp-sidebar-edit {
  color: #f2f2f2;
}

[data-bs-theme=dark] .lp-edit-block {
  border-top-color: rgba(255, 255, 255, 0.08);
}

/* Headings — light blue / lavender in dark */
[data-bs-theme=dark] .lp-edit-head h4 {
  color: #aab0ff;
}

[data-bs-theme=dark] .lp-edit-head h4::after {
  background: linear-gradient(90deg, #aab0ff, transparent);
}

[data-bs-theme=dark] .lp-edit-head .chev {
  color: #aab0ff;
}

/* Location button */
[data-bs-theme=dark] .lp-edit-loc-btn {
  color: #fff;
  border-bottom-color: #fff;
}

[data-bs-theme=dark] .lp-edit-loc-btn svg {
  color: #fff;
}

[data-bs-theme=dark] .lp-edit-loc-btn:hover {
  border-bottom-color: var(--lp-yellow);
}

/* Cat list */
[data-bs-theme=dark] .lp-edit-cat-item {
  color: #f2f2f2;
}

[data-bs-theme=dark] .lp-edit-cat-item .cic {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3), inset 0 0 0 1.5px rgba(255, 255, 255, 0.12);
}

[data-bs-theme=dark] .lp-edit-cat-item.active .cic {
  box-shadow: 0 0 0 2px #fff, 0 4px 12px rgba(255, 209, 83, 0.5), inset 0 0 0 1.5px rgba(255, 255, 255, 0.6);
}

/* Suit grid */
[data-bs-theme=dark] .lp-edit-suit-grid button {
  border-color: rgba(255, 255, 255, 0.2);
  color: #f2f2f2;
}

[data-bs-theme=dark] .lp-edit-suit-grid button:hover {
  background: rgba(255, 255, 255, 0.06);
}

[data-bs-theme=dark] .lp-edit-suit-grid button.on {
  background: var(--lp-blue);
  border-color: var(--lp-blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(56, 59, 241, 0.5);
}

[data-bs-theme=dark] .lp-edit-suit-grid button svg {
  color: #f2f2f2;
}

[data-bs-theme=dark] .lp-edit-suit-grid button.on svg {
  color: var(--lp-yellow);
}

/* Mood chips */
[data-bs-theme=dark] .lp-edit-chips button {
  border-color: rgba(255, 255, 255, 0.22);
  color: #f2f2f2;
}

[data-bs-theme=dark] .lp-edit-chips button:hover {
  background: #fff;
  color: #0a0a0a !important;
  border-color: #fff;
}

[data-bs-theme=dark] .lp-edit-chips button.on {
  background: var(--lp-yellow);
  border-color: #fff;
  color: #0a0a0a !important;
  box-shadow: 2px 2px 0 #fff;
}

[data-bs-theme=dark] .lp-edit-suit-grid button.on {
  color: #fff !important;
}

[data-bs-theme=dark] .lp-edit-suit-grid button.on svg {
  color: var(--lp-yellow) !important;
}

/* Quick links */
[data-bs-theme=dark] .lp-edit-ql-list li {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

[data-bs-theme=dark] .lp-edit-ql-list li::before {
  color: #f2f2f2;
}

[data-bs-theme=dark] .lp-edit-ql-list li a {
  color: #f2f2f2;
}

[data-bs-theme=dark] .lp-edit-ql-list li:hover {
  border-bottom-color: var(--lp-yellow);
}

/* Socials */
[data-bs-theme=dark] .lp-edit-soc-row a {
  color: #f2f2f2;
  border-top-color: #f2f2f2;
}

/* Store buttons */
[data-bs-theme=dark] .lp-edit-store {
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

[data-bs-theme=dark] .lp-edit-store:hover {
  background: var(--lp-yellow);
  color: #0a0a0a !important;
  border-color: var(--lp-yellow);
}

/* Theme pill */
[data-bs-theme=dark] .lp-edit-theme-pill {
  background: rgba(255, 255, 255, 0.05);
  border-color: #fff;
}

[data-bs-theme=dark] .lp-edit-theme-pill button {
  color: #f2f2f2;
}

[data-bs-theme=dark] .lp-edit-theme-pill button.on {
  background: var(--lp-yellow);
  color: #0a0a0a !important;
}

[data-bs-theme=dark] .lp-edit-theme-pill button.on svg {
  color: #0a0a0a !important;
}

/* Finale */
[data-bs-theme=dark] .lp-edit-finale {
  border-top-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme=dark] .lp-edit-thanks {
  color: #f2f2f2;
}

[data-bs-theme=dark] .lp-edit-thanks a {
  color: #aab0ff;
  border-bottom-color: #aab0ff;
}

[data-bs-theme=dark] .lp-edit-copy {
  color: #f2f2f2;
}

/* ════════════════ FULL-PAGE DARK MODE ════════════════ */
[data-bs-theme=dark] body,
[data-bs-theme=dark] html {
  background: #0c0c10 !important;
  color: #f2f2f2 !important;
}

[data-bs-theme=dark] {
  --lp-bg: #0c0c10;
  --lp-card: #16161a;
  --lp-ink: #f2f2f2;
  --lp-gray: #9aa0a6;
  --lp-line: rgba(255, 255, 255, .1);
  --lp-blue-soft: rgba(56, 59, 241, .16);
}

/* Top nav */
[data-bs-theme=dark] .lp-topnav {
  background: rgba(12, 12, 16, 0.92) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme=dark] .lp-brand {
  color: var(--lp-yellow);
}

[data-bs-theme=dark] .lp-topnav-search {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme=dark] .lp-topnav-search input {
  color: #fff;
}

[data-bs-theme=dark] .lp-topnav-search input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

[data-bs-theme=dark] .lp-topnav-search input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

[data-bs-theme=dark] .lp-store-pill {
  background: #fff;
  color: #0a0a0a;
}

/* Hero stays dark in both — no change */
/* Tabs */
[data-bs-theme=dark] .lp-tabnav-v2 {
  background: #16161a;
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme=dark] .lp-tab-btn {
  color: rgba(255, 255, 255, 0.65);
}

[data-bs-theme=dark] .lp-tab-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

[data-bs-theme=dark] .lp-tab-btn.active {
  color: var(--lp-yellow);
  background: rgba(255, 209, 83, 0.12);
}

[data-bs-theme=dark] .lp-tab-btn::before {
  background: var(--lp-yellow);
}

/* About */
[data-bs-theme=dark] .lp-about-v2 {
  background: #0c0c10;
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

[data-bs-theme=dark] .lp-about-eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

[data-bs-theme=dark] .lp-about-head {
  color: #fff;
}

[data-bs-theme=dark] .lp-about-head em {
  color: #aab0ff;
}

[data-bs-theme=dark] .lp-about-head .lp-pill {
  background: var(--lp-yellow);
  color: var(--lp-blue-deep);
}

[data-bs-theme=dark] .lp-about-body {
  color: rgba(255, 255, 255, 0.7);
}

[data-bs-theme=dark] .lp-about-body .drop {
  color: #aab0ff;
}

/* Section heads */
[data-bs-theme=dark] .lp-section-head h2 {
  color: #fff;
}

[data-bs-theme=dark] .lp-section-head h2 em {
  color: #aab0ff;
}

[data-bs-theme=dark] .lp-section-head .lp-sec-count {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

[data-bs-theme=dark] .lp-section-head .lp-arrows button {
  background: #16161a;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

[data-bs-theme=dark] .lp-section-head .lp-arrows button:hover {
  background: #fff;
  color: #0c0c10;
  border-color: #fff;
}

/* Cards / slots */
[data-bs-theme=dark] .lp-exp-slot {
  background: #16161a;
  border-color: rgba(255, 255, 255, 0.08);
}

/* Pricing */
[data-bs-theme=dark] .lp-pricing-card {
  background: #16161a;
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme=dark] .lp-pricing-card h3 {
  color: #fff;
}

[data-bs-theme=dark] .lp-pricing-card h3 em {
  color: #aab0ff;
}

[data-bs-theme=dark] .lp-tier {
  background: rgba(255, 255, 255, 0.04);
}

[data-bs-theme=dark] .lp-tier:hover {
  background: rgba(56, 59, 241, 0.12);
  border-color: rgba(170, 176, 255, 0.4);
}

[data-bs-theme=dark] .lp-tier h4 {
  color: #fff;
}

[data-bs-theme=dark] .lp-tier p {
  color: rgba(255, 255, 255, 0.6);
}

/* FAQ */
[data-bs-theme=dark] .faq-block {
  background: #16161a;
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme=dark] .faq-block h3 {
  color: #fff;
}

[data-bs-theme=dark] .faq-block h3 em {
  color: #aab0ff;
}

[data-bs-theme=dark] .faq-item {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme=dark] .faq-item .q-text {
  color: #fff;
}

[data-bs-theme=dark] .faq-item .q-toggle {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

[data-bs-theme=dark] .faq-item:hover .q-toggle,
[data-bs-theme=dark] .faq-item[open] .q-toggle {
  background: var(--lp-yellow);
  color: var(--lp-ink);
}

[data-bs-theme=dark] .faq-answer {
  color: rgba(255, 255, 255, 0.65);
}

[data-bs-theme=dark] .faq-item[open] {
  background: linear-gradient(180deg, rgba(255, 209, 83, 0.04), transparent);
}

/* Popular searches */
[data-bs-theme=dark] .lp-popsearch {
  background: #16161a;
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme=dark] .lp-popsearch h2 {
  color: #fff;
}

[data-bs-theme=dark] .lp-popsearch-sub,
[data-bs-theme=dark] .lp-popsearch-eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

/* Explore locations — already dark, fine */
/* Newsletter — yellow stays bright in dark too, just text */
[data-bs-theme=dark] .lp-news h2,
[data-bs-theme=dark] .lp-news p {
  color: #0c0c10;
}

/* Footer */
[data-bs-theme=dark] .lp-footer {
  border-top-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme=dark] .lp-footer-row {
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme=dark] .lp-footer-brand {
  color: #fff;
}

[data-bs-theme=dark] .lp-footer-nav a {
  color: #fff;
}

[data-bs-theme=dark] .lp-footer-ico {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

[data-bs-theme=dark] .lp-footer-ico:hover {
  background: #fff;
  color: #0c0c10;
}

[data-bs-theme=dark] .main-breadcrumb,
[data-bs-theme=dark] .main-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
}

[data-bs-theme=dark] .main-breadcrumb .current {
  color: #fff;
}

[data-bs-theme=dark] .lp-footer-copy {
  color: rgba(255, 255, 255, 0.5);
}

/* Location dropdown */
.lp-edit-loc-wrap {
  position: relative;
}

.lp-edit-loc-btn {
  width: 100%;
}

.lp-edit-loc-btn svg {
  transition: transform 0.25s ease;
}

.lp-edit-loc-wrap.open .lp-edit-loc-btn svg {
  transform: rotate(180deg);
}

.lp-edit-loc-list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  list-style: none;
  padding: 8px;
  margin: 0;
  background: #fff;
  border: 1.5px solid var(--lp-ink);
  border-radius: 14px;
  z-index: 80;
  max-height: 280px;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  animation: lp-edit-loc-drop 0.25s cubic-bezier(0.4, -0.2, 0.3, 1.5);
}

@keyframes lp-edit-loc-drop {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lp-edit-loc-list li {
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--lp-sharp);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--lp-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: all 0.15s;
}

.lp-edit-loc-list li:hover {
  background: var(--lp-blue-soft);
  color: var(--lp-blue);
  transform: translateX(2px);
}

.lp-edit-loc-list li.active {
  background: var(--lp-blue);
  color: #fff;
}

.lp-edit-loc-list li.active .c {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.lp-edit-loc-list li .c {
  font-family: var(--lp-mono);
  font-size: 10px;
  background: var(--lp-bg);
  color: var(--lp-gray);
  padding: 2px 7px;
  border-radius: 99px;
  font-weight: 600;
}

.lp-edit-loc-list li.more {
  color: var(--lp-blue-deep);
  border-top: 1px dashed var(--lp-line);
  margin-top: 4px;
  padding-top: 12px;
  font-weight: 700;
}

.lp-edit-loc-list li.more .arr {
  background: none;
  padding: 0;
  color: inherit;
  font-size: 14px;
  transition: transform 0.2s;
}

.lp-edit-loc-list li.more:hover .arr {
  transform: translateX(4px);
}

/* Scrollbar inside dropdown */
.lp-edit-loc-list::-webkit-scrollbar {
  width: 4px;
}

.lp-edit-loc-list::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--lp-yellow), var(--lp-blue));
  border-radius: 99px;
}

/* Dark mode for dropdown */
[data-bs-theme=dark] .lp-edit-loc-list {
  background: #16161a;
  border-color: rgba(255, 255, 255, 0.2);
}

[data-bs-theme=dark] .lp-edit-loc-list li {
  color: #f2f2f2;
}

[data-bs-theme=dark] .lp-edit-loc-list li:hover {
  background: rgba(170, 176, 255, 0.16);
  color: #aab0ff;
}

[data-bs-theme=dark] .lp-edit-loc-list li.active {
  background: var(--lp-yellow);
  color: #0a0a0a;
}

[data-bs-theme=dark] .lp-edit-loc-list li.active .c {
  background: rgba(0, 0, 0, 0.16);
  color: #0a0a0a;
}

[data-bs-theme=dark] .lp-edit-loc-list li .c {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

[data-bs-theme=dark] .lp-edit-loc-list li.more {
  color: var(--lp-yellow);
  border-top-color: rgba(255, 255, 255, 0.1);
}

/* #3 — Collapsible block (chevron click) */
.lp-edit-block.collapsed > *:not(.lp-edit-head) {
  display: none;
}

.lp-edit-block .lp-edit-head .chev {
  cursor: pointer;
  padding: 6px;
  margin: -6px;
  border-radius: 8px;
  transition: transform 0.3s cubic-bezier(0.4, -0.2, 0.3, 1.5), background 0.15s;
}

.lp-edit-block .lp-edit-head .chev:hover {
  background: rgba(56, 59, 241, 0.08);
}

.lp-edit-block.collapsed .lp-edit-head .chev {
  transform: rotate(-90deg);
}

[data-bs-theme=dark] .lp-edit-block .lp-edit-head .chev:hover {
  background: rgba(170, 176, 255, 0.16);
}

/* Vile Parle text effect — animated gradient + dotted underline draw */
.lp-place-fx {
  position: relative;
  display: inline-block;
  padding: 0 12px;
  background: var(--lp-yellow);
  color: var(--lp-blue);
  border-radius: 8px;
  line-height: 1.08;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.08);
  margin: 0 4px;
}

.lp-place-text {
  background: linear-gradient(110deg, #1c1f8a 0%, #383bf1 30%, #9333ea 55%, #ff3b6e 80%, #1c1f8a 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: lp-place-flow 6s linear infinite;
  display: inline-block;
  font-style: normal;
}

@keyframes lp-place-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}
.lp-place-fx::after {
  content: "✦";
  position: absolute;
  top: -8px;
  right: -6px;
  font-size: 14px;
  color: #ff3b6e;
  animation: lp-place-spark 2.4s ease-in-out infinite;
  transform-origin: center;
}

@keyframes lp-place-spark {
  0%, 100% {
    transform: scale(0.6) rotate(0);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2) rotate(75deg);
    opacity: 1;
  }
}
/* Share button + popup */
.lp-about-head-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.lp-about-head-row .lp-about-head {
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
}

.lp-share-btn {
  flex: 0 0 auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px 11px 14px;
  background: linear-gradient(135deg, #1e3df1, #383bf1);
  color: #fff;
  border: none;
  border-radius: 99px;
  font-family: var(--lp-sharp);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.005em;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(56, 59, 241, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.2s, box-shadow 0.25s;
  align-self: flex-start;
  margin-top: 14px;
}

.lp-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(56, 59, 241, 0.6);
}

.lp-share-btn svg {
  width: 14px;
  height: 14px;
  color: #fff;
}

.lp-share-btn .lp-share-ping {
  position: absolute;
  inset: -4px;
  border-radius: 99px;
  border: 2px solid var(--lp-blue);
  animation: lp-share-ping 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes lp-share-ping {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }
  70%, 100% {
    transform: scale(1.25);
    opacity: 0;
  }
}
.lp-share-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 30%;
  height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  transform: skewX(-20deg);
  animation: lp-share-shine 3.5s ease-in-out infinite;
  pointer-events: none;
  border-radius: inherit;
}

@keyframes lp-share-shine {
  0% {
    left: -30%;
  }
  70%, 100% {
    left: 130%;
  }
}
/* Popup */
.lp-share-pop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 10, 16, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: lp-share-pop-fade 0.25s ease-out;
}

@keyframes lp-share-pop-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.lp-share-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 36px 28px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  animation: lp-share-card-in 0.35s cubic-bezier(0.4, -0.2, 0.3, 1.5);
}

@keyframes lp-share-card-in {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.lp-share-x {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--lp-ink);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: all 0.15s;
  z-index: 5;
}

.lp-share-x:hover {
  background: var(--lp-hot);
  transform: rotate(90deg) scale(1.05);
}

.lp-share-eye {
  font-family: var(--lp-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lp-blue);
  background: var(--lp-blue-soft);
  padding: 4px 10px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 14px;
}

.lp-share-card h4 {
  font-family: var(--lp-display);
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  color: var(--lp-ink);
  line-height: 1;
}

.lp-share-card h4 em {
  font-family: var(--lp-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--lp-blue);
}

.lp-share-card p {
  font-family: var(--lp-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--lp-gray);
  margin: 0 0 22px;
}

.lp-share-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.lp-share-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 14px 8px;
  border-radius: 14px;
  text-decoration: none;
  background: var(--lp-bg);
  color: var(--lp-ink);
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: var(--lp-sharp);
  font-size: 11.5px;
  font-weight: 700;
  transition: all 0.2s;
}

.lp-share-opt:hover {
  transform: translateY(-3px);
  border-color: var(--lp-ink);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.lp-share-opt.wa svg {
  color: #25D366;
}

.lp-share-opt.x svg {
  color: #000;
}

.lp-share-opt.fb svg {
  color: #1877F2;
}

.lp-share-opt.li svg {
  color: #0A66C2;
}

.lp-share-opt.em svg {
  color: var(--lp-blue);
}

.lp-share-opt.copy {
  background: var(--lp-ink);
  color: #fff;
  border: none;
}

.lp-share-opt.copy svg {
  color: #fff;
}

.lp-share-opt.copy:hover {
  background: var(--lp-blue);
}

.lp-share-link {
  background: var(--lp-bg);
  border: 1.5px solid var(--lp-line);
  border-radius: 10px;
  padding: 10px 14px;
}

.lp-share-link input {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  font-family: var(--lp-mono);
  font-size: 11px;
  color: var(--lp-ink);
}

[data-bs-theme=dark] .lp-share-card {
  background: #16161a;
}

[data-bs-theme=dark] .lp-share-card h4 {
  color: #fff;
}

[data-bs-theme=dark] .lp-share-opt {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

[data-bs-theme=dark] .lp-share-link {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme=dark] .lp-share-link input {
  color: #fff;
}

/* Experiences grid (3x3) */
.lp-experiences {
  margin-bottom: 32px;
  padding-block: 10px;
}

.lp-exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 1100px) {
  .lp-exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .lp-exp-grid {
    grid-template-columns: 1fr;
  }
}
.lp-exp {
  background: var(--lp-card);
  border: 1.5px solid #0a0a0a;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s, box-shadow 0.3s;
  animation: lp-exp-rise 0.6s cubic-bezier(0.2, 0.6, 0.2, 1) backwards;
  animation-delay: calc(var(--i) * 60ms);
}

@keyframes lp-exp-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lp-exp:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.1);
}

.lp-exp-img {
  aspect-ratio: 1/1;
  background: linear-gradient(160deg, #3a2418, #6b2d1f);
  position: relative;
  overflow: hidden;
}

.lp-exp:nth-child(2) .lp-exp-img {
  background: linear-gradient(160deg, #1a4d2a, #0a2614);
}

.lp-exp:nth-child(3) .lp-exp-img {
  background: linear-gradient(160deg, #1c1f8a, #383bf1);
}

.lp-exp:nth-child(4) .lp-exp-img {
  background: linear-gradient(160deg, #5a3a1a, #1a0a05);
}

.lp-exp:nth-child(5) .lp-exp-img {
  background: linear-gradient(160deg, #c98963, #6b3d1f);
}

.lp-exp:nth-child(6) .lp-exp-img {
  background: linear-gradient(160deg, #1a4d2a, #0a2614);
}

.lp-exp:nth-child(7) .lp-exp-img {
  background: linear-gradient(160deg, #ff6b7a, #9333ea);
}

.lp-exp:nth-child(8) .lp-exp-img {
  background: linear-gradient(160deg, #7CEFAA, #2BC26A);
}

.lp-exp:nth-child(9) .lp-exp-img {
  background: linear-gradient(160deg, #FFE17E, #F6B800);
}

.lp-exp-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--lp-yellow);
  color: #0a0a0a;
  padding: 4px 9px;
  border-radius: 5px;
  font-family: var(--lp-sharp);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-exp-loc {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 99px;
  font-family: var(--lp-sharp);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lp-exp-body {
  background: #0a0a0a;
  color: #fff;
  padding: 10px 14px;
}

.lp-exp-body h3 {
  font-family: var(--lp-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lp-exp-cta {
  display: grid;
  grid-template-columns: 5fr 7fr;
  background: var(--lp-blue);
  color: #fff;
  min-height: 60px;
}

.lp-exp-price {
  padding: 8px 10px 8px 14px;
  border-right: 1px dashed rgba(255, 255, 255, 0.22);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-exp-price .now {
  font-family: var(--lp-display);
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.lp-exp-price .old {
  font-family: var(--lp-sharp);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: line-through;
  text-decoration-color: var(--lp-yellow);
  margin-top: 3px;
}

.lp-exp-book {
  background: linear-gradient(135deg, #FFD153, #ffb000);
  color: #0a0a0a;
  border: none;
  cursor: pointer;
  font-family: var(--lp-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  transition: filter 0.2s;
}

.lp-exp-book:hover {
  filter: brightness(1.08);
}

/* Actions row */
.lp-exp-actions {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 14px;
}

@media (max-width: 680px) {
  .lp-exp-actions {
    grid-template-columns: 1fr;
  }
}
.lp-exp-more {
  background: linear-gradient(135deg, var(--lp-yellow-deep) 0%, var(--lp-yellow) 50%, var(--lp-yellow-deep) 100%);
  background-size: 200% 200%;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--lp-display);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--lp-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(246, 184, 0, 0.35);
  transition: all 0.25s;
  animation: lp-more-bg 4s ease-in-out infinite;
}

@keyframes lp-more-bg {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.lp-exp-more::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: lp-more-shine 2.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes lp-more-shine {
  0%, 70% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}
.lp-exp-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(246, 184, 0, 0.55);
}

.lp-exp-more span {
  font-family: var(--lp-mono);
  font-size: 10px;
  background: rgba(0, 0, 0, 0.12);
  color: var(--lp-ink);
  padding: 3px 8px;
  border-radius: 99px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.lp-exp-more:hover span {
  background: rgba(0, 0, 0, 0.18);
}

/* Dark mode — same yellow, slightly stronger shadow */
[data-bs-theme=dark] .lp-exp-more {
  color: #1a1a1a !important;
}

[data-bs-theme=dark] .lp-exp-more span {
  color: #1a1a1a !important;
}

.lp-hero-hyperlocal {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.55;
  pointer-events: none;
  mix-blend-mode: screen;
}

.lp-hero-hyperlocal svg {
  width: 100%;
  height: 100%;
  display: block;
}

.lp-hero-pin {
  animation: lp-hero-pin-pulse 3s ease-in-out infinite;
  transform-origin: center bottom;
}

.lp-hero-pin2 {
  animation-delay: -1s;
}

.lp-hero-pin3 {
  animation-delay: -2s;
}

@keyframes lp-hero-pin-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.08) translateY(-2px);
    opacity: 1;
  }
}
/* Experiences grid (3x3) */
.lp-experiences {
  margin-bottom: 32px;
}

.lp-exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 1100px) {
  .lp-exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .lp-exp-grid {
    grid-template-columns: 1fr;
  }
}
.lp-exp {
  background: var(--lp-card);
  border: 1.5px solid #0a0a0a;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s, box-shadow 0.3s;
  animation: lp-exp-rise 0.6s cubic-bezier(0.2, 0.6, 0.2, 1) backwards;
  animation-delay: calc(var(--i) * 60ms);
}

@keyframes lp-exp-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lp-exp:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.1);
}

.lp-exp-img {
  aspect-ratio: 1/1;
  background: linear-gradient(160deg, #3a2418, #6b2d1f);
  position: relative;
  overflow: hidden;
}

.lp-exp:nth-child(2) .lp-exp-img {
  background: linear-gradient(160deg, #1a4d2a, #0a2614);
}

.lp-exp:nth-child(3) .lp-exp-img {
  background: linear-gradient(160deg, #1c1f8a, #383bf1);
}

.lp-exp:nth-child(4) .lp-exp-img {
  background: linear-gradient(160deg, #5a3a1a, #1a0a05);
}

.lp-exp:nth-child(5) .lp-exp-img {
  background: linear-gradient(160deg, #c98963, #6b3d1f);
}

.lp-exp:nth-child(6) .lp-exp-img {
  background: linear-gradient(160deg, #1a4d2a, #0a2614);
}

.lp-exp:nth-child(7) .lp-exp-img {
  background: linear-gradient(160deg, #ff6b7a, #9333ea);
}

.lp-exp:nth-child(8) .lp-exp-img {
  background: linear-gradient(160deg, #7CEFAA, #2BC26A);
}

.lp-exp:nth-child(9) .lp-exp-img {
  background: linear-gradient(160deg, #FFE17E, #F6B800);
}

.lp-exp-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--lp-yellow);
  color: #0a0a0a;
  padding: 4px 9px;
  border-radius: 5px;
  font-family: var(--lp-sharp);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-exp-loc {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 99px;
  font-family: var(--lp-sharp);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lp-exp-body {
  background: #0a0a0a;
  color: #fff;
  padding: 10px 14px;
}

.lp-exp-body h3 {
  font-family: var(--lp-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lp-exp-cta {
  display: grid;
  grid-template-columns: 5fr 7fr;
  background: var(--lp-blue);
  color: #fff;
  min-height: 60px;
}

.lp-exp-price {
  padding: 8px 10px 8px 14px;
  border-right: 1px dashed rgba(255, 255, 255, 0.22);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-exp-price .now {
  font-family: var(--lp-display);
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.lp-exp-price .old {
  font-family: var(--lp-sharp);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: line-through;
  text-decoration-color: var(--lp-yellow);
  margin-top: 3px;
}

.lp-exp-book {
  background: linear-gradient(135deg, #FFD153, #ffb000);
  color: #0a0a0a;
  border: none;
  cursor: pointer;
  font-family: var(--lp-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  transition: filter 0.2s;
}

.lp-exp-book:hover {
  filter: brightness(1.08);
}

/* Chat with Awwee — deep cosmic gradient works equally in light + dark */
.lp-exp-chat {
  background: linear-gradient(135deg, #1a1d8a 0%, #2c2db8 50%, #383bf1 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  padding: 14px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(10, 9, 48, 0.3);
  transition: transform 0.25s;
}

.lp-exp-chat::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  animation: lp-exp-shine 3.4s ease-in-out infinite;
}

@keyframes lp-exp-shine {
  0%, 70% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}
.lp-exp-chat:hover {
  transform: translateY(-2px);
}

.lp-exp-chat-eye {
  font-family: var(--lp-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-yellow);
}

.lp-exp-chat-main {
  font-family: var(--lp-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.015em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lp-exp-chat-main b {
  font-weight: 900;
  color: var(--lp-yellow);
}

.lp-exp-chat-main .arr {
  display: inline-block;
  transition: transform 0.25s;
}

.lp-exp-chat:hover .lp-exp-chat-main .arr {
  transform: translateX(4px);
}

.lp-exp-chat small {
  font-family: var(--lp-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1px;
}

[data-bs-theme=dark] .lp-exp {
  background: #16161a;
  border-color: rgba(255, 255, 255, 0.12);
}

/* Explore locations — compact rail (Spotify-style) */
.lp-loc-r5-wrap {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  padding: 8px 0 12px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 30px, #000 calc(100% - 30px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 30px, #000 calc(100% - 30px), transparent 100%);
}

.lp-loc-r5-track {
  display: flex;
  gap: 10px;
  animation: lp-loc-r5-marquee 90s linear infinite;
  will-change: transform;
  width: -moz-max-content;
  width: max-content;
}

.lp-loc-r5-track.paused {
  animation-play-state: paused;
}

@keyframes lp-loc-r5-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.lp-loc-r5 {
  flex: 0 0 250px;
  background: var(--lp-card);
  border: 1.5px solid var(--lp-line);
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--lp-ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.3s;
}

.lp-loc-r5-dot {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--accent), rgba(0, 0, 0, 0.45));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  position: relative;
  overflow: hidden;
}

.lp-loc-r5-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.4), transparent 55%);
}

.lp-loc-r5-body {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lp-loc-r5-body .nm {
  font-family: var(--lp-display);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: -0.018em;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--lp-ink);
}

.lp-loc-r5-body .tg {
  font-family: var(--lp-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--lp-gray);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 3px;
}

.lp-loc-r5-go {
  font-family: var(--lp-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--lp-ink);
  opacity: 0.4;
  flex: 0 0 auto;
  transition: all 0.25s;
}

.lp-loc-r5:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}

.lp-loc-r5:hover .lp-loc-r5-go {
  opacity: 1;
  color: var(--accent);
  transform: translateX(4px);
}

[data-bs-theme=dark] .lp-loc-r5 {
  background: #16161a;
  border-color: rgba(255, 255, 255, 0.08);
  color: #f2f2f2;
}

[data-bs-theme=dark] .lp-loc-r5-body .nm {
  color: #f2f2f2;
}

[data-bs-theme=dark] .lp-loc-r5-go {
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .lp-loc-r5-track {
    animation-duration: 0.01ms !important;
  }
}
/* Footer links — dark mode hover yellow */
[data-bs-theme=dark] .lp-footer-nav a:hover,
[data-bs-theme=dark] .main-breadcrumb a:hover {
  color: var(--lp-yellow);
}

[data-bs-theme=dark] .lp-footer-ico:hover {
  background: var(--lp-yellow);
  color: #0a0a0a;
}

/* Partner form — fix text + submit + dropdown visibility */
.lp-partner-section input,
.lp-partner-section select,
.lp-partner-section textarea {
  color: #fff !important;
  -webkit-text-fill-color: #ece1e1 !important;
}

.lp-partner-section select option {
  color: #0a0a0a !important;
  background: #fff;
}

[data-bs-theme=dark] .lp-partner-section select option {
  color: #fff !important;
  background: #16161a;
}

[data-bs-theme=dark] .lp-partner-section button[type=button] {
  background: var(--lp-yellow) !important;
  color: #0a0a0a !important;
}

[data-bs-theme=dark] .lp-partner-section button[type=button]:hover {
  background: #fff !important;
  color: #0a0a0a !important;
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.25);
}

/* Newsletter — dark mode contrast for eyebrow + subscribe button */
[data-bs-theme=dark] .lp-news-eyebrow {
  color: #0a0a0a;
  opacity: 1;
  font-weight: 800;
}

[data-bs-theme=dark] .lp-news button {
  background: #0a0a0a !important;
  color: #FFD153 !important;
  border: none;
}

[data-bs-theme=dark] .lp-news button:hover {
  background: #fff !important;
  color: #0a0a0a !important;
}

/* FAQ — × visibility in dark mode */
[data-bs-theme=dark] .faq-item .q-toggle {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

[data-bs-theme=dark] .faq-item:hover .q-toggle,
[data-bs-theme=dark] .faq-item[open] .q-toggle {
  background: var(--lp-yellow);
  color: #0a0a0a !important;
}

[data-bs-theme=dark] .lp-share-btn::before {
  background: linear-gradient(110deg, transparent, rgba(22, 22, 26, 0.5), transparent);
}

.lp-sidebar {
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 480px) {
  .lp-v2-page {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 12px 0;
  }
  .lp-sidebar {
    display: none;
  }
  .lp-mobile-filter-row {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 10px 12px 0;
  }
  .lp-mobile-left-rail {
    min-width: 0;
  }
  .lp-mobile-filter-row .left-content {
    position: static;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    overflow: visible;
    border-right: 0;
    background: transparent;
    z-index: auto;
  }
  .lp-mobile-left-rail .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(100vh - 150px);
    padding-right: 2px;
  }
  .lp-mobile-left-rail .filter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0;
    width: 100%;
    text-align: center;
  }
  .lp-mobile-left-rail .filter-item .filter-img img {
    width: 42px !important;
    height: 42px !important;
  }
  .lp-mobile-left-rail .filter-content {
    width: 100%;
  }
  .lp-mobile-left-rail .filter-content span {
    display: block;
    font-size: 10px;
    line-height: 1.2;
    white-space: normal;
    word-break: break-word;
  }
  .lp-mobile-filter-wrap {
    min-width: 0;
  }
  .lp-mobile-filter-wrap .mobile-form {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    background: transparent;
    position: sticky;
  }
  .lp-mobile-filter-wrap .row {
    margin-left: 0;
    margin-right: 0;
    --bs-gutter-x: 8px;
    --bs-gutter-y: 8px;
  }
  .lp-mobile-filter-wrap .col-12,
  .lp-mobile-filter-wrap .col-6 {
    padding-left: 0;
    padding-right: 0;
    min-width: 0;
  }
  .lp-mobile-filter-wrap .custom-select-wrapper {
    min-width: 0;
  }
  .lp-mobile-filter-wrap .custom-select-trigger {
    min-height: 44px;
    padding-inline: 10px;
  }
  .lp-mobile-filter-wrap .custom-select-trigger .selected-option {
    min-width: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .lp-mobile-filter-wrap .custom-options {
    max-height: 50vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ffd153 transparent;
  }
  .lp-mobile-filter-wrap .custom-options::-webkit-scrollbar {
    width: 6px;
  }
  .lp-mobile-filter-wrap .custom-options::-webkit-scrollbar-track {
    background: transparent;
  }
  .lp-mobile-filter-wrap .custom-options::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ffd153, #ff3b6e);
    border-radius: 999px;
  }
  .lp-mobile-filter-wrap .custom-option:hover {
    background: rgba(255, 209, 83, 0.14);
    color: var(--lp-ink);
  }
}
@media (min-width: 1400px) {
  .lp-edit-head h4 {
    font-size: 15px;
  }
}/*# sourceMappingURL=listing.css.map */