/* ============================================================
   GREEN FIELDS OVERSEAS — HORUS FORMULA4 PAGE STYLES
   ============================================================ */

:root {
  --hblue:   #0A1C3E;
  --hblue-m: #1A3560;
  --hblue-l: #243d70;
}

/* ── BANNER STRIP ── */
.horus-banner {
  width: 100%;
  overflow: hidden;
  max-height: 260px;
}
.horus-banner img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* ── HERO ── */
.horus-hero {
  background: linear-gradient(135deg, var(--hblue) 0%, #0E2548 50%, var(--hblue-m) 100%);
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}
.horus-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/bg-dark-teal.jpg') center / cover;
  opacity: 0.06;
}
.horus-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(200,168,75,0.07), transparent 55%);
}
.horus-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.horus-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,168,75,0.12);
  border: 1px solid rgba(200,168,75,0.30);
  border-radius: 50px;
  padding: 7px 18px;
  margin-bottom: 22px;
}
.horus-hero__badge span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold-l);
  text-transform: uppercase;
}
.horus-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}
.horus-hero h1 em { font-style: italic; color: var(--gold-l); }
.horus-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 28px;
}
.horus-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.horus-feat-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.70);
  font-weight: 500;
}
.horus-hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

.horus-hero__product-img { text-align: center; }
.horus-hero__product-img img {
  max-height: 420px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(200,168,75,0.22));
  animation: productFloat 4s ease-in-out infinite;
}
@keyframes productFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.horus-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,168,75,0.10);
  border: 1px solid rgba(200,168,75,0.24);
  border-radius: 8px;
  padding: 10px 16px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--gold-l);
  font-weight: 700;
}

/* ── WHY HORUS ── */
.why-section { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 26px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(11,58,38,0.10);
  border-color: var(--gold);
}
.why-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--deep), var(--mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-card__icon i { color: var(--gold); font-size: 24px; }
.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 10px;
}
.why-card p { font-size: 14px; color: var(--grey); line-height: 1.70; }

/* ── INGREDIENTS ── */
.ingredients-section { background: var(--white); }
.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ingredients-grid img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
}
.ingredient-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.ingredient-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--cream);
  transition: all 0.25s;
}
.ingredient-item:hover {
  border-color: var(--gold);
  background: var(--white);
}
.ingredient-item__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 6px;
  flex-shrink: 0;
}
.ingredient-item h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 4px;
}
.ingredient-item p { font-size: 13.5px; color: var(--grey); line-height: 1.6; }

/* ── BENEFITS LIST ── */
.benefits-list-section {
  background: var(--deep);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.benefits-list-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/bg-ornate.jpg') center / cover;
  opacity: 0.05;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.benefits-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  line-height: 1.65;
}
.benefits-list li img { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.benefits-list li span { color: var(--gold-l); font-weight: 700; }

.benefits-right { text-align: center; }
.benefits-right h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.benefits-right h2 span { color: var(--gold-l); font-style: italic; }
.benefits-right p {
  color: rgba(255,255,255,0.62);
  font-size: 15px;
  line-height: 1.70;
  margin-bottom: 24px;
}
.benefits-right img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius);
  object-fit: cover;
  height: 280px;
}

/* ── CONDITIONS ── */
.conditions-section { background: var(--white); }
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.condition-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 26px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.condition-card:hover {
  background: var(--deep);
  border-color: var(--deep);
}
.condition-card:hover p { color: var(--white); }
.condition-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto 14px;
  border-radius: 50%;
}
.condition-card p {
  font-size: 13.5px;
  color: var(--deep);
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s;
}
.condition-card--dark {
  background: var(--deep);
  border-color: var(--gold);
}
.condition-card--dark p { color: var(--white); }

/* ── USAGE TABS ── */
.usage-section { background: var(--cream); }
.usage-warning {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  border-radius: 8px;
  padding: 14px 18px;
  margin: 16px 0 24px;
  font-size: 13.5px;
  color: #991B1B;
  line-height: 1.6;
}
.usage-warning img { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }

.tab-nav {
  display: flex;
  gap: 4px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 6px;
  border: 1px solid var(--border);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--grey);
  cursor: pointer;
  transition: all 0.22s;
}
.tab-btn.active,
.tab-btn:hover { background: var(--deep); color: var(--white); }

.tab-panel { display: none; animation: panelFadeIn 0.3s ease; }
.tab-panel.active { display: block; }
@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tab-panel p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.80;
  margin-bottom: 14px;
}
.tab-panel ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tab-panel ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--dark);
}
.tab-panel ul li::before {
  content: '✓';
  color: var(--gold-d);
  font-weight: 700;
  flex-shrink: 0;
}
.dosage-box {
  background: var(--deep);
  color: var(--white);
  border-radius: 12px;
  padding: 28px 32px;
  border-left: 4px solid var(--gold);
}
.dosage-box h4 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--gold-l);
  margin-bottom: 14px;
}
.dosage-box p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.78;
  margin-bottom: 0;
}
.dosage-box strong { color: var(--gold-l); }

/* ── TESTIMONIALS ── */
.horus-testi { background: var(--hblue); padding: 80px 0; }
.horus-testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.horus-testi__card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(200,168,75,0.15);
  border-radius: 12px;
  padding: 30px 26px;
  transition: all 0.3s;
}
.horus-testi__card:hover {
  background: rgba(255,255,255,0.075);
  border-color: rgba(200,168,75,0.35);
}
.horus-testi__card blockquote {
  font-size: 14.5px;
  color: rgba(255,255,255,0.72);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 22px;
}
.horus-testi__author { display: flex; align-items: center; gap: 14px; }
.horus-testi__author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.horus-testi__author strong { display: block; font-size: 14px; color: var(--white); font-weight: 700; }
.horus-testi__author span  { font-size: 12px; color: rgba(255,255,255,0.44); }

/* ── AUTHENTICITY WARNING ── */
.auth-section { background: var(--cream); padding: 60px 0; }
.auth-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: 16px;
  padding: 40px 48px;
  border: 2px solid var(--gold);
  box-shadow: 0 8px 40px rgba(11,58,38,0.10);
}
.auth-box h3 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 12px;
}
.auth-box h3 span { color: var(--gold-d); font-style: italic; }
.auth-box p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 20px;
}
.auth-contact {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.auth-contact i { color: var(--gold-d); }
.auth-quality {
  font-size: 14px;
  font-weight: 700;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.auth-box__image img {
  width: 180px;
  border-radius: 8px;
  object-fit: cover;
}

/* ── ORDER CTA ── */
.horus-order {
  background: linear-gradient(135deg, var(--deep), var(--mid));
  padding: 72px 0;
  text-align: center;
}
.horus-order h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}
.horus-order > .container > p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.discount-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.order-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.order-note {
  margin-top: 22px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.38);
}
.order-note img { display: inline; width: 14px; height: 14px; vertical-align: middle; margin-right: 5px; }

/* ── RESPONSIVE HORUS ── */
@media (max-width: 900px) {
  .horus-hero__grid,
  .ingredients-grid,
  .benefits-grid,
  .auth-box { grid-template-columns: 1fr; gap: 36px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .horus-testi__grid { grid-template-columns: 1fr; }
  .auth-box { padding: 28px 24px; }
}
@media (max-width: 600px) {
  .why-grid,
  .conditions-grid { grid-template-columns: 1fr; }
  .horus-hero__btns,
  .order-btns { flex-direction: column; }
  .btn { justify-content: center; }
}
