/* ============================================================
   FURRTIFY — Main Stylesheet
   Palette:
     Primary:   #3d7a24 (vivid forest green)
     Gold:      #D4A853 (warm amber gold)
     BG:        #F5F0E8 (warm ivory cream)
     Tint:      #EEF4E5 (light green section)
     Dark:      #1C1C1A (warm near-black)
   Fonts: Cormorant Garamond (headings) + DM Sans (body)
   Icons: Tabler Icons (CDN)
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #F5F0E8;
  color: #1C1C1A;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
  color: #1C1C1A;
}
h1 { font-size: clamp(2.8rem, 5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.9rem); }
h4 { font-size: 1.1rem; font-family: 'DM Sans', sans-serif; }
p { color: #3a3a38; line-height: 1.75; }

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #D4A853;
  margin-bottom: 0.875rem;
  display: block;
}

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
section { padding: 5.5rem 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.8rem 1.875rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.22s ease;
  border: none;
  white-space: nowrap;
}
.btn-primary { background: #3d7a24; color: #fff; }
.btn-primary:hover { background: #2f6019; transform: translateY(-1px); }
.btn-outline { background: transparent; color: #3d7a24; border: 1.5px solid #3d7a24; }
.btn-outline:hover { background: #3d7a24; color: #fff; transform: translateY(-1px); }
.btn-gold { background: #D4A853; color: #1C1C1A; }
.btn-gold:hover { background: #c09640; transform: translateY(-1px); }
.btn-light { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-light:hover { background: rgba(255,255,255,0.22); }

/* ── Navigation ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid rgba(28,28,26,0.08);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(28,28,26,0.08); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img, .nav-logo svg { height: 64px; width: auto; }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #3d7a24;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #3a3a38;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #3d7a24;
  transition: width 0.2s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: #3d7a24; }
.nav-cta { margin-left: 0.75rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1C1C1A;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO SLIDER ── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 560px;
  overflow: hidden;
  background: #F5F0E8;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem calc((100vw - 1160px) / 2 + 2rem);
  position: relative;
  z-index: 2;
}
.hero-slide-image {
  position: relative;
  overflow: hidden;
}
.hero-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #8aaa74;
}
.hero-img-placeholder i { font-size: 64px; opacity: 0.4; }
.hero-img-placeholder span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Slide background tones */
.hero-slide:nth-child(1) .hero-slide-content { background: #F5F0E8; }
.hero-slide:nth-child(1) .hero-img-placeholder { background: #deecd4; }
.hero-slide:nth-child(2) .hero-slide-content { background: #EEF4E5; }
.hero-slide:nth-child(2) .hero-img-placeholder { background: #e8d4c4; }
.hero-slide:nth-child(3) .hero-slide-content { background: #1C1C1A; }
.hero-slide:nth-child(3) .hero-img-placeholder { background: #2d3d20; color: #8aaa74; }
.hero-slide:nth-child(3) h1 { color: #F5F0E8; }
.hero-slide:nth-child(3) p  { color: rgba(245,240,232,0.7); }
.hero-slide:nth-child(3) .eyebrow { color: #D4A853; }

/* Hero text animation — content animates in when slide becomes active */
.hero-slide .hero-slide-content > * {
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}
.hero-slide.active .hero-slide-content > * {
  transform: translateY(0);
  opacity: 1;
}
.hero-slide.active .hero-slide-content > *:nth-child(1) { transition-delay: 0.1s; }
.hero-slide.active .hero-slide-content > *:nth-child(2) { transition-delay: 0.2s; }
.hero-slide.active .hero-slide-content > *:nth-child(3) { transition-delay: 0.3s; }
.hero-slide.active .hero-slide-content > *:nth-child(4) { transition-delay: 0.4s; }

.hero-slide h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.hero-slide h1 em { font-style: normal; color: #3d7a24; }
.hero-slide:nth-child(3) h1 em { color: #D4A853; }
.hero-slide p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #555550;
  margin-bottom: 2rem;
  max-width: 440px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid rgba(28,28,26,0.08);
  border-radius: 50px;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  margin-bottom: 1.5rem;
  width: fit-content;
}
.hero-badge-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #EEF4E5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-badge-dot i { font-size: 16px; color: #3d7a24; }
.hero-badge span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #1C1C1A;
}
.hero-slide:nth-child(3) .hero-badge { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
.hero-slide:nth-child(3) .hero-badge span { color: #F5F0E8; }

/* Hero Controls */
.hero-controls {
  position: absolute;
  bottom: 2rem;
  left: calc((100vw - 1160px) / 2 + 2rem);
  display: flex;
  align-items: center;
  gap: 0.875rem;
  z-index: 10;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(28,28,26,0.2);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}
.hero-dot.active { background: #3d7a24; width: 24px; border-radius: 4px; }
.hero-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(28,28,26,0.15);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  margin-left: 0.5rem;
}
.hero-nav-btn:hover { border-color: #3d7a24; background: #3d7a24; color: #fff; }
.hero-nav-btn i { font-size: 16px; }

/* ── Scroll Animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ── Trust Pillars ── */
.pillars { background: #3d7a24; padding: 4.5rem 0; }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.pillar {
  text-align: center;
  padding: 1.5rem 1.75rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.pillar:last-child { border-right: none; }
.pillar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.125rem;
  background: rgba(255,255,255,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.pillar:hover .pillar-icon { background: rgba(255,255,255,0.18); transform: translateY(-3px); }
.pillar-icon i { font-size: 26px; color: #D4A853; }
.pillar h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.4rem;
  font-family: 'DM Sans', sans-serif;
}
.pillar p { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ── Section Headings ── */
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head h2 { margin-bottom: 0.875rem; }
.section-head p { font-size: 1rem; color: #555550; max-width: 520px; margin: 0 auto; }

/* ── Diet Categories (special diets strip) ── */
.diets-section { background: #1C1C1A; padding: 5rem 0; }
.diets-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}
.diet-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all 0.25s;
  cursor: default;
}
.diet-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,168,83,0.4);
  transform: translateY(-4px);
}
.diet-card-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  background: rgba(61,122,36,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diet-card-icon i { font-size: 24px; color: #D4A853; }
.diet-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #F5F0E8;
  margin-bottom: 0.375rem;
}
.diet-card p { font-size: 0.75rem; color: rgba(245,240,232,0.5); line-height: 1.5; }

/* ── Product Cards ── */
.products-section { background: #fff; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(264px, 1fr)); gap: 1.5rem; }
.product-card {
  background: #fff;
  border: 1px solid rgba(28,28,26,0.07);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(28,28,26,0.1);
}
.product-card-image {
  width: 100%;
  aspect-ratio: 1/1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-image img { width: 100%; height: 100%; object-fit: contain; }
.product-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #8aaa74;
}
.product-img-placeholder i { font-size: 40px; opacity: 0.5; }
.product-img-placeholder span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-card-badges {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}
.badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
}
.badge-type-airdried   { background: #3d7a24; color: #fff; }
.badge-type-retort     { background: #1a5c8a; color: #fff; }
.badge-type-supplement { background: #7a4d24; color: #fff; }
.badge-diet-daily      { background: #EEF4E5; color: #2f6019; }
.badge-diet-gi         { background: #E5F0F8; color: #1a4a6a; }
.badge-diet-renal      { background: #F5EAF0; color: #6a1a4a; }
.badge-diet-weightloss { background: #FFF5E0; color: #7a5000; }
.badge-diet-skincoat   { background: #F0EEF8; color: #3a2a6a; }
.badge-featured        { background: #D4A853; color: #1C1C1A; }
.badge-pet-dog  { background: #EEF4E5; color: #2f6019; }
.badge-pet-cat  { background: #FFF5E0; color: #8a6000; }
.badge-pet-both { background: #f3ece0; color: #5a4a20; }

.product-card-body { padding: 1.125rem 1.25rem 0.75rem; }
.product-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1C1C1A;
  margin-bottom: 0.375rem;
  line-height: 1.25;
}
.product-card-desc { font-size: 0.8125rem; color: #666660; line-height: 1.65; margin-bottom: 0.75rem; }
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  border-top: 1px solid rgba(28,28,26,0.06);
}
.product-card-weight { font-size: 0.8rem; color: #999; font-weight: 500; }
.btn-enquire {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: #3d7a24;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.02em;
}
.btn-enquire:hover { background: #2f6019; }

/* ── Filter Bar ── */
.filter-bar {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.filter-group {
  display: flex;
  gap: 0.375rem;
  background: rgba(28,28,26,0.05);
  border-radius: 8px;
  padding: 4px;
}
.filter-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 5px;
  border: none;
  background: transparent;
  color: #555550;
  cursor: pointer;
  transition: all 0.18s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.filter-btn i { font-size: 15px; }
.filter-btn.active { background: #3d7a24; color: #fff; }
.filter-btn:hover:not(.active) { background: rgba(28,28,26,0.07); }
.filter-divider { width: 1px; height: 28px; background: rgba(28,28,26,0.1); align-self: center; }

/* ── Brand Story / About Strip ── */
.brand-strip { background: #EEF4E5; }
.brand-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.brand-strip-visual {
  aspect-ratio: 1;
  background: #d0e2c4;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-strip-visual img { width: 100%; height: 100%; object-fit: cover; }
.brand-strip-content h2 { margin-bottom: 1.25rem; }
.brand-strip-content p { font-size: 1rem; line-height: 1.8; color: #444440; margin-bottom: 1rem; }

/* ── Process Steps ── */
.process-section { background: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.process-step {
  background: #fff;
  border-radius: 14px;
  padding: 2.25rem 1.875rem;
  border: 1px solid rgba(28,28,26,0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.process-step:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(28,28,26,0.08); }
.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #3d7a24;
  opacity: 0;
  transition: opacity 0.2s;
}
.process-step:hover::before { opacity: 1; }
.process-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #D4A853;
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.process-step-icon {
  width: 48px;
  height: 48px;
  background: #EEF4E5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.process-step-icon i { font-size: 24px; color: #3d7a24; }
.process-step h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: 'DM Sans', sans-serif;
}
.process-step p { font-size: 0.875rem; color: #666660; line-height: 1.7; }

/* ── Science Credentials ── */
.credentials-strip {
  background: #3d7a24;
  padding: 2.5rem 0;
}
.credentials-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: nowrap;
}
.credential {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.credential i { font-size: 22px; color: #D4A853; }
.credential-text { font-size: 0.875rem; font-weight: 500; color: #fff; white-space: nowrap; }
.credential-text span { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.6); font-weight: 400; }
.cred-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* ── CTA Banner ── */
.cta-banner { background: #1C1C1A; padding: 5.5rem 0; text-align: center; }
.cta-banner h2 { color: #F5F0E8; margin-bottom: 1rem; }
.cta-banner p { color: rgba(245,240,232,0.6); max-width: 480px; margin: 0 auto 2rem; font-size: 1rem; }

/* ── About Page ── */
.about-hero {
  background: #1C1C1A;
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
/* Decorative orbs */
.about-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,122,36,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.about-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 8%;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,83,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.about-hero h1 { color: #F5F0E8; margin-bottom: 1.25rem; }
.about-hero h1 em { font-style: normal; color: #D4A853; }
.about-hero .eyebrow { color: #D4A853; }
.about-hero .lead { font-size: 1.0625rem; color: rgba(245,240,232,0.65); max-width: 540px; line-height: 1.8; }
/* Load animation (above fold — not scroll triggered) */
.about-hero-inner > * {
  animation: aboutHeroIn 0.72s ease both;
}
.about-hero-inner > *:nth-child(2) { animation-delay: 0.18s; }
@keyframes aboutHeroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
/* Stats row */
.about-hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(245,240,232,0.1);
}
.about-stat { display: flex; flex-direction: column; }
.about-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #D4A853;
  line-height: 1;
}
.about-stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  margin-top: 0.375rem;
}
/* Decorative visual element */
.about-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: aboutHeroIn 0.72s ease 0.18s both;
}
.about-hero-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(61,122,36,0.12);
  border: 1px solid rgba(61,122,36,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-hero-circle::before {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px dashed rgba(212,168,83,0.18);
  animation: slowRotate 20s linear infinite;
}
.about-hero-circle::after {
  content: '';
  position: absolute;
  inset: -36px;
  border-radius: 50%;
  border: 1px dashed rgba(61,122,36,0.1);
}
.about-hero-circle i {
  font-size: 76px;
  color: #3d7a24;
  opacity: 0.85;
  animation: pawBeat 1.15s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  transform-origin: center;
  display: inline-block;
}
@keyframes pawBeat {
  0%   { transform: scale(1)    rotate(-8deg); opacity: 0.75; }
  15%  { transform: scale(1.25) rotate( 0deg); opacity: 1;    }
  30%  { transform: scale(0.92) rotate( 7deg); opacity: 0.8;  }
  45%  { transform: scale(1.20) rotate( 0deg); opacity: 1;    }
  60%  { transform: scale(0.96) rotate(-4deg); opacity: 0.85; }
  80%  { transform: scale(1.10) rotate( 2deg); opacity: 0.9;  }
  100% { transform: scale(1)    rotate(-8deg); opacity: 0.75; }
}
@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/* about page ingredient value cards */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.value-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem;
  border: 1px solid rgba(28,28,26,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.value-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(28,28,26,0.08); }
.value-card-icon {
  width: 44px;
  height: 44px;
  background: #EEF4E5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.value-card-icon i { font-size: 22px; color: #3d7a24; }
.value-card h4 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.875rem; color: #666660; line-height: 1.7; }

/* ── Contact Page ── */
.contact-hero { background: #EEF4E5; padding: 5rem 0 4rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-form {
  background: #fff;
  border-radius: 14px;
  padding: 2.5rem;
  border: 1px solid rgba(28,28,26,0.07);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #444440;
  margin-bottom: 0.375rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(28,28,26,0.15);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  color: #1C1C1A;
  background: #FDFAF6;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #3d7a24; }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: #EEF4E5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon i { font-size: 20px; color: #3d7a24; }
.contact-info-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #999; margin-bottom: 2px; }
.contact-info-value { font-size: 0.9375rem; color: #1C1C1A; font-weight: 500; }

/* ── Footer ── */
.site-footer { background: #1C1C1A; color: rgba(245,240,232,0.7); padding: 4rem 0 2rem; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { display: inline-block; margin-bottom: 0.75rem; }
.footer-logo img { height: 52px; width: auto; }
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #3d7a24;
  margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.7; color: rgba(245,240,232,0.5); max-width: 220px; }
.footer-petzspinn { font-size: 0.72rem; color: rgba(245,240,232,0.25); margin-top: 0.5rem; }
.footer-social {
  display: flex;
  gap: 0.625rem;
  margin-top: 1.25rem;
}
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: rgba(245,240,232,0.5);
}
.social-icon:hover { background: #3d7a24; border-color: #3d7a24; color: #fff; }
.social-icon i { font-size: 17px; }
.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
  margin-bottom: 1.125rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(245,240,232,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: #D4A853; }
.footer-bottom {
  border-top: 1px solid rgba(245,240,232,0.07);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(245,240,232,0.3);
}
.footer-bottom a { color: rgba(245,240,232,0.3); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(245,240,232,0.6); }

/* ── Page Header (inner pages) ── */
.page-header {
  background: #fff;
  padding: 2.25rem 0 1.75rem;
}
.page-header h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 0.5rem;
}
.page-header p { max-width: 540px; color: #555550; font-size: 0.9375rem; }

/* ── Diet Tab Bar (products page) ── */
.diet-tab-bar {
  background: #fff;
  border-bottom: 1px solid rgba(28,28,26,0.07);
  position: sticky;
  top: 72px;
  z-index: 100;
  padding: 0 !important;
}
.diet-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.diet-tabs::-webkit-scrollbar { display: none; }
.diet-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #555550;
  padding: 1rem 1.25rem;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.diet-tab i { font-size: 15px; }
.diet-tab:hover { color: #3d7a24; }
.diet-tab.active { color: #3d7a24; border-bottom-color: #3d7a24; }

/* ── Filter count ── */
.filter-count {
  margin-left: auto;
  font-size: 0.8125rem;
  color: #888;
  align-self: center;
}

/* ── Products section — tight top padding (diet-tab-bar is sticky above) ── */
.products-section { padding-top: 2rem !important; padding-bottom: 3.5rem !important; }

/* ── Products empty state ── */
.products-empty {
  text-align: center;
  padding: 5rem 0;
  color: #aaa;
}
.products-empty i { font-size: 3rem; opacity: 0.4; margin-bottom: 1rem; display: block; }
.products-empty p { font-size: 1rem; margin-bottom: 1.5rem; }

/* ── Rx Note (products page) ── */
.rx-note {
  background: #EEF4E5;
  padding: 1.5rem 0;
}
.rx-note-inner {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.rx-note-inner i { font-size: 20px; color: #3d7a24; flex-shrink: 0; margin-top: 2px; }
.rx-note-inner p { font-size: 0.875rem; color: #444440; line-height: 1.7; margin: 0; }

/* ── Credential items (about page credentials strip) ── */
.credential-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.credential-item i { font-size: 2rem; color: #D4A853; flex-shrink: 0; }
.credential-item strong { display: block; font-size: 0.9375rem; color: #fff; font-weight: 600; }
.credential-item span { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.credential-item div { display: flex; flex-direction: column; }

/* ── Value icon (about page) ── */
.value-icon {
  width: 48px;
  height: 48px;
  background: #EEF4E5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
}
.value-icon i { font-size: 22px; color: #3d7a24; }
.value-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3d7a24;
  margin-bottom: 1.125rem;
}

/* ── Contact success / errors ── */
.contact-success {
  background: #EEF4E5;
  border: 1px solid #b5d49a;
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
}
.contact-success i { font-size: 3rem; color: #3d7a24; display: block; margin-bottom: 1rem; }
.contact-success h3 { margin-bottom: 0.5rem; }
.contact-success p { color: #555550; font-size: 0.9375rem; }
.contact-errors {
  background: #fff3f3;
  border: 1px solid #f5b8b8;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.contact-errors p { font-size: 0.875rem; color: #c00; margin: 0.25rem 0; display: flex; align-items: center; gap: 0.4rem; }

/* ── Contact Rx note (contact sidebar) ── */
.contact-rx-note {
  display: flex;
  gap: 1rem;
  background: #EEF4E5;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  align-items: flex-start;
}
.contact-rx-note i { font-size: 20px; color: #3d7a24; flex-shrink: 0; margin-top: 2px; }
.contact-rx-note strong { display: block; font-size: 0.875rem; font-weight: 600; color: #1C1C1A; margin-bottom: 0.375rem; }
.contact-rx-note p { font-size: 0.8125rem; color: #555550; line-height: 1.65; margin: 0; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hero-slide-content { padding-left: 2rem; }
  .hero-controls { left: 2rem; }
  .diets-grid { grid-template-columns: repeat(3, 1fr); }
  .credentials-inner { gap: 1.25rem; }
  .about-hero-inner { grid-template-columns: 1fr 280px; gap: 2.5rem; }
}
@media (max-width: 900px) {
  .hero-slider { height: auto; min-height: unset; }
  .hero-slide { position: relative; opacity: 1; pointer-events: auto; display: none; grid-template-columns: 1fr; }
  .hero-slide.active { display: grid; }
  .hero-slide-image { height: 300px; }
  .hero-slide-content { padding: 3rem 1.5rem 5rem; }
  .hero-controls { left: 1.5rem; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .pillar:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .brand-strip-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .diets-grid { grid-template-columns: repeat(2, 1fr); }
  .credentials-inner { gap: 1.25rem; flex-wrap: wrap; }
  .cred-divider { display: none; }
  .diet-tab-bar { top: 72px; }
  .diet-tab { padding: 0.875rem 1rem; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-hero-visual { display: none; }
}
@media (max-width: 640px) {
  section { padding: 3.5rem 0; }
  .container { padding: 0 1.25rem; }
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: #fff; padding: 1.5rem 1.25rem 2rem; flex-direction: column; gap: 1.25rem; border-bottom: 1px solid rgba(28,28,26,0.1); z-index: 100; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .pillars-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .diets-grid { grid-template-columns: 1fr 1fr; }
  .credentials-inner { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
