/* ─── TOKENS ──────────────────────────────────────────────────────────────── */
:root {
  --cream:   #FAF7F2;
  --cream2:  #F2EDE4;
  --cream3:  #EAE2D6;
  --green:   #2C5F2E;
  --green2:  #3D7A40;
  --sage:    #7BA05B;
  --terra:   #C4622D;
  --terra2:  #A84F24;
  --brown:   #8B5E3C;
  --bark:    #2E2318;
  --text:    #1C1C1A;
  --muted:   #7A7268;
  --border:  #DDD5C8;
  --white:   #FFFFFF;
  --font:    'Manrope', 'Inter', system-ui, sans-serif;
  --ease:    cubic-bezier(.22,.68,0,1.2);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ─── RESET ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--cream); color: var(--text); line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* ─── LAYOUT ─────────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: 24px; }

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn i { width: 16px; height: 16px; flex-shrink: 0; }

.btn--primary { background: var(--green); color: var(--white); box-shadow: 0 4px 20px rgba(44,95,46,.35); }
.btn--primary:hover { background: var(--green2); box-shadow: 0 8px 32px rgba(44,95,46,.4); }

.btn--glass {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.btn--glass:hover { background: rgba(255,255,255,.25); }

.btn--sm { padding: 10px 20px; font-size: .84rem; }
.btn--lg { padding: 18px 36px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--add {
  width: 100%;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  border-radius: 12px;
  padding: 13px 20px;
  font-size: .9rem;
  font-weight: 600;
  transition: background .25s, transform .25s var(--ease);
}
.btn--add:hover { background: var(--green2); transform: translateY(-2px); }

/* ─── TYPOGRAPHY HELPERS ─────────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  padding: 5px 14px;
  background: var(--cream3);
  color: var(--green);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.15; letter-spacing: -.03em; margin-bottom: 20px; }
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 560px; }

/* ─── GSAP INITIAL STATE ─────────────────────────────────────────────────── */
.js-fade, .js-card { opacity: 0; transform: translateY(28px); }

/* ─── HEADER ─────────────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background .35s, box-shadow .35s, padding .35s;
}
.header.scrolled {
  background: rgba(250,247,242,.94);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
  padding: 10px 0;
}
.header__inner { display: flex; align-items: center; gap: 32px; }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--text);
}
.logo--light { color: var(--white); }
.logo__icon { flex-shrink: 0; }

.nav { display: flex; gap: 32px; margin-inline-start: auto; }
.nav a { font-size: .88rem; font-weight: 500; color: var(--muted); transition: color .25s; }
.nav a:hover { color: var(--text); }

.header__right { display: flex; align-items: center; gap: 12px; }

.cart-btn {
  position: relative;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--cream2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  transition: background .25s;
}
.cart-btn:hover { background: var(--cream3); }
.cart-btn i { width: 20px; height: 20px; }
.cart-badge {
  position: absolute;
  top: -5px; right: -5px;
  min-width: 18px; height: 18px;
  background: var(--terra);
  color: var(--white);
  border-radius: 100px;
  font-size: .65rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}

.burger { display: none; padding: 8px; color: var(--text); margin-inline-start: auto; }
.burger i { width: 22px; height: 22px; }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  padding: 20px 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  border-radius: 0 0 20px 20px;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; font-weight: 500; color: var(--text); }

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.28) 60%, transparent 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding-block-start: 96px;
  max-width: 720px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 24px;
}
.hero__eyebrow i { width: 15px; height: 15px; color: var(--sage); }
.hero__title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.04em;
  margin-bottom: 20px;
}
.hero__title span { font-weight: 300; opacity: .8; }
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,.06);
  overflow: hidden;
  width: fit-content;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 36px;
}
.hero__stat + .hero__stat { border-left: 1px solid rgba(255,255,255,.2); }
.hero__stat strong { font-size: 1.9rem; font-weight: 800; line-height: 1; }
.hero__stat span { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 5px; font-weight: 500; white-space: nowrap; }
.hero__scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  opacity: .5;
  animation: bounce 2s ease-in-out infinite;
  z-index: 1;
}
.hero__scroll i { width: 24px; height: 24px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── STORY ──────────────────────────────────────────────────────────────── */
.story { padding: 120px 0; background: var(--cream); }
.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story__text p { font-size: 1.05rem; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.story__nums {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.story__num { display: flex; flex-direction: column; }
.story__num b { font-size: 2rem; font-weight: 800; color: var(--green); line-height: 1; }
.story__num span { font-size: .8rem; color: var(--muted); margin-top: 4px; font-weight: 500; }
.story__visual { position: relative; }
.story__img { width: 100%; border-radius: 24px; aspect-ratio: 4/5; object-fit: cover; }
.story__badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .9rem;
}
.story__badge i { color: var(--terra); width: 20px; height: 20px; }

/* ─── PRODUCTS ───────────────────────────────────────────────────────────── */
.products { padding: 120px 0; background: var(--cream2); }
.products > .container > .section-sub { margin-bottom: 56px; }
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: transform .35s var(--ease), box-shadow .35s;
  position: relative;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(0,0,0,.13); }
.product-card--featured { box-shadow: 0 4px 24px rgba(44,95,46,.18); }

.product-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: var(--terra);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
}

.product-card__img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.product-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.product-card:hover .product-card__img-wrap img { transform: scale(1.05); }

.product-card__tag {
  position: absolute;
  bottom: 12px; right: 12px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.product-card__tag--joints { background: rgba(139,94,60,.9); color: var(--white); }
.product-card__tag--coat   { background: rgba(123,160,91,.9); color: var(--white); }
.product-card__tag--vit    { background: rgba(196,98,45,.9);  color: var(--white); }

.product-card__body { padding: 24px; }
.product-card__body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.product-card__body > p { font-size: .9rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }

.product-card__list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.product-card__list li { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--muted); }
.product-card__list i { width: 15px; height: 15px; color: var(--sage); flex-shrink: 0; }

.product-card__variants { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.variant-btn {
  padding: 7px 13px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  font-family: var(--font);
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  transition: border-color .2s, color .2s, background .2s;
}
.variant-btn.active { border-color: var(--green); color: var(--green); background: rgba(44,95,46,.06); }
.variant-btn:hover:not(.active) { border-color: var(--text); color: var(--text); }

/* ─── VIDEO ──────────────────────────────────────────────────────────────── */
.video-section { padding: 120px 0; background: var(--cream); }
.video-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.video-section__text .section-sub { margin-bottom: 36px; }
.timeline { display: flex; flex-direction: column; margin: 28px 0 36px; border-left: 2px solid var(--cream3); }
.timeline__item {
  padding: 0 0 28px 24px;
  position: relative;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: -5px; top: 6px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.timeline__week { font-size: .8rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.timeline__text { font-size: .95rem; color: var(--muted); }
.video-wrap { position: relative; padding-bottom: 56.25%; border-radius: 20px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,.15); }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ─── BREEDS ─────────────────────────────────────────────────────────────── */
.breeds { padding: 120px 0; background: var(--cream2); }
.breeds__controls {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
  margin-top: 32px;
}
.breed-search-wrap {
  position: relative;
  flex: 1;
  min-width: 220px;
  max-width: 360px;
}
.search-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--muted);
  pointer-events: none;
}
.search-input {
  width: 100%;
  padding: 11px 14px 11px 40px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  font-family: var(--font);
  font-size: .9rem;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color .2s;
}
.search-input:focus { border-color: var(--green); }
.breeds__filter { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  padding: 9px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-family: var(--font);
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--white);
  transition: all .2s;
}
.filter-btn.active { border-color: var(--green); color: var(--green); background: rgba(44,95,46,.06); }
.filter-btn:hover:not(.active) { border-color: var(--text); color: var(--text); }

.breeds__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.breed-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.breed-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.breed-card__img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.breed-card__body { padding: 14px 16px; }
.breed-card__name { font-size: .92rem; font-weight: 700; margin-bottom: 4px; }
.breed-card__meta { font-size: .75rem; color: var(--muted); display: flex; gap: 8px; align-items: center; }
.breed-card__size {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 700;
}
.breed-card__size--large  { background: rgba(139,94,60,.12); color: var(--brown); }
.breed-card__size--medium { background: rgba(123,160,91,.12); color: var(--sage); }
.breed-card__size--small  { background: rgba(196,98,45,.12);  color: var(--terra); }

/* ─── MODAL ──────────────────────────────────────────────────────────────── */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }
.modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(4px); }
.modal__box {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,.2);
}
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  z-index: 1;
  transition: background .2s;
}
.modal__close:hover { background: var(--cream3); }
.modal__close i { width: 18px; height: 18px; }

.breed-modal__hero { height: 280px; overflow: hidden; border-radius: 24px 24px 0 0; }
.breed-modal__hero img { width: 100%; height: 100%; object-fit: cover; }
.breed-modal__content { padding: 28px 32px 32px; }
.breed-modal__name { font-size: 1.6rem; font-weight: 800; margin-bottom: 4px; }
.breed-modal__meta { font-size: .85rem; color: var(--muted); margin-bottom: 24px; }
.breed-modal__section { margin-bottom: 20px; }
.breed-modal__section h4 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 10px; }
.breed-issues { display: flex; flex-wrap: wrap; gap: 8px; }
.breed-issue {
  padding: 5px 14px;
  background: rgba(196,98,45,.08);
  color: var(--terra2);
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
}
.breed-recs { display: flex; flex-direction: column; gap: 10px; }
.breed-rec {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: var(--cream2);
  border-radius: 12px;
}
.breed-rec__icon { font-size: 1.4rem; flex-shrink: 0; }
.breed-rec__name { font-size: .9rem; font-weight: 700; margin-bottom: 3px; }
.breed-rec__desc { font-size: .82rem; color: var(--muted); }
.breed-modal__dosage {
  background: rgba(44,95,46,.06);
  border: 1px solid rgba(44,95,46,.15);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: .88rem;
  color: var(--text);
  margin-bottom: 20px;
}
.breed-modal__note { font-size: .82rem; color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
.breed-modal__cta { width: 100%; }

/* ─── WHY — editorial ────────────────────────────────────────────────────── */
.why {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.why__bg { position: absolute; inset: 0; }
.why__bg img { width: 100%; height: 100%; object-fit: cover; }
.why__overlay { position: absolute; inset: 0; background: rgba(22,16,8,.82); }
.why__inner { position: relative; z-index: 1; }
.why__head { margin-bottom: 64px; }
.why__head .section-title { color: var(--cream); }

.why__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.why__fact {
  display: flex;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.why__fact:nth-child(odd) { padding-right: 56px; border-right: 1px solid rgba(255,255,255,.1); }
.why__fact:nth-child(even) { padding-left: 56px; }
.why__num {
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(255,255,255,.12);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  letter-spacing: -.04em;
}
.why__fact-body h4 { font-size: 1rem; font-weight: 700; color: var(--cream); margin-bottom: 8px; }
.why__fact-body p { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ─── GALLERY ────────────────────────────────────────────────────────────── */
.gallery { padding: 120px 0; background: var(--cream); }
.gallery > .container > .section-sub { margin-bottom: 56px; }
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.gallery__card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.gallery__card > p { padding: 16px 20px; font-size: .85rem; color: var(--muted); }
.gallery__imgs { display: grid; grid-template-columns: 1fr 1fr; }
.gallery__before, .gallery__after { position: relative; aspect-ratio: 1; overflow: hidden; }
.gallery__before img, .gallery__after img { width: 100%; height: 100%; object-fit: cover; }
.gallery__label {
  position: absolute;
  top: 10px; left: 10px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
}
.gallery__label--before { background: rgba(0,0,0,.5); color: var(--white); }
.gallery__label--after  { background: var(--green); color: var(--white); }

/* ─── REVIEWS ────────────────────────────────────────────────────────────── */
.reviews { padding: 120px 0; background: var(--cream2); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.review-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  transition: box-shadow .3s, transform .3s var(--ease);
}
.review-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,.1); transform: translateY(-4px); }
.review-card__stars { display: flex; gap: 3px; color: #F5A623; margin-bottom: 16px; }
.review-card__stars i { width: 15px; height: 15px; fill: currentColor; }
.review-card > p { font-size: .9rem; line-height: 1.75; color: var(--text); margin-bottom: 20px; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.review-card__author strong { display: block; font-size: .88rem; font-weight: 700; }
.review-card__author span { display: block; font-size: .78rem; color: var(--muted); margin-top: 2px; }

/* ─── CTA BANNER ─────────────────────────────────────────────────────────── */
.cta-banner { position: relative; padding: 120px 0; overflow: hidden; text-align: center; }
.cta-banner__bg { position: absolute; inset: 0; }
.cta-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.58); }
.cta-banner__content { position: relative; z-index: 1; color: var(--white); max-width: 600px; margin-inline: auto; }
.cta-banner__content h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -.03em; margin-bottom: 16px; }
.cta-banner__content > p { font-size: 1.05rem; color: rgba(255,255,255,.78); margin-bottom: 36px; line-height: 1.7; }

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq { padding: 120px 0; background: var(--cream); }
.faq__inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.faq__left { position: sticky; top: 100px; }
.faq__left .section-title { margin-bottom: 28px; }
.faq__img { width: 100%; border-radius: 20px; margin-top: 32px; object-fit: cover; aspect-ratio: 4/5; }
.faq__list { display: flex; flex-direction: column; gap: 8px; }

.faq__item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq__item[open] { border-color: var(--green); }
.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.faq__item summary:hover { background: var(--cream2); }
.faq__item summary i { width: 18px; height: 18px; flex-shrink: 0; color: var(--muted); transition: transform .3s var(--ease); }
.faq__item[open] summary i { transform: rotate(45deg); color: var(--green); }
.faq__item p { padding: 0 20px 18px; font-size: .9rem; color: var(--muted); line-height: 1.75; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.footer { background: var(--bark); padding: 80px 0 32px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand p { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.7; margin-top: 12px; max-width: 240px; }
.footer__socials { display: flex; gap: 10px; margin-top: 20px; }
.footer__socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s;
}
.footer__socials a:hover { background: var(--green); color: var(--white); border-color: transparent; }
.footer__socials i { width: 16px; height: 16px; }
.footer__cols { display: contents; }
.footer__cols > div h5 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer__cols > div a { display: block; font-size: .88rem; color: rgba(255,255,255,.55); margin-bottom: 10px; transition: color .2s; }
.footer__cols > div a:hover { color: var(--white); }
.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: .8rem; color: rgba(255,255,255,.3); }

/* ─── CART DRAWER ────────────────────────────────────────────────────────── */
.cart-drawer { position: fixed; inset: 0; z-index: 300; pointer-events: none; }
.cart-drawer.open { pointer-events: all; }
.cart-drawer__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  transition: opacity .3s;
}
.cart-drawer.open .cart-drawer__overlay { opacity: 1; }
.cart-drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 400px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s var(--ease-out);
  box-shadow: -8px 0 32px rgba(0,0,0,.12);
}
.cart-drawer.open .cart-drawer__panel { transform: translateX(0); }
.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer__header h3 { font-size: 1.1rem; font-weight: 700; }
.cart-drawer__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  transition: background .2s;
}
.cart-drawer__close:hover { background: var(--cream3); }
.cart-drawer__close i { width: 18px; height: 18px; }
.cart-drawer__items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 60px 20px; text-align: center; }
.cart-empty__icon { width: 48px; height: 48px; color: var(--muted); }
.cart-empty p { font-size: .95rem; color: var(--muted); }
.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--cream2);
  border-radius: 12px;
  margin-bottom: 10px;
}
.cart-item__name { flex: 1; font-size: .9rem; font-weight: 600; }
.cart-item__qty { display: flex; align-items: center; gap: 8px; }
.cart-item__qty button { width: 26px; height: 26px; border-radius: 8px; background: var(--white); font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.cart-item__qty button:hover { background: var(--cream3); }
.cart-item__qty span { font-size: .9rem; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item__price { font-size: .9rem; font-weight: 700; white-space: nowrap; }
.cart-item__remove { color: var(--muted); transition: color .2s; display: flex; }
.cart-item__remove:hover { color: var(--terra); }
.cart-item__remove i { width: 16px; height: 16px; }
.cart-drawer__footer { padding: 16px 24px; border-top: 1px solid var(--border); }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 16px; font-size: 1rem; }
.cart-total strong { font-size: 1.2rem; font-weight: 800; }

/* ─── ORDER MODAL ────────────────────────────────────────────────────────── */
.order-modal {
  position: fixed; inset: 0; z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.order-modal.open { display: flex; }
.order-modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(4px); }
.order-modal__box {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,.2);
}
#orderContent { padding: 32px; }
#orderContent h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.order-modal__sub { font-size: .9rem; color: var(--muted); margin-bottom: 24px; }
.order-summary {
  background: var(--cream2);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  font-size: .88rem;
}
.order-summary-item { display: flex; justify-content: space-between; padding: 4px 0; }
.order-summary-total { display: flex; justify-content: space-between; padding-top: 12px; margin-top: 8px; border-top: 1px solid var(--border); font-weight: 700; font-size: .95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.form-group input, .form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: var(--font);
  font-size: .92rem;
  background: var(--cream2);
  color: var(--text);
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--green); background: var(--white); }
.payment-opts { display: flex; flex-direction: column; gap: 8px; }
.payment-opt { display: flex; align-items: center; gap: 8px; font-size: .9rem; cursor: pointer; }
.form-disclaimer { font-size: .75rem; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.5; }

.order-success {
  padding: 48px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.order-success__icon { width: 64px; height: 64px; color: var(--green); }
.order-success h3 { font-size: 1.5rem; font-weight: 800; }
.order-success p { font-size: .95rem; color: var(--muted); max-width: 320px; line-height: 1.6; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .story__inner { gap: 48px; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .breeds__grid { grid-template-columns: repeat(3, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .video-section__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .why__facts { grid-template-columns: 1fr; }
  .why__fact:nth-child(odd) { padding-right: 0; border-right: none; }
  .why__fact:nth-child(even) { padding-left: 0; }
}

@media (max-width: 768px) {
  .nav, .header__right .btn { display: none; }
  .burger { display: flex; }
  .story__inner { grid-template-columns: 1fr; }
  .story__badge { right: 12px; }
  .products__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .reviews__grid { grid-template-columns: 1fr; }
  .faq__inner { grid-template-columns: 1fr; }
  .faq__left { position: static; }
  .faq__img { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .cart-drawer__panel { width: 100%; }
  .breeds__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats { gap: 24px; }
  .gallery__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .breeds__grid { grid-template-columns: repeat(2, 1fr); }
}
