/* pricing.css - Nàng Thơ Editorial Style */
/* ═══════════════════════════════════════════════════
   DEAR MUSÉ - BẢNG GIÁ (EDITORIAL THEME)
   ═══════════════════════════════════════════════════ */

:root {
  --muse-gold: #C9A96E;
  --muse-gold-light: #e5c158;
  --muse-text: #2a2825;
  --muse-text-light: #5c5852;
  --muse-bg: #F5EFE6; /* Warm Beige */
  --muse-surface: #FCF9F2; /* Very light beige for cards/surfaces */
  --muse-border: rgba(201, 169, 110, 0.25);
  --muse-divider: rgba(42, 40, 37, 0.1);
}

body {
  background-color: var(--muse-bg);
}

/* ──────────────────────────────────────────────────
   HERO SECTION
   ────────────────────────────────────────────────── */
.muse-pricing-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}

.muse-pricing-bg {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 150vw;
  height: 150vw;
  background: radial-gradient(circle, rgba(224, 206, 179, 0.4) 0%, rgba(245, 239, 230, 0) 60%);
  pointer-events: none;
  z-index: 0;
}

.muse-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muse-gold);
  margin-bottom: 24px;
  position: relative;
}

.muse-label::after {
  content: '';
  display: block;
  width: 1px;
  height: 24px;
  background: var(--muse-gold);
  margin: 12px auto 0;
}

.muse-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 84px);
  font-weight: 300;
  color: var(--muse-text);
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.muse-title .muse-italic {
  font-style: italic;
  color: var(--muse-gold);
  font-weight: 400;
}

.muse-subtitle {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 16px);
  color: var(--muse-text-light);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

/* ──────────────────────────────────────────────────
   EDITORIAL MENU (PRICING LIST)
   ────────────────────────────────────────────────── */
.muse-pricing-section {
  padding: 40px 0 120px;
  position: relative;
  z-index: 10;
}

.muse-pricing-menu {
  max-width: 1100px;
  margin: 0 auto;
}

.muse-pricing-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  padding: 64px 0;
  border-bottom: 1px solid var(--muse-divider);
  align-items: center;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.muse-pricing-item:first-child {
  border-top: 1px solid var(--muse-divider);
}

.muse-pricing-item:hover {
  opacity: 0.95;
}

/* LEFT SIDE: Name & Desc */
.muse-pricing-left {
  display: flex;
  flex-direction: column;
}

.muse-pricing-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 300;
  font-style: italic;
  color: var(--muse-text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.muse-pricing-desc {
  font-size: 19px;
  font-weight: 300;
  color: var(--muse-text-light);
  line-height: 1.8;
  max-width: 420px;
}

/* MIDDLE: Divider Line */
.muse-pricing-divider-line {
  width: 1px;
  height: 100%;
  min-height: 120px;
  background: var(--muse-gold);
  opacity: 0.3;
}

/* RIGHT SIDE: Details & Cost */
.muse-pricing-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.muse-pricing-cost {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.muse-cost-label {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muse-text-light);
}

.muse-cost-value {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 48px);
  font-weight: 400;
  color: var(--muse-gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

/* FEATURES LIST */
.muse-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.muse-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 19px;
  font-weight: 300;
  color: var(--muse-text);
  line-height: 1.6;
}

.muse-feature-dot {
  width: 4px;
  height: 4px;
  background: var(--muse-gold);
  border-radius: 50%;
  margin-top: 10px;
  flex-shrink: 0;
}

/* ACTION BUTTON */
.muse-pricing-action {
  margin-top: 8px;
}

.muse-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 32px;
  border: 1px solid var(--muse-border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muse-text);
  text-decoration: none;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.muse-btn-outline:hover {
  background: var(--muse-text);
  border-color: var(--muse-text);
  color: var(--muse-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 40, 37, 0.15);
}

.muse-btn-outline svg {
  transition: transform 0.4s ease;
}

.muse-btn-outline:hover svg {
  transform: translateX(4px);
}

/* ──────────────────────────────────────────────────
   NOTE SECTION
   ────────────────────────────────────────────────── */
.muse-pricing-note {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.muse-pricing-note p {
  font-size: 16px;
  font-weight: 300;
  color: var(--muse-text-light);
  font-style: italic;
  letter-spacing: 0.05em;
  max-width: 600px;
  line-height: 1.6;
}

/* ──────────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────────── */
@media (max-width: 992px) {
  .muse-pricing-item {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0;
    text-align: center;
  }

  .muse-pricing-left {
    align-items: center;
  }

  .muse-pricing-divider-line {
    width: 60px;
    height: 1px;
    min-height: auto;
    margin: 0 auto;
  }

  .muse-pricing-right {
    align-items: center;
  }

  .muse-pricing-features {
    align-items: center;
  }

  .muse-pricing-features li {
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .muse-feature-dot {
    margin-top: 0;
    margin-bottom: 4px;
  }
}

@media (max-width: 768px) {
  .muse-pricing-hero {
    padding: 120px 0 60px;
  }

  .muse-title {
    font-size: 50px;
  }

  .muse-cost-value {
    font-size: 45px;
  }
}
