/*
Theme Name: Peach Pop
Theme URI: https://example.com/
Author: LucidProg / WP Theme Agent
Author URI: https://example.com/
Description: A vibrant bath and beauty brand theme for Peach Pop. Features animated bubbles, gradient typography, and a warm peach-toned palette. Generated from a Figma design via LucidProg.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: peachpop
Tags: custom, responsive, one-page, e-commerce, beauty
*/

/* === Design Tokens === */
:root {
  --peach: #E8856A;
  --peach-light: #F5C9B8;
  --peach-pale: #FAF0EB;
  --cream: #FDF6F0;
  --gold: #D4A853;
  --coral: #C95C3E;
  --dark: #2A1A10;
  --mid: #7A4F3A;
}

/* === Reset & Base === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', Arial, sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* === NAV === */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(253,246,240,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,133,106,0.2);
}
.nav-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-style: italic;
  background: linear-gradient(135deg, #D4A853, #E8856A, #C95C3E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
}
.nav-links a:hover { color: var(--peach); }

/* WordPress nav menu overrides */
.nav-links .menu { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links .menu li { list-style: none; }
.nav-links .menu li a {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
}
.nav-links .menu li a:hover { color: var(--peach); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(150deg, #FAF0EB 0%, #F5C9B8 55%, #E8856A 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 140px;
  overflow: hidden;
}
.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  background: linear-gradient(135deg, #D4A853 0%, #E8856A 55%, #C95C3E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeDown 1s ease both;
}
.hero-sub {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 18px;
  animation: fadeDown 1.2s ease both;
}
.hero-body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-style: italic;
  line-height: 1.9;
  color: var(--mid);
  max-width: 620px;
  margin: 28px auto 0;
  animation: fadeUp 1.4s ease both;
}

/* === BUBBLES === */
.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%,
    rgba(255,255,255,0.75),
    rgba(200,160,220,0.25) 40%,
    rgba(130,200,240,0.15) 70%,
    transparent);
  border: 1px solid rgba(255,255,255,0.55);
  animation: floatUp linear infinite;
  pointer-events: none;
}
@keyframes floatUp {
  0%   { transform: translateY(0); opacity: 0; }
  8%   { opacity: 0.9; }
  92%  { opacity: 0.6; }
  100% { transform: translateY(-110vh); opacity: 0; }
}
.b1 { width:70px;  height:70px;  left:6%;   animation-duration:13s; animation-delay:0s;  }
.b2 { width:35px;  height:35px;  left:14%;  animation-duration:9s;  animation-delay:2s;  }
.b3 { width:55px;  height:55px;  left:2%;   animation-duration:15s; animation-delay:4s;  }
.b4 { width:110px; height:110px; right:4%;  animation-duration:17s; animation-delay:1s;  }
.b5 { width:45px;  height:45px;  right:17%; animation-duration:11s; animation-delay:3s;  }
.b6 { width:28px;  height:28px;  right:9%;  animation-duration:8s;  animation-delay:5s;  }

/* === WAVE === */
.wave-divider { width:100%; overflow:hidden; line-height:0; }
.wave-divider svg { display:block; width:100%; }

/* === SECTION HEADERS === */
.sec-header { text-align:center; padding: 90px 20px 50px; }
.sec-label {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--peach);
  font-weight: 500;
  margin-bottom: 10px;
}
.sec-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 400;
  color: var(--dark);
}
.light-text { color: #fff !important; }
.light-label { color: rgba(255,255,255,0.65) !important; }
.divider {
  width: 50px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--peach));
  margin: 18px auto 0;
  border-radius: 2px;
}
.divider-light { background: rgba(255,255,255,0.45) !important; }

/* === BATH BOMBS === */
.bombs-section {
  background: var(--peach);
  padding-bottom: 80px;
  overflow: hidden;
}
.bombs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1050px;
  margin: 40px auto 0;
  padding: 0 20px;
}
.bomb-card {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 22px;
  padding: 32px 24px;
  width: 180px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.bomb-card:hover { transform: translateY(-8px); box-shadow: 0 18px 36px rgba(0,0,0,0.18); }
.orb {
  width: 86px; height: 86px;
  border-radius: 50%;
  margin: 0 auto 18px;
  box-shadow:
    inset -8px -8px 18px rgba(0,0,0,0.18),
    inset 4px 4px 12px rgba(255,255,255,0.45),
    0 6px 20px rgba(0,0,0,0.22);
}
.orb-blue   { background: radial-gradient(circle at 35% 30%, #b0eaf8, #4ec8e0, #1a98b8); }
.orb-orange { background: radial-gradient(circle at 35% 30%, #ffd8a8, #f4a050, #d87020); }
.orb-teal   { background: radial-gradient(circle at 35% 30%, #c0f0e8, #68d4c4, #28a898); }
.orb-yellow { background: radial-gradient(circle at 35% 30%, #fffaaa, #ede040, #c8b000); }
.orb-pink   { background: radial-gradient(circle at 35% 30%, #f8c8e0, #d878a8, #b04080); }
.bomb-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.95rem;
  font-style: italic;
  color: #fff;
  line-height: 1.5;
}
.packs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 48px auto 0;
  padding: 0 20px;
}
.pack-badge {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 50px;
  padding: 13px 32px;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* === PRODUCT CARDS === */
.products-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 36px 90px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.pcard {
  background: #fff;
  border-radius: 18px;
  padding: 36px 28px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.07);
  border-top: 3px solid var(--peach-light);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pcard:hover { transform: translateY(-5px); box-shadow: 0 14px 34px rgba(0,0,0,0.1); }
.pcard-icon {
  font-size: 1.8rem;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--peach-light), var(--peach-pale));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.pcard h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 10px;
}
.pcard p { font-size: 0.88rem; line-height: 1.75; color: #7a6a60; }

/* === SOAPS === */
.soaps-section {
  background: linear-gradient(180deg, var(--peach-pale) 0%, var(--peach-light) 100%);
  padding-bottom: 90px;
}
.soaps-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}
.pill {
  background: linear-gradient(135deg, #fff, #fdf0e8);
  border: 1px solid var(--peach-light);
  border-radius: 100px;
  padding: 16px 32px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--coral);
  box-shadow: 0 3px 14px rgba(232,133,106,0.14);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pill:hover { transform: scale(1.06); box-shadow: 0 7px 22px rgba(232,133,106,0.24); }

/* === DIFFUSERS === */
.diff-section { background: #fff; padding-bottom: 90px; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 36px;
}
.dcard { border-radius: 22px; padding: 44px 32px; transition: transform 0.3s; }
.dcard:hover { transform: translateY(-6px); }
.dcard.d1 { background: linear-gradient(135deg, #ffe8ef, #ffd0e0); }
.dcard.d2 { background: linear-gradient(135deg, #fff3dc, #ffe4a0); }
.dcard.d3 { background: linear-gradient(135deg, #e8f5ff, #c8e8ff); }
.dcard h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--dark);
}
.dcard p { font-size: 0.88rem; line-height: 1.82; color: #6a5040; }

/* === STORE === */
.store-section {
  background: var(--peach);
  padding: 90px 20px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.store-desc {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  max-width: 580px;
  margin: 28px auto 0;
  line-height: 2;
}
.quotes-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin: 48px auto 0;
  padding: 0 20px;
}
.quote-card {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 14px;
  padding: 28px 34px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #fff;
  max-width: 280px;
}

/* === FOOTER === */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 56px 20px;
  font-size: 0.83rem;
  letter-spacing: 0.08em;
}
.footer-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-style: italic;
  background: linear-gradient(135deg, #D4A853, #E8856A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 14px;
}

/* === PAGE / POST CONTENT === */
.site-main { padding: 120px 40px 60px; max-width: 900px; margin: 0 auto; }
.page-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  color: var(--coral);
  margin-bottom: 24px;
}
.entry-content { font-size: 1rem; line-height: 1.8; color: var(--mid); }
.entry-content p { margin-bottom: 1.2em; }
.entry-content h2, .entry-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--dark);
  margin: 1.5em 0 0.5em;
}

/* === 404 === */
.error-404 { text-align: center; padding: 160px 40px; }
.error-404 h1 { font-family: 'Playfair Display', Georgia, serif; font-size: 3rem; color: var(--coral); margin-bottom: 20px; }
.error-404 p { color: var(--mid); margin-bottom: 30px; }
.error-404 a {
  background: var(--peach);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* === ANIMATIONS === */
@keyframes fadeDown {
  from { opacity:0; transform:translateY(-20px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.on { opacity:1; transform:translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 640px) {
  nav { padding: 14px 16px; }
  .nav-links { gap: 12px; }
  .nav-links a { font-size: 0.62rem; }
  .products-wrap, .diff-grid { padding: 0 16px 60px; }
  .site-main { padding: 100px 20px 40px; }
}
