/* === HEALTHCODE WELLNESS IKORODU === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;900&family=Nunito:wght@400;500;600;700;800&display=swap');

:root {
  --brown: #2C1A0E;
  --orange: #E85D04;
  --orange-light: #FF7A2F;
  --orange-dark: #C44D00;
  --cream: #FFF8F0;
  --cream2: #FFF0E0;
  --white: #FFFFFF;
  --gray: #6B7280;
  --light-gray: #F3F4F6;
  --text: #1A0A00;
  --shadow: 0 4px 24px rgba(232,93,4,0.12);
  --shadow-lg: 0 8px 40px rgba(44,26,14,0.18);
  --radius: 16px;
  --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* === NAVBAR === */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(44,26,14,0.08);
  position: sticky; top: 0; z-index: 1000;
  padding: 0 5%;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 48px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--brown); line-height: 1.2;
}
.nav-logo-text span:last-child {
  font-size: 0.72rem; color: var(--orange); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--brown); font-weight: 600; font-size: 0.95rem;
  transition: color 0.2s; position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--orange); transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-wa {
  display: flex; align-items: center; gap: 8px;
  background: #25D366; color: white; text-decoration: none;
  padding: 10px 18px; border-radius: 30px;
  font-weight: 700; font-size: 0.88rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}
.nav-wa:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.nav-wa svg { width: 18px; height: 18px; fill: white; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2.5px; background: var(--brown); border-radius: 2px; transition: 0.3s; }

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--brown) 0%, #4A2810 60%, var(--orange-dark) 100%);
  color: white; padding: 80px 5% 60px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,93,4,0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,122,47,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,93,4,0.2); border: 1px solid rgba(232,93,4,0.4);
  color: #FFB380; padding: 6px 16px; border-radius: 30px;
  font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900;
  line-height: 1.15; margin-bottom: 20px;
}
.hero h1 span { color: var(--orange-light); }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 480px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: white;
  padding: 14px 28px; border-radius: 40px; text-decoration: none;
  font-weight: 800; font-size: 1rem; transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(232,93,4,0.35);
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,93,4,0.45); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.5); color: white;
  padding: 14px 28px; border-radius: 40px; text-decoration: none;
  font-weight: 700; font-size: 1rem; transition: all 0.25s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: white; }
.hero-img { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-img img {
  width: 100%; max-width: 480px; border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transform: rotate(2deg);
}
.hero-stats {
  display: flex; gap: 24px; margin-top: 40px; flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; color: var(--orange-light); line-height: 1; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; }

/* === SECTION HEADER === */
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block; background: rgba(232,93,4,0.1); color: var(--orange);
  padding: 6px 18px; border-radius: 30px; font-size: 0.82rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: var(--brown);
}
.section-header p { color: var(--gray); max-width: 520px; margin: 12px auto 0; }

/* === BENEFITS BAR === */
.benefits-bar { background: var(--brown); padding: 20px 5%; }
.benefits-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 16px;
}
.benefit-item { display: flex; align-items: center; gap: 10px; color: white; }
.benefit-item .icon { font-size: 1.3rem; }
.benefit-item span { font-weight: 600; font-size: 0.9rem; }

/* === FEATURED PRODUCTS === */
.featured { padding: 80px 5%; }
.featured-inner { max-width: 1200px; margin: 0 auto; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

/* === PRODUCT CARD === */
.product-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
  position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; background: var(--cream2);
}
.card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .card-img img { transform: scale(1.05); }
.card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--orange); color: white;
  padding: 4px 12px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
}
.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--brown);
  margin-bottom: 6px; line-height: 1.3;
}
.card-body p { font-size: 0.82rem; color: var(--gray); margin-bottom: 16px; flex: 1; }
.card-price { margin-bottom: 16px; }
.price-retail { font-size: 1.3rem; font-weight: 800; color: var(--orange); }
.price-label { font-size: 0.75rem; color: var(--gray); }
.btn-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366; color: white; text-decoration: none;
  padding: 12px; border-radius: var(--radius-sm);
  font-weight: 800; font-size: 0.9rem; transition: all 0.25s;
  border: none; cursor: pointer; width: 100%;
}
.btn-whatsapp:hover { background: #1EB858; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,211,102,0.35); }
.btn-whatsapp svg { width: 20px; height: 20px; fill: white; flex-shrink: 0; }

/* === TRUST SECTION === */
.trust { background: var(--brown); padding: 70px 5%; }
.trust-inner { max-width: 1200px; margin: 0 auto; }
.trust .section-header h2 { color: white; }
.trust .section-tag { background: rgba(232,93,4,0.25); color: var(--orange-light); }
.trust .section-header p { color: rgba(255,255,255,0.7); }
.trust-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px;
}
.trust-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 28px; text-align: center; color: white;
  transition: background 0.3s;
}
.trust-card:hover { background: rgba(232,93,4,0.15); }
.trust-icon { font-size: 2.5rem; margin-bottom: 14px; }
.trust-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.trust-card p { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* === CTA STRIP === */
.cta-strip {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 60px 5%; text-align: center; color: white;
}
.cta-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; margin-bottom: 14px;
}
.cta-strip p { font-size: 1rem; margin-bottom: 28px; opacity: 0.9; }
.btn-wa-big {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; color: #1A6B3A; text-decoration: none;
  padding: 16px 36px; border-radius: 40px;
  font-weight: 800; font-size: 1.05rem; transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.btn-wa-big:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.25); }
.btn-wa-big svg { width: 22px; height: 22px; fill: #25D366; }

/* === ABOUT PAGE === */
.about-hero { background: var(--brown); padding: 70px 5%; color: white; }
.about-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img img { width: 100%; border-radius: 20px; box-shadow: 0 16px 50px rgba(0,0,0,0.4); }
.about-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 700; margin-bottom: 16px; line-height: 1.2; }
.about-content p { color: rgba(255,255,255,0.85); margin-bottom: 16px; font-size: 0.97rem; }

.values { padding: 80px 5%; background: var(--white); }
.values-inner { max-width: 1200px; margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.value-card { background: var(--cream); border-radius: var(--radius); padding: 28px; text-align: center; border: 2px solid transparent; transition: border-color 0.3s; }
.value-card:hover { border-color: var(--orange); }
.value-icon { font-size: 2.5rem; margin-bottom: 14px; }
.value-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--brown); margin-bottom: 8px; }
.value-card p { font-size: 0.85rem; color: var(--gray); }

/* === CONTACT PAGE === */
.contact-section { padding: 80px 5%; }
.contact-inner { max-width: 1000px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-card { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.contact-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--brown); margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-item .icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-item div strong { display: block; font-weight: 700; color: var(--brown); margin-bottom: 2px; }
.contact-item div span { font-size: 0.88rem; color: var(--gray); }
.social-links { display: flex; gap: 14px; margin-top: 16px; }
.social-link {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 30px; text-decoration: none;
  font-weight: 700; font-size: 0.88rem; transition: all 0.25s;
}
.social-link.fb { background: #1877F2; color: white; }
.social-link.ig { background: linear-gradient(135deg, #f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: white; }
.social-link:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.2); }
.map-placeholder {
  background: var(--cream2); border-radius: var(--radius-sm);
  height: 200px; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px; margin-top: 16px; border: 2px dashed rgba(232,93,4,0.2);
}
.map-placeholder span { font-size: 2rem; }
.map-placeholder p { font-size: 0.85rem; color: var(--gray); text-align: center; padding: 0 16px; }

/* === THANK YOU PAGE === */
.thankyou { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 80px 5%; }
.thankyou-card {
  background: var(--white); border-radius: 24px; padding: 60px 48px; text-align: center;
  max-width: 560px; width: 100%; box-shadow: var(--shadow-lg);
}
.thankyou-icon { font-size: 5rem; margin-bottom: 20px; }
.thankyou-card h1 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--brown); margin-bottom: 14px; }
.thankyou-card p { color: var(--gray); margin-bottom: 8px; }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--brown) 0%, #4A2810 100%);
  padding: 60px 5%; color: white; text-align: center;
}
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 700; }
.page-hero p { color: rgba(255,255,255,0.8); margin-top: 10px; font-size: 1rem; }

/* === SHOP FILTERS === */
.shop-section { padding: 60px 5%; }
.shop-inner { max-width: 1200px; margin: 0 auto; }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  padding: 8px 20px; border-radius: 30px; border: 2px solid rgba(232,93,4,0.3);
  background: white; color: var(--brown); font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: 0.88rem; cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--orange); color: white; border-color: var(--orange); }

/* === FOOTER === */
footer { background: var(--brown); color: rgba(255,255,255,0.85); padding: 60px 5% 30px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin: 14px 0; max-width: 280px; line-height: 1.7; }
.footer-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.footer-logo img { height: 44px; filter: brightness(10); }
.footer-logo-text span:first-child { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: white; display: block; }
.footer-logo-text span:last-child { font-size: 0.7rem; color: var(--orange-light); letter-spacing: 0.08em; text-transform: uppercase; }
footer h4 { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange-light); margin-bottom: 16px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul li a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
footer ul li a:hover { color: var(--orange-light); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 1rem; transition: background 0.2s;
}
.footer-social a:hover { background: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: gap;
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
}

/* === PIXEL HELPER === */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: #25D366; width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45); text-decoration: none;
  animation: pulse-wa 2s infinite;
}
.wa-float svg { width: 30px; height: 30px; fill: white; }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.7); }
}

/* === ANIMATIONS === */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s, transform 0.6s; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* === MOBILE === */
@media (max-width: 768px) {
  .nav-links, .nav-wa { display: none; }
  .hamburger { display: flex; }
  .mobile-menu {
    display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--white); z-index: 999; flex-direction: column; padding: 32px 5%;
    gap: 24px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { font-size: 1.3rem; font-weight: 700; color: var(--brown); text-decoration: none; padding: 10px 0; border-bottom: 1px solid var(--cream2); }
  .mobile-menu .nav-wa { display: flex; width: fit-content; margin-top: 8px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-stats { gap: 16px; }
}
