/* ============================================================
   Proman — Main Stylesheet
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-primary:   #c0392b;
  --color-primary-dark: #96281b;
  --color-accent:    #f39c12;
  --color-dark:      #1a1a2e;
  --color-text:      #333;
  --color-muted:     #666;
  --color-bg:        #fff;
  --color-bg-alt:    #fdf6f0;
  --color-border:    #e0e0e0;
  --font-main:       'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius:          8px;
  --shadow:          0 4px 20px rgba(0,0,0,.10);
  --max-width:       720px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 40px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: background .2s, transform .1s;
  text-align: center;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover { background: var(--color-primary-dark); color: #fff; }

.btn-accent {
  background: var(--color-accent);
  color: #fff;
}
.btn-accent:hover { background: #d68910; color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: #fff; }

.btn-full { width: 100%; display: block; }

/* ---------- Age Gate Page ---------- */
.age-gate {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 20px;
}

.age-gate__card {
  background: #fff;
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

.age-gate__logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 24px;
  border-radius: 12px;
}

.age-gate__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.age-gate__subtitle {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-bottom: 32px;
}

.age-gate__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.age-gate__actions .btn { flex: 1; }

.age-gate__note {
  margin-top: 24px;
  font-size: 0.8rem;
  color: #999;
}

/* ---------- Site Header ---------- */
.site-header {
  background: var(--color-dark);
  color: #fff;
  padding: 12px 0;
  text-align: center;
}

.site-header__brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .5px;
}

.site-header__tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,.6);
  margin-top: 2px;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: .3px;
}

/* ---------- Hero Section ---------- */
.hero {
  background: var(--color-bg-alt);
  padding: 40px 0;
  text-align: center;
}

.hero__badge {
  display: inline-block;
  background: #27ae60;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.hero__title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.25;
  margin-bottom: 12px;
}

.hero__subtitle {
  font-size: 1rem;
  color: var(--color-muted);
  margin-bottom: 24px;
}

.hero__image {
  width: 100%;
  max-width: 480px;
  margin: 0 auto 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.price-original {
  font-size: 1.1rem;
  color: #999;
  text-decoration: line-through;
}

.price-offer {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
}

.price-badge {
  background: var(--color-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ---------- Benefits Section ---------- */
.benefits { background: #fff; }

.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 28px;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  border: 1px solid var(--color-border);
}

.benefit-card__icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.benefit-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.benefit-card__text {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* ---------- Social Proof / Testimonials ---------- */
.testimonials { background: var(--color-bg-alt); }

.testimonial-img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}

/* ---------- Product Info ---------- */
.product-info { background: #fff; }

.product-info__text {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.product-info__image {
  width: 100%;
  border-radius: var(--radius);
  margin: 20px 0;
  box-shadow: var(--shadow);
}

/* ---------- Shipping Banner ---------- */
.shipping-banner {
  background: var(--color-dark);
  color: #fff;
  text-align: center;
  padding: 24px 20px;
}

.shipping-banner__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.shipping-banner__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,.75);
}

/* ---------- Order Form ---------- */
.order-section {
  background: var(--color-bg-alt);
  padding: 48px 0;
}

.order-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
}

.order-card__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 8px;
}

.order-card__subtitle {
  text-align: center;
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-main);
  color: var(--color-text);
  transition: border-color .2s;
  background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #fff;
}

.form-group textarea { resize: vertical; min-height: 80px; }

.order-summary {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid var(--color-border);
}

.order-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--color-border);
}

.order-summary__row:last-child { border-bottom: none; }
.order-summary__row strong { color: var(--color-dark); }

/* ---------- Payment Logos ---------- */
.payment-section {
  background: #fff;
  padding: 28px 0;
  text-align: center;
}

.payment-section__label {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.payment-section img {
  max-width: 280px;
  margin: 0 auto;
}

/* ---------- Thank You Page ---------- */
.thankyou {
  min-height: 100vh;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.thankyou__card {
  background: #fff;
  border-radius: 16px;
  padding: 48px 36px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
}

.thankyou__icon {
  width: 72px;
  height: 72px;
  background: #27ae60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.thankyou__icon svg { width: 36px; height: 36px; fill: #fff; }

.thankyou__title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.thankyou__message {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.order-details {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 20px;
  text-align: left;
  margin-bottom: 28px;
  border: 1px solid var(--color-border);
}

.order-details__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 14px;
}

.order-details__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}

.order-details__row:last-child { border-bottom: none; }
.order-details__row span:last-child { font-weight: 600; color: var(--color-dark); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,.6);
  text-align: center;
  padding: 24px 20px;
  font-size: 0.8rem;
}

.site-footer a { color: rgba(255,255,255,.8); }
.site-footer a:hover { color: #fff; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* ---------- Responsive ---------- */
@media (max-width: 480px) {
  .age-gate__card  { padding: 36px 24px; }
  .age-gate__title { font-size: 1.3rem; }
  .hero__title     { font-size: 1.4rem; }
  .benefits__grid  { grid-template-columns: 1fr; }
  .order-card      { padding: 28px 20px; }
  .thankyou__card  { padding: 36px 24px; }
  .price-offer     { font-size: 1.6rem; }
}

/* ---------- PIN Code Lookup ---------- */
.pin-wrap {
  position: relative;
}

.pin-wrap input {
  padding-right: 44px; /* room for spinner/tick */
}

.pin-status {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  line-height: 1;
  pointer-events: none;
  transition: opacity .2s;
}

/* Two-column row for city + state */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Auto-filled read-only fields */
.pin-autofill input[readonly] {
  background: #f0fdf4;
  border-color: #86efac;
  color: #166534;
  font-weight: 600;
  cursor: default;
}

/* Slide-in animation for the autofill block */
.pin-autofill {
  overflow: hidden;
  animation: slideDown .25s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* PIN error state */
.pin-wrap input.pin-error {
  border-color: var(--color-primary);
}

@media (max-width: 480px) {
  .form-row-2 { grid-template-columns: 1fr; }
}

/* ---------- Order Popup ---------- */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
  animation: fadeIn .2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.popup-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
  animation: slideUp .25s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--color-muted);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background .15s, color .15s;
}
.popup-close:hover {
  background: #f0f0f0;
  color: var(--color-dark);
}

@media (max-width: 480px) {
  .popup-card { padding: 28px 18px; }
}

/* ---------- Sticky Bottom Banner ---------- */
.sticky-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e07b00;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  z-index: 9998;
  box-shadow: 0 -4px 20px rgba(0,0,0,.25);
  gap: 16px;
}

.sticky-banner__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.sticky-banner__title {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  opacity: .9;
}

.sticky-banner__timer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 2px;
}

.sticky-banner__colon {
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.sticky-banner__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.sticky-banner__btn {
  background: #1a6b2e;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px 24px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, transform .1s;
}

.sticky-banner__btn:hover {
  background: #145523;
  transform: translateY(-1px);
}

.sticky-banner__sub {
  font-size: .72rem;
  opacity: .85;
  text-align: center;
}

.sticky-banner__close {
  background: rgba(0,0,0,.2);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}

.sticky-banner__close:hover {
  background: rgba(0,0,0,.4);
}

/* Push page content up so banner doesn't cover footer */
body.has-sticky-banner {
  padding-bottom: 72px;
}

@media (max-width: 480px) {
  .sticky-banner__timer { font-size: 1.4rem; }
  .sticky-banner__btn   { padding: 9px 18px; font-size: .88rem; }
}

/* ---------- NHA Government Banner ---------- */
.nha-banner {
  background: #1a7a3c;
  padding: 10px 20px;
  width: 100%;
}

.nha-banner__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nha-banner__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nha-banner__logo-text {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .3px;
  text-transform: lowercase;
}

.nha-banner__divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.35);
  flex-shrink: 0;
}

.nha-banner__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nha-banner__line1 {
  color: #fff;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nha-banner__line2 {
  color: rgba(255,255,255,.8);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
}

@media (max-width: 480px) {
  .nha-banner__line1 { font-size: .78rem; letter-spacing: .5px; }
  .nha-banner__line2 { font-size: .7rem; }
  .nha-banner__logo svg { width: 36px; height: 36px; }
}

/* ---------- Hero Image Card — Indian Design ---------- */
.hero-img-card {
  position: relative;
  background: linear-gradient(160deg, #fff8f0 0%, #fff 60%, #f0fff4 100%);
  border-radius: 16px;
  border: 2px solid #e8c97a;
  box-shadow: 0 8px 32px rgba(192,57,43,.12), 0 2px 8px rgba(0,0,0,.06);
  overflow: hidden;
  margin: 0 auto 28px;
  max-width: 640px;
  padding-bottom: 8px;
}

/* Tiranga top strip */
.hero-img-card__strip {
  display: flex;
  height: 5px;
  width: 100%;
}
.strip-saffron { flex: 1; background: #FF9933; }
.strip-white   { flex: 1; background: #fff; border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; }
.strip-green   { flex: 1; background: #138808; }

/* Badge row */
.hero-img-card__badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px 12px 4px;
}

.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .3px;
}
.hbadge--gov  { background: #e8f5e9; color: #1a6b2e; border: 1px solid #a5d6a7; }
.hbadge--ayur { background: #fff8e1; color: #7b5800; border: 1px solid #ffe082; }
.hbadge--cod  { background: #fce4ec; color: #880e4f; border: 1px solid #f48fb1; }

/* Mandala corner decorations */
.mandala {
  position: absolute;
  font-size: 2.2rem;
  color: #e8c97a;
  opacity: .35;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.mandala--tl { top: 28px;  left: 10px;  }
.mandala--tr { top: 28px;  right: 10px; }

/* Main image inside card */
.hero-img-card .hero__image {
  margin: 4px auto 0;
  border-radius: 10px;
  box-shadow: none;
  display: block;
  width: 100%;
  max-width: 580px;
  padding: 0 12px;
}

/* Trust row */
.hero-img-card__trust {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 12px 6px;
  border-top: 1px dashed #e8c97a;
  margin-top: 8px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .72rem;
  font-weight: 600;
  color: #555;
}

.trust-item__icon { font-size: .9rem; }

@media (max-width: 480px) {
  .hero-img-card__trust { gap: 4px; }
  .trust-item { font-size: .68rem; }
  .hbadge { font-size: .68rem; padding: 3px 9px; }
}

/* ---------- Flashy Hero Card Effects ---------- */

/* Animated glowing border */
.hero-img-card {
  border: 2px solid transparent;
  background-clip: padding-box;
  animation: borderGlow 2.5s ease-in-out infinite;
}

@keyframes borderGlow {
  0%,100% { box-shadow: 0 0 12px 2px rgba(255,153,51,.5), 0 0 32px 4px rgba(19,136,8,.3), 0 8px 32px rgba(192,57,43,.12); }
  50%      { box-shadow: 0 0 24px 6px rgba(255,153,51,.9), 0 0 48px 10px rgba(19,136,8,.5), 0 8px 32px rgba(192,57,43,.2); }
}

/* Shimmer sweep over the image */
.hero-img-card .hero__image {
  position: relative;
  overflow: hidden;
}

.hero-img-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.35) 50%, transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes shimmer {
  0%   { left: -100%; }
  60%  { left: 160%;  }
  100% { left: 160%;  }
}

/* Pulsing badges */
.hbadge--gov {
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(26,107,46,.4); }
  50%     { box-shadow: 0 0 0 6px rgba(26,107,46,0); }
}

/* Tiranga strip shimmer */
.hero-img-card__strip {
  position: relative;
  overflow: hidden;
}

.hero-img-card__strip::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
  animation: stripShimmer 2s linear infinite;
}

@keyframes stripShimmer {
  0%   { left: -100%; }
  100% { left: 200%;  }
}

/* Floating sparkles */
.hero-img-card .mandala {
  animation: floatSpin 4s ease-in-out infinite;
}
.hero-img-card .mandala--tr {
  animation-delay: -2s;
}

@keyframes floatSpin {
  0%,100% { transform: translateY(0)   rotate(0deg);   opacity: .35; }
  50%     { transform: translateY(-6px) rotate(20deg);  opacity: .65; }
}

/* Trust items pop-in on load */
.trust-item {
  animation: popIn .4s ease both;
}
.trust-item:nth-child(1) { animation-delay: .1s; }
.trust-item:nth-child(2) { animation-delay: .2s; }
.trust-item:nth-child(3) { animation-delay: .3s; }
.trust-item:nth-child(4) { animation-delay: .4s; }

@keyframes popIn {
  from { opacity: 0; transform: scale(.7) translateY(8px); }
  to   { opacity: 1; transform: scale(1)  translateY(0);   }
}

/* Price offer pulse */
.price-offer {
  animation: pricePulse 1.8s ease-in-out infinite;
}

@keyframes pricePulse {
  0%,100% { transform: scale(1);    text-shadow: none; }
  50%     { transform: scale(1.08); text-shadow: 0 0 12px rgba(192,57,43,.5); }
}

/* ORDER NOW button glow */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.25), transparent);
  animation: btnShimmer 2.5s ease-in-out infinite;
}

@keyframes btnShimmer {
  0%   { left: -100%; }
  60%  { left: 160%;  }
  100% { left: 160%;  }
}

/* Sticky banner pulse */
.sticky-banner__btn {
  animation: greenPulse 2s ease-in-out infinite;
}

@keyframes greenPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(26,107,46,.5); }
  50%     { box-shadow: 0 0 0 8px rgba(26,107,46,0); }
}

/* Hero badge bounce */
.hero__badge {
  animation: badgeBounce 2s ease-in-out infinite;
}

@keyframes badgeBounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-4px); }
}

/* ---------- Featured Result Card ---------- */
.result-featured {
  position: relative;
  background: linear-gradient(160deg, #fff8f0 0%, #fff 60%, #f0fff4 100%);
  border: 2px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  animation: borderGlow 2.5s ease-in-out infinite;
}

.result-featured__label {
  background: linear-gradient(90deg, #FF9933, #e07b00);
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  text-align: center;
  padding: 8px 16px;
  letter-spacing: .5px;
  text-transform: uppercase;
  animation: badgeBounce 2s ease-in-out infinite;
}

.result-featured__img {
  margin: 0 auto;
  border-radius: 0;
  box-shadow: none;
  display: block;
  width: 100%;
}

.result-featured__footer {
  background: #1a7a3c;
  color: #fff;
  text-align: center;
  font-size: .8rem;
  font-weight: 700;
  padding: 10px 16px;
  letter-spacing: .3px;
}

/* ---------- GIF Banner ---------- */
.gif-banner {
  background: #000;
  padding: 0;
}

.gif-banner__img {
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 0;
}
