/* ============================================
   ONDE STORE — Apple-Premium Design System
   Dark/Light alternance + Gold accents
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #0a0a0a;
  --bg-dark-2: #111111;
  --bg-light: #f8f6f3;
  --bg-cream: #faf8f5;
  --bg-white: #ffffff;
  --gold: #c9a96e;
  --gold-light: #d4b87a;
  --gold-dark: #a88a4e;
  --text-dark: #1a1a1a;
  --text-light: #f5f5f5;
  --text-muted: #999999;
  --text-muted-dark: #666666;
  --olive: #7a8b6f;
  --olive-light: #95a888;
  --sage: #b5c4a8;
  --border-light: rgba(201, 169, 110, 0.2);
  --border-dark: rgba(201, 169, 110, 0.15);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: var(--transition);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dark);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav-logo span { font-weight: 600; }
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: var(--transition);
}
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-links a.active { color: var(--gold); opacity: 1; }

/* Mobile menu */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-light); transition: var(--transition); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.7), rgba(10,10,10,0.4));
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  filter: saturate(0.8);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-gold {
  background: var(--gold);
  color: var(--bg-dark);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--bg-dark); }
.btn-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}
.btn-dark:hover { background: #222; transform: translateY(-2px); }
.btn-white {
  background: var(--bg-white);
  color: var(--bg-dark);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 6rem 2rem; }
.section-dark { background: var(--bg-dark); color: var(--text-light); }
.section-dark2 { background: var(--bg-dark-2); color: var(--text-light); }
.section-light { background: var(--bg-light); }
.section-cream { background: var(--bg-cream); }
.section-white { background: var(--bg-white); }
.container { max-width: var(--max-width); margin: 0 auto; }

.section-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.section-dark .section-title { color: var(--text-light); }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted-dark);
  max-width: 600px;
  line-height: 1.8;
}
.section-dark .section-subtitle { color: var(--text-muted); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Gold separator */
.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.gold-line.center { margin: 1.5rem auto; }

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-card {
  background: var(--bg-white);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid #eee;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.product-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-image img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.05); }
.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}
.product-card-body { padding: 1.5rem; }
.product-card-category {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.product-card-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}
.product-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.product-card-price {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold-dark);
  font-weight: 600;
}
.product-card-price .old-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1rem;
  margin-right: 0.5rem;
  font-weight: 400;
}
.product-card-btn {
  display: block;
  text-align: center;
  padding: 0.8rem;
  background: var(--bg-dark);
  color: var(--text-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 1rem;
  transition: var(--transition);
}
.product-card-btn:hover { background: var(--gold); color: var(--bg-dark); }

/* ============================================
   FEATURE CARDS (for the story/benefits)
   ============================================ */
.feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.feature-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  line-height: 1.7;
}
.section-dark .feature-card p { color: var(--text-muted); }

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial {
  text-align: center;
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
}
.testimonial-text {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.testimonial-author {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* ============================================
   ABOUT / STORY SECTION
   ============================================ */
.story-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  margin: 15px;
  pointer-events: none;
  opacity: 0.3;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: var(--gold);
  padding: 3rem 2rem;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--bg-dark);
  margin-bottom: 1rem;
}
.cta-band p {
  color: rgba(0,0,0,0.6);
  margin-bottom: 1.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--border-dark);
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer ul li { margin-bottom: 0.8rem; }
.footer ul a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer ul a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-dark);
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   INGREDIENT HIGHLIGHT
   ============================================ */
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.ingredient-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}
.ingredient-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.ingredient-card .emoji { font-size: 2.5rem; margin-bottom: 1rem; }
.ingredient-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--text-light);
}
.ingredient-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 1.5rem 0;
}
.faq-question {
  font-family: var(--serif);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  transition: var(--transition);
}
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  line-height: 1.8;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 1rem;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  font-family: var(--sans);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  background: transparent;
  transition: var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form textarea { min-height: 150px; resize: vertical; }

/* ============================================
   PAGE HEADER (subpages)
   ============================================ */
.page-header {
  background: var(--bg-dark);
  padding: 8rem 2rem 4rem;
  text-align: center;
}
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.page-header p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-dark);
  }
}
@media (max-width: 640px) {
  .section { padding: 4rem 1.5rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.5rem; }
  .product-card-image { height: 220px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }
