/* ══ PEARLERA SHARED STYLES ══ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Great+Vibes&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --navy: #0D1B5E;
  --pink: #C4527A;
  --fuchsia: #8B1A4A;
  --blush: #F2B8CC;
  --blush-light: #FDF0F5;
  --cream: #FAFAF8;
  --text: #1a1a2e;
  --muted: #7a7a8c;
  --border: #EDE0E8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }

/* ── ANNOUNCEMENT ── */
.announcement { background: var(--navy); color: var(--blush); text-align: center; padding: 9px 20px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; }
.announcement a { color: var(--blush); text-decoration: underline; }

/* ── NAV ── */
nav { position: sticky; top: 0; z-index: 100; background: rgba(250,250,248,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 0 48px; height: 68px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Great Vibes', cursive; font-size: 36px; color: var(--navy); text-decoration: none; line-height: 1; flex-shrink: 0; }
.nav-logo span { color: var(--pink); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-right { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.nav-sign-in { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); cursor: pointer; padding: 8px 14px; border: 1px solid var(--border); background: none; text-decoration: none; transition: all 0.2s; white-space: nowrap; }
.nav-sign-in:hover { border-color: var(--navy); color: var(--navy); }
.nav-plus { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--cream); cursor: pointer; padding: 9px 18px; background: var(--navy); border: none; transition: background 0.2s; text-decoration: none; white-space: nowrap; display: inline-block; }
.nav-plus:hover { background: var(--fuchsia); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; background: rgba(250,250,248,0.98); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 24px 24px 32px; z-index: 99; }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; margin-bottom: 20px; }
.mobile-menu ul li { border-bottom: 1px solid var(--border); }
.mobile-menu ul li a { display: block; padding: 14px 0; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--navy); text-decoration: none; }
.mobile-menu-btns { display: flex; gap: 10px; }
.mobile-menu-btns a { flex: 1; text-align: center; padding: 12px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; }

/* ── TICKER ── */
.ticker { background: var(--navy); padding: 12px 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-block; animation: ticker 30s linear infinite; font-family: 'Great Vibes', cursive; font-size: 18px; color: var(--blush); letter-spacing: 2px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── BUTTONS ── */
.btn-primary { display: inline-block; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; padding: 14px 28px; background: var(--navy); color: var(--cream); border: none; cursor: pointer; transition: background 0.2s; text-decoration: none; }
.btn-primary:hover { background: var(--fuchsia); }
.btn-secondary { display: inline-block; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; padding: 14px 28px; background: transparent; color: var(--pink); border: 1px solid var(--pink); cursor: pointer; transition: all 0.2s; text-decoration: none; }
.btn-secondary:hover { background: var(--pink); color: white; }
.btn-pink { display: inline-block; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; padding: 14px 28px; background: var(--pink); color: white; border: none; cursor: pointer; transition: background 0.2s; text-decoration: none; }
.btn-pink:hover { background: var(--fuchsia); }

/* ── NEWSLETTER ── */
.newsletter { background: var(--blush-light); border-top: 1px solid var(--blush); border-bottom: 1px solid var(--blush); padding: 72px 80px; text-align: center; }
.nl-swan { font-size: 32px; margin-bottom: 16px; display: block; }
.nl-title { font-family: 'Great Vibes', cursive; font-size: 52px; color: var(--navy); margin-bottom: 8px; line-height: 1; }
.nl-sub { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 28px; line-height: 1.8; }
.nl-form { display: flex; max-width: 440px; margin: 0 auto; box-shadow: 0 4px 24px rgba(196,82,122,0.12); }
.nl-input { flex: 1; padding: 15px 20px; background: white; border: 1px solid var(--blush); border-right: none; color: var(--navy); font-family: 'Jost', sans-serif; font-size: 12px; outline: none; min-width: 0; }
.nl-input::placeholder { color: #C4A8B8; }
.nl-btn { padding: 15px 22px; background: var(--navy); border: none; color: var(--blush); font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; cursor: pointer; transition: background 0.2s; white-space: nowrap; flex-shrink: 0; }
.nl-btn:hover { background: var(--fuchsia); }
.nl-note { font-size: 10px; color: var(--muted); margin-top: 12px; letter-spacing: 1px; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 56px 80px 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo { font-family: 'Great Vibes', cursive; font-size: 40px; color: white; margin-bottom: 12px; display: block; text-decoration: none; }
.footer-logo span { color: var(--blush); }
.footer-tagline { font-size: 12px; color: rgba(242,184,204,0.4); line-height: 1.8; max-width: 240px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social-btn { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 10px; color: rgba(242,184,204,0.6); cursor: pointer; transition: all 0.2s; text-decoration: none; font-family: 'Jost', sans-serif; letter-spacing: 1px; }
.footer-social-btn:hover { border-color: var(--pink); color: var(--pink); }
.footer-col-title { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; color: rgba(242,184,204,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 1px; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 10px; color: rgba(255,255,255,0.2); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ── ARTICLE STYLES ── */
.article-hero { background: linear-gradient(145deg, #EEF0FA 0%, #F5E0ED 50%, #EDE0F0 100%); padding: 80px 48px; text-align: center; border-bottom: 1px solid var(--border); }
.article-cat { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--pink); margin-bottom: 20px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.article-cat::before, .article-cat::after { content: '✦'; opacity: 0.5; }
.article-title { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: var(--navy); line-height: 1.1; max-width: 800px; margin: 0 auto 24px; }
.article-title em { font-style: italic; color: var(--pink); }
.article-meta { font-size: 11px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; }
.article-meta span { color: var(--pink); }
.article-wrap { max-width: 760px; margin: 0 auto; padding: 72px 24px 80px; }
.article-intro { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; color: var(--navy); line-height: 1.7; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); font-style: italic; }
.article-body p { font-size: 15px; color: var(--muted); line-height: 1.9; margin-bottom: 20px; }
.article-body h2 { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 400; color: var(--navy); margin: 48px 0 16px; line-height: 1.2; }
.article-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; color: var(--pink); margin: 32px 0 12px; }
.product-section { margin-bottom: 64px; padding-bottom: 64px; border-bottom: 1px solid var(--border); }
.product-section:last-of-type { border-bottom: none; }
.product-number { font-family: 'Cormorant Garamond', serif; font-size: 80px; color: var(--blush); font-style: italic; line-height: 1; margin-bottom: -10px; display: block; }
.product-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 400; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.product-body { font-size: 15px; color: var(--muted); line-height: 1.9; margin-bottom: 20px; }
.product-tip { background: var(--blush-light); border-left: 3px solid var(--pink); padding: 16px 20px; margin-bottom: 24px; font-size: 13px; color: var(--navy); line-height: 1.7; }
.product-tip strong { color: var(--pink); }
.product-links { display: flex; flex-direction: column; gap: 10px; }
.affiliate-btn { display: flex; align-items: center; gap: 12px; padding: 14px 20px; border: 1px solid var(--border); background: white; text-decoration: none; color: var(--navy); transition: all 0.2s; font-size: 13px; }
.affiliate-btn:hover { border-color: var(--pink); background: var(--blush-light); }
.affiliate-btn .btn-label { flex: 1; }
.affiliate-btn .btn-name { font-weight: 500; display: block; margin-bottom: 2px; }
.affiliate-btn .btn-sub { font-size: 11px; color: var(--muted); letter-spacing: 1px; }
.affiliate-btn .btn-arrow { font-size: 16px; color: var(--pink); flex-shrink: 0; }
.affiliate-btn.primary { background: var(--navy); border-color: var(--navy); color: white; }
.affiliate-btn.primary:hover { background: var(--fuchsia); border-color: var(--fuchsia); }
.affiliate-btn.primary .btn-sub { color: rgba(242,184,204,0.7); }
.affiliate-btn.primary .btn-arrow { color: var(--blush); }
.pullquote { text-align: center; padding: 48px 0; margin: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pullquote p { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-style: italic; color: var(--navy); line-height: 1.4; }
.pullquote p span { color: var(--pink); }
.disclosure { background: var(--blush-light); border: 1px solid var(--blush); padding: 14px 18px; font-size: 11px; color: var(--muted); line-height: 1.7; margin-bottom: 48px; }
.related { background: var(--navy); padding: 60px 80px; }
.related-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; color: white; margin-bottom: 32px; }
.related-title em { font-style: italic; color: var(--blush); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); padding: 24px; cursor: pointer; transition: background 0.2s; text-decoration: none; display: block; }
.related-card:hover { background: rgba(255,255,255,0.1); }
.related-card-cat { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--pink); margin-bottom: 8px; }
.related-card-title { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: white; line-height: 1.4; }

/* ── FADE IN ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ══ MOBILE RESPONSIVE ══ */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-sign-in { display: none; }
  .nav-hamburger { display: flex; }

  .announcement { font-size: 9px; letter-spacing: 1.5px; padding: 8px 16px; }

  .newsletter { padding: 48px 24px; }
  .nl-title { font-size: 40px; }
  .nl-form { flex-direction: column; box-shadow: none; }
  .nl-input { border-right: 1px solid var(--blush); border-bottom: none; }
  .nl-btn { padding: 14px; }

  footer { padding: 48px 24px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .article-hero { padding: 48px 20px; }
  .article-title { font-size: 32px; }
  .article-wrap { padding: 40px 20px 60px; }
  .article-intro { font-size: 18px; }
  .product-number { font-size: 56px; }
  .product-title { font-size: 26px; }
  .pullquote p { font-size: 22px; }

  .related { padding: 40px 20px; }
  .related-grid { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .article-title { font-size: 28px; }
}
