/* ============================
   Land Pajama Heart — Dark Seduction Theme
   ============================= */

:root {
  --bg-primary: #0a0a0a;
  --bg-card: #1a1a1a;
  --bg-card-alt: #141414;
  --accent: #dc2626;
  --accent-hover: #ef4444;
  --accent-glow: rgba(220, 38, 38, 0.25);
  --accent-soft: rgba(220, 38, 38, 0.10);
  --text-primary: #fafafa;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --border-subtle: rgba(220, 38, 38, 0.15);
  --border-card: rgba(255, 255, 255, 0.06);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px var(--accent-glow);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --max-width: 480px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; }

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

/* Section base */
.lb {
  padding: 48px 0;
  position: relative;
}

.lb--alt {
  background: var(--bg-card-alt);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.5;
}

/* ❤ Heart decoration */
.heart-accent {
  color: var(--accent);
  font-size: 1.2em;
}

/* ============ HERO ============ */
.hero {
  padding: 32px 0 48px;
  text-align: center;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a0a0a 100%);
  overflow: hidden;
}

.hero__badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-glow);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero__title .accent { color: var(--accent); }

.hero__subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  border: 1px solid var(--border-subtle);
}

.hero__image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
}

.hero__stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============ CTA BUTTON ============ */
.btn-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px var(--accent-glow);
  letter-spacing: 0.02em;
}

.btn-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

/* ============ PRICE SECTION ============ */
.price-section {
  text-align: center;
  padding: 36px 0;
  background: var(--bg-card-alt);
}

.price-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
  max-width: 100%;
  min-width: 0;
}

.price-old {
  font-size: clamp(18px, 5vw, 20px);
  color: var(--text-muted);
  text-decoration: line-through;
  min-width: 0;
  overflow-wrap: anywhere;
}

.price-divider {
  width: 2px;
  height: 36px;
  background: var(--border-subtle);
  border-radius: 2px;
}

.price-new {
  font-family: var(--font-heading);
  font-size: clamp(34px, 9vw, 42px);
  font-weight: 900;
  color: var(--accent);
  min-width: 0;
  overflow-wrap: anywhere;
}

.price-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Countdown */
.countdown-bar {
  display: inline-flex;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 10px 20px;
  border-radius: var(--radius-md);
}

.countdown-bar__item {
  text-align: center;
  min-width: 42px;
}

.countdown-bar__value {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.countdown-bar__label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.countdown-bar__sep {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  align-self: flex-start;
  padding-top: 2px;
}

/* ============ COLOR SLIDER SECTIONS ============ */
.color-slider-section {
  padding: 40px 0;
}

.color-slider-section__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
}

.color-slider-section__subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 20px;
}

.color-slider-section .color-label {
  display: inline-block;
  background: var(--accent-soft);
  border: 1px solid var(--border-subtle);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* rdk-simple-slider dark overrides */
.rdk-simple-slider-track {
  background: var(--bg-card) !important;
  border-radius: var(--radius-lg) !important;
}

.rdk-simple-slider-frame {
  background: var(--bg-card) !important;
}

.rdk-simple-slider-nav {
  background: rgba(220, 38, 38, 0.85) !important;
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3) !important;
}

.rdk-simple-slider-nav:hover {
  background: rgba(239, 68, 68, 0.95) !important;
}

.rdk-simple-slider-counter {
  background: rgba(220, 38, 38, 0.75) !important;
}

/* ============ FEATURES ============ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-subtle);
}

.feature-card__icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.feature-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-card__text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============ SPECS + SIZE ============ */
.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--border-card);
}

.specs-table td {
  padding: 12px 8px;
  font-size: 14px;
}

.specs-table td:first-child {
  color: var(--text-muted);
  font-weight: 500;
  width: 40%;
}

.specs-table td:last-child {
  color: var(--text-primary);
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.size-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  padding: 12px;
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.size-btn:hover, .size-btn--active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

/* ============ REVIEWS ============ */
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 14px;
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-subtle);
}

.review-card__name {
  font-size: 15px;
  font-weight: 700;
}

.review-card__date {
  font-size: 12px;
  color: var(--text-muted);
}

.review-card__stars {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.review-card__photo {
  margin-top: 12px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.review-card__photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ============ FAQ ============ */
.faq-item {
  border-bottom: 1px solid var(--border-card);
  padding: 16px 0;
  overflow: hidden;
}

.faq-item__question {
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-width: 0;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.faq-item__icon {
  color: var(--accent);
  font-size: 20px;
  font-weight: 700;
  transition: transform 0.3s ease;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg) scale(0.8);
}

.faq-item__answer {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding-top: 0;
}

.faq-item.active .faq-item__answer {
  max-height: 200px;
  padding-top: 12px;
}

/* ============ ORDER FORM ============ */
.order-section {
  padding: 48px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #1a0a0a 100%);
}

.order-form {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.order-form__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
}

.order-form__subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-card);
  color: var(--text-primary);
  font-size: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s ease;
  font-family: var(--font-body);
}

.form-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.order-form .btn-cta {
  width: 100%;
  font-size: 18px;
  padding: 18px;
  margin-top: 8px;
}

/* ============ FOOTER ============ */
.footer {
  padding: 28px 0;
  text-align: center;
  border-top: 1px solid var(--border-card);
}

.footer__text {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer__links {
  margin-top: 8px;
}

.footer__links a {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 8px;
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--accent); }

/* ============ RESPONSIVE ============ */
@media (min-width: 420px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 600px) {
  :root {
    --max-width: 560px;
  }

  .hero__title {
    font-size: 42px;
  }

  .section-title {
    font-size: 32px;
  }
}

/* ============ UTILITY ============ */
.text-center { text-align: center; }
.mt-12 { margin-top: 12px; }
.mt-20 { margin-top: 20px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
