
/* === Homepage specific styles (Saffron design system) === */

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 72px 0 96px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,210,63,.32), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 16px 6px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint-600);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(90,148,102,.6); }
  70%  { box-shadow: 0 0 0 10px rgba(90,148,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(90,148,102,0); }
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.2vw, 88px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  text-wrap: balance;
  margin-bottom: 24px;
}
.swatch {
  display: inline-block;
  background: var(--saffron-500);
  padding: 0 14px;
  border-radius: 12px;
  transform: rotate(-1.5deg);
  line-height: inherit;
}
.hero-sub {
  font-size: 20px;
  color: var(--ink-700);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.hero-cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-size: 15px;
  color: var(--ink-700);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-trust-item::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink-300);
}
.hero-trust-item:first-child::before { display: none; }

/* ── COUNTRY SECTION ─────────────────────────────────────────────────────── */
.country-search-wrap {
  position: relative;
  max-width: 480px;
  margin: 0 auto 32px;
}
.country-search-wrap input {
  width: 100%;
  padding: 14px 48px 14px 20px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-family: var(--font-sans);
  background: #fff;
  color: var(--ink-900);
  outline: none;
  transition: border-color var(--dur-micro) var(--ease), box-shadow var(--dur-micro) var(--ease);
}
.country-search-wrap input:focus {
  border-color: var(--saffron-600);
  box-shadow: 0 0 0 3px rgba(255, 210, 63, 0.2);
}
.country-search-wrap input::placeholder { color: var(--ink-300); }
.country-search-wrap svg {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-300);
  pointer-events: none;
}

/* ── BENEFITS ────────────────────────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.benefit-icon {
  width: 56px;
  height: 56px;
  background: var(--cream-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--ink-700);
}
.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--ink-900);
}
.benefit-card p { font-size: 16px; color: var(--ink-700); margin: 0; }

/* ── REVIEWS ─────────────────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--cream-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: box-shadow var(--dur-base) var(--ease);
}
.review-card:hover { box-shadow: var(--shadow-md); }
.stars {
  color: var(--saffron-600);
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.reviewer {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-500);
}

/* ── PRODUCTS ────────────────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.product-spec {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: #fff;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.product-spec:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.product-spec-icon {
  width: 52px;
  height: 52px;
  background: var(--cream-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--ink-700);
}
.product-spec h3 { font-size: 20px; margin-bottom: 10px; color: var(--ink-900); }
.product-spec p { font-size: 15px; color: var(--ink-700); margin: 0; }

/* ── FIFI MASCOT ─────────────────────────────────────────────────────────── */
.fifi-section { background: var(--mint-200); }

/* Feature layout: big photo + copy side by side */
.fifi-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}

/* Hero image */
.fifi-feature-img-wrap {
  position: relative;
}
.fifi-feature-img-wrap > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* Rotating paw stamp badge */
.fifi-stamp-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 108px;
  height: 108px;
  background: #fff;
  border-radius: 50%;
  padding: 10px;
  box-shadow: var(--shadow-md);
  transform: rotate(14deg);
  transition: transform var(--dur-base) var(--ease);
}
.fifi-feature-img-wrap:hover .fifi-stamp-badge {
  transform: rotate(22deg) scale(1.06);
}
.fifi-stamp-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

/* Floating ZZZ */
.fifi-zzz {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink-900);
  background: var(--saffron-500);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.12em;
  box-shadow: var(--shadow-sm);
  animation: gentle-bob 3s ease-in-out infinite;
}
@keyframes gentle-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

/* Feature copy */
.fifi-feature-copy { }
.fifi-feature-lead {
  font-size: 20px;
  font-weight: 500;
  color: var(--ink-900);
  line-height: 1.5;
  margin-bottom: 16px;
}

/* Tags row */
.fifi-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.fifi-tag {
  background: var(--ink-900);
  color: var(--cream-50);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
}

/* Photo gallery grid */
.fifi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fifi-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.fifi-card:hover {
  transform: translateY(-6px) rotate(-1.5deg);
  box-shadow: var(--shadow-lg);
}
.fifi-card:nth-child(even):hover {
  transform: translateY(-6px) rotate(1.5deg);
}
.fifi-card-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.fifi-card-body {
  padding: 14px 18px 18px;
}
.fifi-card-chip {
  display: inline-block;
  background: var(--saffron-500);
  color: var(--ink-900);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}
.fifi-card-caption {
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.45;
  margin: 0;
  font-style: italic;
}

/* ── BUYING GUIDE ────────────────────────────────────────────────────────── */
.buying-guide {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 72px);
  box-shadow: var(--shadow-sm);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-700);
}
.buying-guide h2 {
  font-size: clamp(28px, 3vw, 38px);
  border-top: 1px solid var(--border);
  padding-top: 0.6em;
  margin: 1.6em 0 0.5em;
}
.buying-guide > h2:first-child {
  font-size: clamp(34px, 4vw, 48px);
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.buying-guide > h2:first-child + p {
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-700);
}
.buying-guide h3 {
  font-size: clamp(22px, 2vw, 28px);
  margin: 1.4em 0 0.5em;
}
.buying-guide h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-700);
  margin: 1em 0 0.4em;
}
.buying-guide ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
  margin: 1rem 0;
}
.buying-guide ul li {
  position: relative;
  padding: 12px 16px 12px 44px;
  background: var(--cream-50);
  border-left: 3px solid var(--saffron-500);
  border-radius: 6px;
}
.buying-guide ul li::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--saffron-500);
}
.buying-guide ul li strong { color: var(--ink-900); }

/* ── COMPANY DETAILS ─────────────────────────────────────────────────────── */
.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.company-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}
.company-detail svg { flex-shrink: 0; color: var(--saffron-700); margin-top: 2px; }
.company-detail h4 { font-size: 15px; margin-bottom: 4px; color: var(--ink-900); }
.company-detail p { margin: 0; font-size: 15px; color: var(--ink-700); }
.company-detail a { color: var(--ink-700); text-decoration: underline; }
.company-detail a:hover { color: var(--ink-900); }

/* ── CONTACT ─────────────────────────────────────────────────────────────── */
.contact-methods {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: #fff;
  transition: all var(--dur-base) var(--ease);
  text-decoration: none;
  color: inherit;
  min-width: 260px;
}
.contact-method:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: inherit;
}
.contact-method svg { color: var(--saffron-700); flex-shrink: 0; }
.contact-method strong { display: block; font-size: 16px; color: var(--ink-900); margin-bottom: 2px; }
.contact-method span { font-size: 14px; color: var(--ink-500); }

/* ── FINAL CTA ───────────────────────────────────────────────────────────── */
.cta-section {
  background: var(--ink-900);
  padding: 96px 0;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .fifi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .fifi-feature {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .fifi-feature-img-wrap > img { aspect-ratio: 4/3; }
  .fifi-stamp-badge { width: 88px; height: 88px; bottom: -12px; right: -12px; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 0 72px; }
  .hero-heading { font-size: clamp(40px, 12vw, 64px); }
  .hero-sub { font-size: 18px; }
  .contact-methods { flex-direction: column; align-items: stretch; }
  .contact-method { min-width: auto; }
  .buying-guide { border-radius: var(--radius-lg); }
  .fifi-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .fifi-zzz { font-size: 16px; padding: 4px 10px; }
}
@media (max-width: 480px) {
  .fifi-grid { grid-template-columns: 1fr 1fr; }
  .fifi-card-chip { font-size: 11px; }
  .fifi-card-caption { font-size: 13px; }
}
@media (max-width: 560px) {
  .country-search-wrap { padding: 0 16px; }
  .country-search-wrap input { font-size: 15px; }
}
