@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800;900&display=swap');

:root {
  --blush: #fce8e8;
  --light-blush: #fef5f5;
  --rose: #e8879a;
  --rose-light: #f5b8c4;
  --gold: #f5a832;
  --gold-light: #fcd280;
  --peach: #e8834a;
  --peach-light: #f5b08a;
  --white: #ffffff;
  --text-dark: #4a2c1a;
  --text-mid: #7a5040;
  --text-light: #a07060;
  --shadow: 0 4px 20px rgba(232, 131, 74, 0.12);
  --shadow-hover: 0 10px 36px rgba(232, 131, 74, 0.24);
  --radius: 20px;
  --radius-sm: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--light-blush);
  color: var(--text-dark);
  line-height: 1.7;
}

/* ── NAVIGATION ── */
nav {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(232, 135, 154, 0.13);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.logo img { height: 52px; width: auto; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--peach); }

.nav-links .nav-shop {
  background: linear-gradient(135deg, var(--gold), var(--peach));
  color: white !important;
  padding: 0.55rem 1.5rem;
  border-radius: 50px;
  transition: all 0.2s !important;
}

.nav-links .nav-shop:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(232, 131, 74, 0.38);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--peach);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--peach));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(232, 131, 74, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(232, 131, 74, 0.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--peach);
  border: 2px solid var(--rose-light);
}

.btn-secondary:hover {
  background: var(--blush);
  transform: translateY(-2px);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(180deg, var(--white) 0%, var(--blush) 100%);
  padding: 4rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-logo {
  width: 180px;
  height: auto;
  margin: 0 auto 2rem;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(245, 168, 50, 0.25));
}

/* CSS sunrise fallback if no logo image */
.hero-sun-svg {
  margin: 0 auto 2rem;
  display: block;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--peach);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.hero-tagline {
  font-size: 1.2rem;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
}

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }

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

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--peach);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  font-weight: 600;
}

/* ── PRODUCT CARDS ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  text-decoration: none;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
}

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

.product-card-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
}

.product-card-image.lip-balm   { background: linear-gradient(135deg, #fce8ee, #f9cdd8); }
.product-card-image.room-spray { background: linear-gradient(135deg, #fef2d8, #fde2b0); }
.product-card-image.body-mist  { background: linear-gradient(135deg, #e8f0fe, #d0e4f8); }
.product-card-image.hand-cream { background: linear-gradient(135deg, #f0fce8, #d8f0c8); }

.product-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--peach);
  margin-bottom: 0.4rem;
}

.product-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  flex: 1;
  margin-bottom: 1.2rem;
}

.product-tag {
  display: inline-block;
  background: var(--blush);
  color: var(--rose);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── RANGES ── */
.ranges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.range-card {
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.range-card.kids   { background: linear-gradient(145deg, #fce8f0, #fcd0e0); }
.range-card.tweens { background: linear-gradient(145deg, #fef2d8, #fde2b0); }
.range-card.teens  { background: linear-gradient(145deg, #f0d8fe, #e2c8f8); }

.range-card .range-emoji {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  display: block;
}

.range-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--peach);
  margin-bottom: 0.25rem;
}

.range-age {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: block;
}

.range-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
}

.range-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: white;
  color: var(--rose);
  font-size: 0.68rem;
  font-weight: 900;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── BRAND STRIP ── */
.brand-strip {
  background: var(--white);
  padding: 3rem 2rem;
  text-align: center;
}

.brand-strip-inner {
  max-width: 700px;
  margin: 0 auto;
}

.brand-strip h2 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--peach);
  margin-bottom: 1rem;
}

.brand-strip p {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* ── VALUES ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.value-item h4 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--peach);
  margin-bottom: 0.4rem;
}

.value-item p {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ── NEWSLETTER ── */
.newsletter {
  background: linear-gradient(135deg, var(--rose), var(--peach));
  color: white;
  text-align: center;
  padding: 5rem 2rem;
}

.newsletter h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.newsletter p {
  opacity: 0.9;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.newsletter-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  outline: none;
  color: var(--text-dark);
}

.newsletter-form button {
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 0.9rem 1.8rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.newsletter-form button:hover {
  background: #e09820;
  transform: translateY(-2px);
}

/* ── SHOP PAGE ── */
.page-hero {
  background: linear-gradient(135deg, var(--blush), var(--white));
  padding: 3.5rem 2rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--peach);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--text-mid);
  font-size: 1.05rem;
  font-weight: 600;
}

.shop-filters {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  border: 2px solid var(--rose-light);
  background: var(--white);
  color: var(--text-mid);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--peach));
  color: white;
  border-color: transparent;
}

.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.shop-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.shop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.shop-card-img {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.shop-card-body { padding: 1.25rem 1.5rem; }

.shop-card-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.shop-card-body .scent {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.shop-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem 1.25rem;
}

.price {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--peach);
}

.add-btn {
  background: linear-gradient(135deg, var(--gold), var(--peach));
  color: white;
  border: none;
  border-radius: 50px;
  padding: 0.45rem 1.2rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.add-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(232,131,74,0.35);
}

/* ── ABOUT PAGE ── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-story-text h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--peach);
  margin-bottom: 1rem;
}

.about-story-text p {
  color: var(--text-mid);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.about-image-placeholder {
  background: linear-gradient(145deg, var(--blush), var(--gold-light));
  border-radius: var(--radius);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--peach);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-mid);
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--text-mid);
}

.contact-detail .icon {
  width: 40px;
  height: 40px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 2px solid var(--blush);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  background: var(--light-blush);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--rose);
  background: white;
}

.form-group textarea { height: 130px; resize: vertical; }

/* ── FOOTER ── */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding: 3.5rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  opacity: 0.65;
  margin-top: 1rem;
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 700;
  font-style: italic;
  margin-top: 0.5rem !important;
  opacity: 0.9 !important;
}

.footer-col h4 {
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-logo {
  height: 48px;
  filter: brightness(0) invert(1) opacity(0.85);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.45;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 74px;
    left: 0; right: 0;
    background: white;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  section { padding: 3rem 1.5rem; }
  .hero { padding: 3rem 1.5rem 4rem; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
}
