:root {
  --brand: #1F5C4D;
  --bg: #FAF7F2;
  --ink: #22312D;
  --muted: #6B7A75;
  --card: #FFFFFF;
  --accent: #3E8E8C;
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Tajawal', 'Segoe UI', Tahoma, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.latin { font-family: 'Poppins', 'Tajawal', sans-serif; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* Header */
header {
  background: var(--card);
  border-bottom: 1px solid #EDE7DD;
  position: sticky; top: 0; z-index: 50;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 1.5rem; color: var(--brand);
  text-decoration: none; letter-spacing: -0.5px;
}
.logo span { color: #3E8E8C; }
.logo small {
  display: block; font-family: 'Tajawal', sans-serif; font-weight: 400;
  font-size: 0.72rem; color: var(--muted); letter-spacing: 0;
}
.nav-cta {
  background: var(--brand); color: #fff; text-decoration: none;
  padding: 10px 22px; border-radius: 999px; font-weight: 700; font-size: 0.95rem;
}

/* Hero */
.hero { padding: 56px 0 40px; text-align: center; }
.hero h1 { font-size: clamp(1.6rem, 4.5vw, 2.6rem); font-weight: 800; color: var(--brand); }
.hero p.sub { font-size: 1.1rem; color: var(--muted); max-width: 620px; margin: 14px auto 0; }
.hero .badges {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 26px;
}
.badge {
  background: var(--card); border: 1px solid #E5DFD3; border-radius: 999px;
  padding: 8px 18px; font-size: 0.92rem; font-weight: 500; color: var(--ink);
}

/* Product grid */
.grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px; padding: 30px 0 50px;
}
.card {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  border: 1px solid #EDE7DD; display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(31,92,77,.10); }
.card a.body { text-decoration: none; color: inherit; flex: 1; display: flex; flex-direction: column; }
.card .visual { padding: 26px 0 18px; display: flex; justify-content: center; }
.card .info { padding: 0 20px 18px; text-align: center; }
.card h3 { color: var(--brand); font-size: 1.2rem; }
.card .fr { font-size: 0.85rem; color: var(--muted); font-family: 'Poppins', sans-serif; }
.card .tag { font-size: 0.95rem; margin-top: 6px; }
.card .price { font-weight: 800; font-size: 1.25rem; color: var(--brand); margin-top: 10px; }
.card .price small { font-weight: 400; font-size: .8rem; color: var(--muted); }
.card .order-link {
  display: block; text-align: center; margin: 0 20px 20px;
  background: var(--brand); color: #fff; text-decoration: none;
  padding: 11px 0; border-radius: 999px; font-weight: 700;
}

/* CSS bottle mockup */
.bottle { width: 96px; position: relative; filter: drop-shadow(0 8px 14px rgba(0,0,0,.12)); }
.bottle .cap { height: 26px; background: var(--brand); border-radius: 8px 8px 2px 2px; margin: 0 14px; }
.bottle .neck { height: 7px; background: #E9E4DA; margin: 0 10px; }
.bottle .jar {
  background: #fff; border: 1px solid #E5DFD3; border-radius: 10px;
  padding: 10px 6px 12px; text-align: center;
}
.bottle .brandline { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .62rem; color: var(--brand); }
.bottle .band { color: #fff; font-size: .62rem; font-weight: 700; border-radius: 4px; padding: 3px 2px; margin: 5px 0; }
.bottle .cnt { font-size: .55rem; color: var(--muted); }
.bottle.lg { width: 150px; }
.bottle.lg .cap { height: 38px; margin: 0 22px; }
.bottle.lg .jar { padding: 16px 8px 18px; border-radius: 14px; }
.bottle.lg .brandline { font-size: .95rem; }
.bottle.lg .band { font-size: .95rem; padding: 6px 4px; margin: 9px 0; }
.bottle.lg .cnt { font-size: .8rem; }

/* Steps */
.steps { background: var(--card); border-radius: var(--radius); border: 1px solid #EDE7DD; padding: 34px 26px; margin-bottom: 50px; }
.steps h2, .section-title { text-align: center; color: var(--brand); font-size: 1.5rem; margin-bottom: 24px; }
.steps .row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; text-align: center; }
.step .num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.15rem;
  margin: 0 auto 10px;
}
.step b { display: block; margin-bottom: 4px; }
.step span { color: var(--muted); font-size: .95rem; }

/* Product page */
.product-hero { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: start; padding: 44px 0; }
@media (max-width: 760px) { .product-hero { grid-template-columns: 1fr; } }
.pv { background: var(--card); border: 1px solid #EDE7DD; border-radius: var(--radius); display: flex; justify-content: center; padding: 40px 0; }
.pd h1 { color: var(--brand); font-size: 1.8rem; line-height: 1.3; }
.pd .fr { font-family: 'Poppins', sans-serif; color: var(--muted); }
.pd .tagline { font-size: 1.15rem; margin: 10px 0 4px; }
.pd .contents { color: var(--muted); font-size: .95rem; }
.pd .price { font-size: 2rem; font-weight: 800; color: var(--brand); margin: 14px 0 2px; }
.pd .price small { font-size: .95rem; font-weight: 400; color: var(--muted); }
.pd ul.benefits { list-style: none; margin: 16px 0; }
.pd ul.benefits li { padding-right: 30px; position: relative; margin-bottom: 9px; }
.pd ul.benefits li::before {
  content: '✓'; position: absolute; right: 0; top: 0;
  color: var(--accent); font-weight: 800;
}
.usage { background: #F2EEE6; border-radius: 12px; padding: 12px 16px; font-size: .95rem; margin: 14px 0; }

/* Order form */
.order-box {
  background: var(--card); border: 2px solid var(--brand); border-radius: var(--radius);
  padding: 26px; margin: 10px 0 40px;
}
.order-box h2 { color: var(--brand); font-size: 1.3rem; margin-bottom: 6px; }
.order-box p.hint { color: var(--muted); font-size: .92rem; margin-bottom: 16px; }
.order-box label { display: block; font-weight: 700; font-size: .95rem; margin: 12px 0 5px; }
.order-box input, .order-box select {
  width: 100%; padding: 12px 14px; border: 1px solid #D8D2C6; border-radius: 10px;
  font-family: inherit; font-size: 1rem; background: #FDFCFA; color: var(--ink);
}
.order-box input:focus, .order-box select:focus { outline: 2px solid var(--brand); border-color: var(--brand); }
.order-box .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .order-box .row2 { grid-template-columns: 1fr; } }
.submit-btn {
  width: 100%; margin-top: 20px; background: var(--brand); color: #fff; border: none;
  padding: 15px; border-radius: 999px; font-family: inherit; font-weight: 800; font-size: 1.1rem;
  cursor: pointer; transition: opacity .15s;
}
.submit-btn:hover { opacity: .92; }
.submit-btn:disabled { opacity: .6; cursor: wait; }
.form-msg { margin-top: 14px; border-radius: 10px; padding: 14px; display: none; font-weight: 500; }
.form-msg.ok { display: block; background: #E8F5E9; color: #1B5E20; }
.form-msg.err { display: block; background: #FDECEA; color: #B71C1C; }
.hp-field { position: absolute; right: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* FAQ */
.faq { margin-bottom: 50px; }
.faq details {
  background: var(--card); border: 1px solid #EDE7DD; border-radius: 12px;
  padding: 14px 18px; margin-bottom: 10px;
}
.faq summary { font-weight: 700; cursor: pointer; }
.faq details p { margin-top: 8px; color: var(--muted); }

/* Footer */
footer { background: var(--brand); color: #DDE9E4; padding: 36px 0; margin-top: 20px; }
footer .flogo { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.3rem; color: #fff; }
footer .disclaimer {
  font-size: .85rem; line-height: 1.8; margin-top: 14px; opacity: .85; max-width: 760px;
}
footer .links { margin-top: 14px; font-size: .9rem; }
footer a { color: #fff; }
.back-home { display: inline-block; margin: 18px 0 0; color: var(--brand); font-weight: 700; text-decoration: none; }

/* Logo image */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.hero-logo { width: 180px; height: 180px; margin: 0 auto 6px; display: block; object-fit: contain; }
