/* ===================================================
   cage-free-eggs-india.css — page-specific styles
   Imports common.css; only contains page-unique rules.
=================================================== */

@import "./common.css";


/* ── HERO — full-bleed photo, left-aligned content panel ── */
  .hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
  }

/* Wave edge at hero bottom — matches free-range style */
  .hero::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 28px;
    background: #fff;
    clip-path: polygon(0 60%, 3% 25%, 7% 65%, 11% 28%, 15% 62%, 20% 30%, 24% 68%, 29% 32%, 33% 65%, 38% 28%, 42% 60%, 47% 30%, 51% 68%, 56% 32%, 60% 65%, 65% 28%, 69% 62%, 74% 30%, 78% 68%, 83% 32%, 87% 65%, 92% 28%, 96% 62%, 100% 35%, 100% 100%, 0 100%);
    z-index: 3;
  }

/* Background photo */
  .hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero-cage-free-eggs-kerala.jpg') center center / cover no-repeat;
    z-index: 0;
  }

/* Dark gradient overlay — left side darker for text legibility, right fades to reveal photo */
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(18, 28, 12, 0.88) 0%,
      rgba(18, 28, 12, 0.78) 38%,
      rgba(18, 28, 12, 0.35) 65%,
      rgba(18, 28, 12, 0.10) 100%
    );
  }

/* Content sits above overlays */
  .hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 64px 28px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

/* Certified Humane badge pill at top */
  .hero-cert-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 40px;
    padding: 7px 16px 7px 8px;
    margin-bottom: 26px;
  }

.hero-cert-pill .cert-logo {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
  }

.hero-cert-pill .cert-logo i { font-size: 18px; color: var(--green); }

.hero-cert-pill .cert-text { line-height: 1.25; }

.hero-cert-pill .cert-text strong { display: block; font-size: 11px; font-weight: 800; letter-spacing: 0.8px; text-transform: uppercase; color: #fff; }

.hero-cert-pill .cert-text span { font-size: 11px; color: rgba(255,255,255,0.65); }

/* Headline */
  .hero h1 {
    font-family: var(--serif);
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 18px;
    max-width: 560px;
  }

/* Sub */
  .hero-sub {
    font-size: 15.5px;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 32px;
  }

/* Buttons row */
  .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

/* Primary CTA — orange solid */
  .btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: #fff;
    padding: 13px 26px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
  }

.btn-hero-primary:hover { background: var(--orange-light); }

.btn-hero-primary i { font-size: 16px; }

/* Secondary CTA — outline ghost */
  .btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    border: 1.5px solid rgba(255,255,255,0.45);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
  }

.btn-hero-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

.btn-hero-ghost i { font-size: 15px; }

.cta-logo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 30px;
  border: 1.5px solid rgba(255,255,255,0.25);
  min-width: 130px;
  height: 48px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cta-logo-btn:hover { opacity: 0.88; }

.cta-platform-logo {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* 4-icon credential strip */
  .hero-creds {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.13);
    padding-top: 28px;
  }

.hero-cred {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-right: 36px;
    border-right: 1px solid rgba(255,255,255,0.15);
    margin-right: 36px;
  }

.hero-cred:last-child { border-right: none; margin-right: 0; padding-right: 0; }

.hero-cred-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
  }

.hero-cred-icon i { font-size: 17px; color: rgba(255,255,255,0.8); }

.hero-cred-label { font-size: 12px; font-weight: 700; color: #fff; line-height: 1.3; }

.hero-cred-sub { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: -4px; }

.hero-tags {
  display: flex; gap: 8px; flex-wrap: wrap; padding-top: 32px;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px; padding: 6px 14px;
  font-size: 12px; font-weight: 600; color: #E5DDD0;
}

.hero-tag i { font-size: 13px; color: #F0B97A; }

.vs-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }

.vs-header { display: grid; grid-template-columns: 1fr 46px 1fr; border-bottom: 1px solid var(--border); }

.vs-col { padding: 14px 16px; font-size: 11px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }

.vs-col.bad { color: var(--ink); background: #FEF0E6; }

.vs-col.good { color: var(--green-mid); background: var(--green-tint); }

.vs-badge { background: var(--ink-mid); color: #F5EFE2; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; }

.vs-row { display: grid; grid-template-columns: 1fr 46px 1fr; border-bottom: 1px solid var(--border); }

.vs-row:last-child { border-bottom: none; }

.vs-cell { padding: 12px 16px; font-size: 13px; line-height: 1.5; }

.vs-cell.neg { color: var(--orange); background: #FEF0E6; }

.vs-cell.pos { color: var(--green-mid); background: var(--green-tint); }

.vs-mid { background: var(--grey-light); }

.cards-4 { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

@media (max-width: 860px) { .cards-4 { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 480px) { .cards-4 { grid-template-columns: 1fr; } }

.card { min-width: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 22px 22px; display: flex; flex-direction: column; align-items: flex-start; }

.card-illustration { width: 100%; height: 220px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; background: var(--grey-light); border-radius: 12px; overflow: hidden; }

.card-illustration img { width: 100%; height: 100%; object-fit: cover; display: block; }

.card-illustration svg { width: 110px; height: 110px; }

.card h3 { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 8px; line-height: 1.25; }

.card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; flex: 1; }

.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 13px; font-weight: 700; color: var(--orange); text-decoration: none; }

.card-link:hover { color: var(--orange-light); }

.card-link svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2.5; fill: none; }

.loc-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 22px; }

.loc-tag { background: #fff; border: 1px solid var(--border); color: var(--green-mid); font-size: 12px; font-weight: 600; padding: 7px 15px; border-radius: 22px; display: flex; align-items: center; gap: 6px; }

.kerala-visual { background: linear-gradient(150deg, #2D5F1F, #6B9659); border-radius: var(--radius-lg); height: 250px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }

.kerala-visual-label { font-family: var(--serif); color: #F5EFE2; font-size: 22px; font-weight: 700; }

.kerala-visual-sub { color: #D4E4C0; font-size: 13px; }

.channels-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.channel-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; }

.channel-card.wide { grid-column: span 2; display: flex; gap: 16px; align-items: center; border: 1.5px solid var(--orange); }

.channel-emoji { font-size: 28px; margin-bottom: 10px; }

.channel-card.wide .channel-emoji { font-size: 36px; margin: 0; }

.channel-card h3 { font-size: 14px; font-weight: 700; color: var(--ink-mid); margin-bottom: 4px; }

.channel-card p { font-size: 12px; color: var(--muted); line-height: 1.6; }

.channel-cities { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 8px; }

.city-chip { font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 10px; background: #fff; border: 1px solid var(--border); color: var(--muted); }

.cmp-table { width: 100%; border-collapse: collapse; font-size: 13px; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; max-width: var(--max-w); margin: 0 auto; background: #fff; }

.cmp-table thead th { padding: 15px 18px; text-align: left; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; }

.cmp-table thead th:first-child { background: var(--grey-light); color: var(--muted); }

.cmp-table thead th.th-a { background: var(--green); color: #fff; }

.cmp-table thead th.th-b { background: var(--muted); color: #fff; }

.cmp-table tbody tr { border-top: 1px solid var(--border); }

.cmp-table tbody td { padding: 13px 18px; vertical-align: top; }

.cmp-table tbody td:first-child { font-weight: 600; color: var(--muted); background: #FAF8F2; }

.cmp-table tbody td.td-a { background: var(--green-tint); color: var(--green-mid); font-weight: 500; }

.cmp-table tbody td.td-b { background: #FAF8F2; color: var(--muted); }

.check { color: var(--green); font-weight: 700; }

.comparison-img { margin-top: 50px; }

@media (max-width: 860px) {
    .comparison-img { margin-top: 0; }
    .nav-links { display: none; }
    .hero { min-height: 480px; }
    .hero h1 { font-size: 36px; max-width: 100%; }
    .hero-creds { gap: 0; }
    .hero-cred { padding-right: 20px; margin-right: 20px; }
    .grid-2, .faq-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 28px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .hero-tags { gap: 6px; }
    .hero-tag { font-size: 11px; padding: 5px 11px; }
    .cert-banner-inner { grid-template-columns: 1fr; min-height: auto; }
    .cert-banner-text { padding: 36px 24px; gap: 12px; }
    .cert-banner-heading { font-size: 26px; }
    .cert-banner-img-col { min-height: 220px; }
    .cert-banner-img-placeholder { min-height: 220px; border-left: none; border-top: 2px dashed var(--border-strong); }
  }

@media (max-width: 620px) {
    .hero { min-height: 520px; }
    .hero-inner { padding: 52px 20px 60px; }
    .hero h1 { font-size: 30px; }
    .hero-sub { font-size: 14px; }
    .hero-creds { gap: 0; }
    .hero-cred { padding-right: 18px; margin-right: 18px; margin-bottom: 14px; }
    .hero-cred:last-child { border-right: none; }
    .hero-bg::after {
      background: linear-gradient(
        to right,
        rgba(18,28,12,0.92) 0%,
        rgba(18,28,12,0.85) 55%,
        rgba(18,28,12,0.60) 100%
      );
    }
  }

/* ── CERTIFIED HUMANE BANNER ── */
.cert-banner {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.cert-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 6fr 4fr;
  align-items: stretch;
  min-height: 260px;
}

.cert-banner-text {
  padding: 44px 52px 44px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.cert-banner-logo-heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.cert-banner-logo {
  height: 60px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.cert-banner-heading {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.18;
  margin: 0;
}

.cert-banner-heading sup {
  font-size: 0.52em;
  vertical-align: super;
  font-weight: 700;
}

.cert-banner-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.cert-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  align-self: flex-start;
}
.cert-banner-btn:hover { background: var(--green-mid); }
.cert-banner-btn i { font-size: 15px; line-height: 1; }

.cert-banner-img-col {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  background: #ffffff;
}

.cert-banner-img-col img {
  width: 375px;
  height: 147px;
  object-fit: none;
  display: block;
}

.cert-banner-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 260px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 24px;
  box-sizing: border-box;
}

/* ── DELIVERY APPS BAND ── */
  .delivery-band { background: #F5EFE2; padding: 56px 28px; text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.delivery-title { font-family: var(--serif); font-size: 36px; font-weight: 700; color: var(--ink); max-width: 720px; margin: 0 auto 44px; line-height: 1.14; }

.delivery-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px; max-width: 700px; margin: 0 auto 40px; }

.delivery-logo-wrap { display: flex; align-items: center; justify-content: center; padding: 0 36px; }

.delivery-logo-wrap svg { height: 44px; width: auto; max-width: 160px; }

.delivery-divider { width: 1px; height: 48px; background: #d4c9b4; flex-shrink: 0; }

.delivery-wa-btn { display: inline-flex; align-items: center; gap: 9px; background: var(--green); color: #fff; padding: 14px 32px; border-radius: 30px; font-size: 15px; font-weight: 700; text-decoration: none; transition: background 0.2s; }

.delivery-wa-btn:hover { background: var(--green-mid); }

.delivery-note { margin-top: 20px; font-size: 15px; color: var(--muted); line-height: 1.7; }

@media (max-width: 600px) { .delivery-title { font-size: 28px; } .delivery-logos { gap: 10px; } }

@media (max-width: 480px) {
    .channels-grid { grid-template-columns: 1fr; }
    .channel-card.wide { grid-column: span 1; flex-direction: column; text-align: center; }
    .footer-top { grid-template-columns: 1fr; }
    .hero h1 { font-size: 26px; }
    .hero-creds { flex-direction: column; gap: 14px; }
    .hero-cred { border-right: none; padding-right: 0; margin-right: 0; flex-direction: row; align-items: center; gap: 12px; }
    .cta-band h2 { font-size: 26px; }
    /* ── LOGO BUTTONS — constrain Blinkit / Instamart on mobile ── */
    .hero-btns { align-items: flex-start; }
    .cta-logo-btn { min-width: 0; max-width: 148px; height: 44px; padding: 8px 14px; flex: 0 0 auto; }
    .cta-platform-logo { height: 22px; max-width: 110px; width: auto; }
  }

@media (max-width: 860px) {
    .cert-banner-inner { grid-template-columns: 1fr; min-height: auto; }
    .cert-banner-text { padding: 36px 24px; gap: 12px; }
    .cert-banner-heading { font-size: 26px; }
    .cert-banner-img-col { min-height: 220px; }
    .cert-banner-img-placeholder { min-height: 220px; border-left: none; border-top: 2px dashed var(--border-strong); }
    /* ── LOGO BUTTONS — cap size on tablet / wider mobile ── */
    .cta-logo-btn { max-width: 148px; flex: 0 0 auto; }
    .cta-platform-logo { max-width: 120px; width: auto; }
  }
