/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}

img { max-width: 100%; display: block; }

/* ============================================
   TOKENS
   ============================================ */
:root {
  /* Brand */
  --green:        #4caf50;
  --green-dark:   #2e7d32;
  --green-deep:   #1b4d2b;
  --green-soft:   #c8e6c9;
  --sage:         #a5c4a8;
  --orange:       #ff9800;
  --orange-dark:  #ef6c00;
  --orange-soft:  #ffe0b2;
  --yellow:       #fdd835;

  /* Neutrals */
  --cream:        #faf6ee;
  --cream-deep:   #f3eddf;
  --white:        #ffffff;
  --text:         #181818;
  --text-mid:     #4a4a47;
  --text-light:   #7a7a75;
  --border:       #e8e2d3;
  --border-soft:  #f0ebe0;

  /* Effects */
  --radius-lg:    28px;
  --radius:       18px;
  --radius-sm:    12px;
  --shadow-sm:    0 2px 12px rgba(24, 24, 24, 0.04);
  --shadow:       0 8px 28px rgba(24, 24, 24, 0.08);
  --shadow-lg:    0 24px 60px rgba(24, 24, 24, 0.14);
  --transition:   0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--text);
}

.section-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--green-dark);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-title--left { text-align: left; }

.section-subtitle {
  color: var(--text-mid);
  font-size: 1.05rem;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   UTILITY
   ============================================ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 246, 238, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--border-soft);
  box-shadow: 0 1px 16px rgba(0,0,0,0.04);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
}

.nav-logo {
  text-decoration: none;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-icon {
  font-size: 1.3rem;
}

.logo-green   { color: var(--green-dark); }
.logo-orange  { color: var(--orange); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-mid);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.94rem;
  padding: 9px 16px;
  border-radius: 50px;
  transition: all var(--transition);
}

.nav-link:hover {
  color: var(--green-dark);
  background: var(--green-soft);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dark);
  color: var(--white);
  text-decoration: none;
  padding: 11px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: all var(--transition);
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(46, 125, 50, 0.3);
}

.nav-cta-icon { font-size: 0.95rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.hamburger:hover { background: var(--cream-deep); }
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text);
  border-radius: 3px;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 130px 28px 90px;
  background: linear-gradient(170deg, var(--cream) 0%, var(--cream-deep) 100%);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.hero-text {
  animation: fadeInUp 0.95s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-mid);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 26px;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-italic {
  font-style: italic;
  font-weight: 500;
  color: var(--green-dark);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--text-mid);
  margin-bottom: 36px;
  font-weight: 400;
  max-width: 520px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn--primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(46, 125, 50, 0.28);
}
.btn--primary:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(46, 125, 50, 0.36);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn--ghost:hover {
  background: var(--text);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost-light {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}
.btn--ghost-light:hover {
  background: var(--white);
  color: var(--green-deep);
  border-color: var(--white);
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero media */
.hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  animation: fadeInUp 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero-photo {
  position: absolute;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo--main {
  inset: 0 0 0 0;
  width: 80%;
  height: 90%;
  margin-left: auto;
  border-radius: 200px 200px 28px 28px;
}

.hero-photo--small {
  width: 42%;
  aspect-ratio: 1;
  bottom: 0;
  left: 0;
  border-radius: 24px;
  border: 6px solid var(--cream);
  z-index: 2;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
}

.hero-blob--1 {
  width: 220px;
  height: 220px;
  background: rgba(76, 175, 80, 0.32);
  top: -20px;
  right: -20px;
}

.hero-blob--2 {
  width: 180px;
  height: 180px;
  background: rgba(255, 152, 0, 0.28);
  bottom: 40px;
  left: -10px;
}

.hero-tag {
  position: absolute;
  background: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow);
  z-index: 3;
  animation: floatTag 3s ease-in-out infinite;
}

.hero-tag--paw {
  top: 15%;
  left: -2%;
  background: var(--yellow);
  animation-delay: 0.4s;
}

.hero-tag--heart {
  top: 50%;
  right: -4%;
  color: var(--orange);
  font-size: 1.7rem;
  animation-delay: 1.2s;
}

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

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--white);
  padding: 38px 0;
  border-bottom: 1px solid var(--border-soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.trust-icon {
  font-size: 1.7rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-text strong {
  color: var(--text);
  font-weight: 700;
  font-size: 0.98rem;
}

.trust-text span {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.4;
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories-section {
  padding: 100px 0;
  background: var(--cream);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.cat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  text-decoration: none;
  color: var(--text);
  transition: all var(--transition);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-soft);
}

.cat-photo {
  border-radius: 200px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream-deep);
}

.cat-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cat-card:hover .cat-photo img {
  transform: scale(1.08);
}

.cat-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 8px 6px;
}

.cat-name {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.cat-cta {
  font-size: 0.88rem;
  color: var(--green-dark);
  font-weight: 600;
  transition: transform var(--transition);
}

.cat-card:hover .cat-cta { transform: translateX(4px); }

/* ============================================
   PRODUCTS
   ============================================ */
.products-section {
  padding: 100px 0;
  background: var(--white);
}

.filter-bar {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.94rem;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--green-dark);
  color: var(--green-dark);
}

.filter-btn.active {
  background: var(--text);
  border-color: var(--text);
  color: var(--white);
  font-weight: 600;
}

/* Product grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  transition: opacity 0.22s ease;
}

.products-grid.fading { opacity: 0; }

/* Product card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--green-soft);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream-deep);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 13px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  backdrop-filter: blur(8px);
}

.product-favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.product-favorite:hover {
  background: var(--white);
  transform: scale(1.1);
}

.product-favorite.active { color: var(--orange-dark); }

.product-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.product-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 6px;
}

.product-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 6px;
}

.product-price {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.product-btn {
  padding: 10px 18px;
  background: var(--green-dark);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.product-btn:hover {
  background: var(--green-deep);
  transform: scale(1.04);
}

.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ============================================
   ABOUT
   ============================================ */
.about-section {
  padding: 110px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-media {
  position: relative;
  aspect-ratio: 4 / 5;
}

.about-photo {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo--main {
  inset: 0 30px 30px 0;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border-radius: 200px 28px 28px 28px;
}

.about-photo--floating {
  width: 38%;
  aspect-ratio: 1;
  bottom: 0;
  right: 0;
  border-radius: 28px;
  border: 8px solid var(--cream);
  z-index: 2;
}

.about-badge {
  position: absolute;
  top: 30px;
  left: -10px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  box-shadow: var(--shadow);
  z-index: 3;
}

.about-badge-num {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange-dark);
}

.about-badge-text {
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 500;
}

.about-text .section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  margin-bottom: 22px;
}

.about-body {
  color: var(--text-mid);
  font-size: 1.04rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-body strong { color: var(--text); font-weight: 600; }

.about-features {
  list-style: none;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 500;
}

.about-feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text);
  text-decoration: none;
  transition: all var(--transition);
}

.about-pill--link:hover {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(46, 125, 50, 0.32);
}

/* ============================================
   VISIT CTA
   ============================================ */
.visit-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.visit-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 152, 0, 0.18);
  border-radius: 50%;
  filter: blur(60px);
}

.visit-cta::after {
  content: '🐾';
  position: absolute;
  font-size: 8rem;
  opacity: 0.06;
  bottom: 20px;
  left: 40px;
  transform: rotate(-15deg);
}

.visit-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.visit-eyebrow { color: var(--yellow) !important; }

.visit-cta-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-bottom: 16px;
  color: var(--white);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.visit-italic { font-style: italic; color: var(--yellow); font-weight: 500; }

.visit-cta-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 38px;
}

.visit-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.visit-cta .btn--primary {
  background: var(--white);
  color: var(--green-deep);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

.visit-cta .btn--primary:hover {
  background: var(--cream);
  color: var(--green-deep);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.78);
}

.footer-main { padding: 72px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--white);
}

.footer-logo-green  { color: #a5d6a7; }
.footer-logo-orange { color: var(--orange); }

.footer-tagline {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 8px;
}

.footer-location {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.86rem;
}

.footer-heading {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-hours-list,
.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-hours-list li span:last-child {
  color: var(--white);
  font-weight: 500;
}

.footer-list li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--transition);
  cursor: pointer;
}

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

.footer-parking {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-top: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24, 24, 24, 0.55);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--white);
  border-radius: 24px;
  max-width: 720px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.28);
  transform: translateY(30px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 90vh;
}

.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-image {
  background: var(--cream-deep);
  overflow: hidden;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.modal-content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 5;
  box-shadow: var(--shadow-sm);
}

.modal-close:hover {
  background: var(--text);
  color: var(--white);
  transform: rotate(90deg);
}

.modal-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 13px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 16px;
}

.modal-title {
  font-family: 'Fraunces', serif;
  font-size: 1.7rem;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
  font-weight: 600;
}

.modal-desc {
  color: var(--text-mid);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 26px;
  flex: 1;
}

.modal-price-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.modal-price-label {
  display: block;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.modal-price {
  font-family: 'Fraunces', serif;
  font-size: 1.85rem;
  color: var(--text);
  font-weight: 700;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-media {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-media {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-cta-text { display: none; }
  .nav-cta { padding: 11px 14px; }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 18px 22px 28px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 14px 40px rgba(0,0,0,0.08);
    display: none;
    z-index: 999;
    gap: 4px;
  }

  .nav-links.open {
    display: flex;
    animation: fadeInUp 0.3s ease both;
  }

  .nav-link {
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
  }

  .hero { padding: 110px 22px 80px; }

  .hero-stats { gap: 18px; }
  .hero-stat-divider { height: 30px; }

  .hero-tag { width: 48px; height: 48px; font-size: 1.3rem; }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .filter-bar { gap: 6px; }
  .filter-btn { padding: 9px 18px; font-size: 0.88rem; }

  .modal-box {
    grid-template-columns: 1fr;
    max-height: 88vh;
  }

  .modal-image img {
    min-height: 240px;
    max-height: 280px;
  }

  .modal-content { padding: 28px 24px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand { grid-column: unset; }

  .visit-cta-actions { flex-direction: column; }
  .visit-cta-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 520px) {
  .cat-grid { grid-template-columns: 1fr; gap: 18px; }
  .cat-card { flex-direction: row; gap: 16px; padding: 16px; }
  .cat-photo { width: 88px; height: 88px; aspect-ratio: 1; flex-shrink: 0; }
  .cat-body { flex-direction: column; align-items: flex-start; gap: 4px; padding: 0; flex: 1; }

  .hero-tag--paw { width: 44px; height: 44px; left: -10px; }
  .hero-tag--heart { width: 44px; height: 44px; right: -8px; }

  .products-grid { grid-template-columns: 1fr; }

  .trust-grid { grid-template-columns: 1fr; }
}
