/* SheLaBelle.store - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:wght@300;400;600&display=swap');

:root {
  --navy: #0d1b2a;
  --navy-mid: #1a2d45;
  --navy-light: #243b55;
  --accent: #4a9eff;
  --accent-light: #7ab8ff;
  --white: #ffffff;
  --off-white: #f5f7fa;
  --text-dark: #1a1f2e;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: #e2e8f0;
  --gold: #f6c90e;
  --success: #38a169;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.13);
  --radius: 10px;
  --radius-lg: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.7;
  font-size: 16px;
}

/* ---- HEADER ---- */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo-text span { color: var(--accent); }

nav { display: flex; gap: 6px; align-items: center; }

nav a {
  color: #c8d8ee;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.2s, color 0.2s;
}

nav a:hover, nav a.active {
  background: rgba(74,158,255,0.15);
  color: var(--accent-light);
}

/* ---- DISCLOSURE BANNER ---- */
.disclosure {
  background: #f0f7ff;
  border-bottom: 1px solid #bee3f8;
  text-align: center;
  padding: 8px 24px;
  font-size: 13px;
  color: var(--text-mid);
}

.disclosure strong { color: var(--navy); }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1e3a5f 100%);
  color: var(--white);
  padding: 80px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(74,158,255,0.07);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(74,158,255,0.05);
}

.hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  background: rgba(74,158,255,0.18);
  border: 1px solid rgba(74,158,255,0.35);
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--white);
}

.hero h1 em { color: var(--accent-light); font-style: normal; }

.hero p {
  font-size: 18px;
  color: #a8c4e4;
  max-width: 580px;
  margin: 0 auto 32px;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(74,158,255,0.35);
}

.btn-primary:hover {
  background: #3a8eef;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74,158,255,0.45);
}

/* ---- SECTION ---- */
.section { padding: 72px 24px; }
.section-alt { background: var(--white); }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 50px; }

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

/* ---- PRODUCT GRID ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
  border: 1px solid var(--border);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrap {
  background: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  height: 230px;
  overflow: hidden;
}

.product-img-wrap img {
  max-width: 100%;
  max-height: 174px;
  object-fit: contain;
  transition: transform 0.3s;
}

.product-card:hover .product-img-wrap img { transform: scale(1.04); }

.product-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }

.product-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.product-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
}

.product-body p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; }
.stars span { color: var(--text-light); font-size: 13px; margin-left: 4px; }

.btn-buy {
  display: block;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s;
}

.btn-buy:hover { background: var(--accent); transform: translateY(-1px); }

.amazon-note {
  font-size: 11px;
  color: var(--text-light);
  text-align: center;
  margin-top: 8px;
}

/* ---- FEATURES STRIP ---- */
.features-strip {
  background: var(--navy);
  padding: 32px 24px;
  color: var(--white);
}

.features-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  justify-content: space-around;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #a8c4e4;
}

.feature-item span:first-child { font-size: 22px; }
.feature-item strong { color: var(--white); display: block; font-size: 14px; }

/* ---- ABOUT SECTION ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.25;
}

.about-text p { color: var(--text-mid); margin-bottom: 16px; font-size: 16px; }

.about-img {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  color: var(--white);
}

.about-img .big-stat {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}

.about-img p { color: #a8c4e4; margin-top: 8px; }

/* ---- PAGE HEADER (interior pages) ---- */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 50px 24px;
  text-align: center;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  margin-bottom: 10px;
}

.page-header p { color: #a8c4e4; font-size: 16px; }

/* ---- BLOG ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.blog-card-img {
  background: linear-gradient(135deg, #1a2d45 0%, #243b55 100%);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.blog-card-body { padding: 22px 24px; }

.blog-meta {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.blog-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card-body p { font-size: 14px; color: var(--text-mid); margin-bottom: 16px; }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover { background: var(--accent); color: var(--white); }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-detail .icon {
  width: 42px; height: 42px;
  background: #eef4ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail div strong { display: block; color: var(--navy); font-size: 14px; margin-bottom: 2px; }
.contact-detail div span { color: var(--text-mid); font-size: 14px; }

/* ---- PROSE (policy pages) ---- */
.prose {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 24px;
}

.prose h1 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: var(--navy);
  margin-bottom: 8px;
}

.prose .last-updated { color: var(--text-light); font-size: 13px; margin-bottom: 36px; }

.prose h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
  margin: 36px 0 12px;
}

.prose p { color: var(--text-mid); margin-bottom: 16px; font-size: 15px; line-height: 1.75; }
.prose a { color: var(--accent); }

/* ---- FOOTER ---- */
footer {
  background: var(--navy);
  color: #a8c4e4;
  padding: 56px 24px 28px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 12px; color: #7a9cc4; }

.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: #7a9cc4;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--accent-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 13px; color: #5a7a9a; }

.affiliate-disclaimer {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: 13px;
  color: #7a9cc4;
  line-height: 1.6;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav a { padding: 7px 10px; font-size: 13px; }
}

@media (max-width: 620px) {
  .footer-grid { grid-template-columns: 1fr; }
  nav { gap: 2px; }
  nav a { font-size: 12px; padding: 6px 8px; }
  .logo-text { font-size: 20px; }
}
