@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --green-dark: #1a3d1f;
  --green-mid: #2e6b35;
  --green-bright: #4caf50;
  --gold: #d4a017;
  --gold-light: #f5c842;
  --cream: #fdf8ef;
  --text-dark: #1a1a1a;
  --text-muted: #5a5a5a;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(26,61,31,0.10);
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text-dark); min-height: 100vh; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--green-dark);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  height: 68px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 42px; border-radius: 8px; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--gold-light); letter-spacing: 1px; line-height: 1.1; }
.nav-logo-sub { font-size: 0.65rem; color: #b5e5b8; letter-spacing: 3px; text-transform: uppercase; }
.nav-links { display: flex; gap: 0.2rem; list-style: none; }
.nav-links a {
  color: #d4f5d7; text-decoration: none; font-size: 0.92rem; font-weight: 500;
  padding: 8px 14px; border-radius: 6px; transition: background 0.2s, color 0.2s;
  letter-spacing: 0.3px;
}
.nav-links a:hover, .nav-links a.active { background: var(--green-mid); color: var(--gold-light); }
.nav-cta {
  background: #e8e82b; color: #ec0606;
  text-decoration: none; font-weight: 700; font-size: 0.9rem;
  padding: 9px 20px; border-radius: 8px; transition: background 0.2s;
  white-space: nowrap; margin-left: 1rem;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-hamburger span { width: 26px; height: 2px; background: var(--gold-light); border-radius: 2px; transition: 0.3s; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, #3d8b45 100%);
  color: white; padding: 10px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { max-width: 1100px; margin: 0 auto; position: relative; }
.hero-badge { display: inline-block; background: var(--gold); color: var(--green-dark); font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 16px; border-radius: 20px; margin-bottom: 1.2rem; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem,5vw,3.8rem); font-weight: 900; line-height: 1.1; margin-bottom: 1rem; }
.hero h1 span { color: var(--gold-light); }
.hero p { font-size: 1.1rem; color: #c8e6ca; max-width: 580px; margin-bottom: 2rem; line-height: 1.7; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--green-dark); font-weight: 700;
  padding: 13px 28px; border-radius: 10px; text-decoration: none; font-size: 1rem;
  transition: background 0.2s, transform 0.15s; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-secondary {
  background: rgba(255,255,255,0.12); color: white; font-weight: 600;
  padding: 13px 28px; border-radius: 10px; text-decoration: none; font-size: 1rem;
  border: 1.5px solid rgba(255,255,255,0.3); transition: background 0.2s;
  display: inline-block;
}
.btn-secondary:hover { background: rgba(255,255,255,0.22); }

/* STATS BAR */
.stats-bar { background: var(--green-dark); padding: 2rem 2.5rem; }
.stats-bar-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat-item .num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--gold-light); }
.stat-item .label { font-size: 0.85rem; color: #b5e5b8; margin-top: 2px; }

/* SECTION */
section { padding:20px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag { display: inline-block; background: #e8f5e9; color: var(--green-mid); font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 0.8rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; color: var(--green-dark); margin-bottom: 0.8rem; line-height: 1.2; }
.section-title span { color: var(--green-bright); }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; line-height: 1.7; margin-bottom: 2.5rem; }

/* CARDS */
.card-grid { display: grid; gap: 1.5rem; }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card-grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card {
  background: white; border-radius: 16px; padding: 2rem; box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,61,31,0.15); }
.card-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }

/* FOOTER */
footer {
  background: var(--green-dark); color: #b5e5b8;
  padding: 3rem 2.5rem 2rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand .brand-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold-light); margin-bottom: 0.4rem; }
.footer-brand p { font-size: 0.9rem; color: #9dcfa0; line-height: 1.7; margin-bottom: 1rem; }
.footer h4 { color: var(--gold-light); font-size: 0.85rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1rem; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer ul li a { color: #9dcfa0; text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer ul li a:hover { color: var(--gold-light); }
.footer-bottom { max-width: 1100px; margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 0.85rem; color: #6fae72; }

/* CONTACT FORM */
.contact-form { background: white; border-radius: 20px; padding: 2.5rem; box-shadow: var(--shadow); }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--green-dark); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid #d0e8d2; border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--text-dark);
  transition: border 0.2s; outline: none; background: #f8fdf8;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green-bright); }
.form-group textarea { min-height: 100px; resize: vertical; }
.btn-submit {
  width: 100%; background: var(--green-dark); color: white;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700;
  padding: 14px; border: none; border-radius: 10px; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover { background: var(--green-mid); transform: translateY(-2px); }

/* WA FLOAT */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: #25d366; color: white; border-radius: 50%;
  width: 58px; height: 58px; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s; animation: wapulse 2s infinite;
}
.wa-float:hover { transform: scale(1.12); }
@keyframes wapulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.4)} 50%{box-shadow:0 4px 32px rgba(37,211,102,0.7)} }

/* TAG pills */
.pill { display: inline-block; background: #e8f5e9; color: var(--green-mid); font-size: 0.8rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; margin: 3px; }
.pill-gold { background: #fff8e1; color: #8a6200; }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 0 1.2rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--green-dark); padding: 1rem; gap: 0.3rem; }
  section { padding: 3rem 1.2rem; }
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 1.2rem 3rem; }
}

.dropdown{position:relative;}
.dropdown-content{display:none;position:absolute;background:#1f4d25;min-width:220px;top:100%;left:0;border-radius:10px;padding:10px;box-shadow:var(--shadow);}
.dropdown-content a{display:block;margin:4px 0;}
.dropdown:hover .dropdown-content{display:block;}
.social-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:20px;
}

.social-links a{
  display:flex;
  align-items:center;
  gap:10px;
  background:#e5e51f;
  color:#ff0000;
  padding:14px 22px;
  border-radius:14px;
  text-decoration:none;
  font-weight:700;
  font-size:18px;
  transition:0.3s;
  animation: blinkGlow 1.2s infinite;
}

.social-links a:hover{
  transform:translateY(-4px) scale(1.05);
}

.social-links img{
  width:30px;
  height:30px;
}

@keyframes blinkGlow{
  0%{
    opacity:1;
    box-shadow:0 0 2px #e09704;
  }

  80%{
    opacity:0.75;
    box-shadow:0 0 5px #e09a03,
               0 0 7px #d89c03;
  }

  100%{
    opacity:1;
    box-shadow:0 0 2px #bc9706;
  }
}

.social-links a:hover{
  background:#2e6b39;
  transform:translateY(-2px);
}

.social-links img{
  width:20px;
  height:20px;
}
.product-detail-card{background:white;border-radius:18px;padding:2rem;box-shadow:var(--shadow);display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:center;margin-bottom:2rem;}
.product-detail-card img{width:100%;max-width:320px;border-radius:16px;}
@media(max-width:768px){.product-detail-card{grid-template-columns:1fr;}}
