@font-face {
  font-family: "Statos";
  src: url("fonts/Statos-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #f7fbff;
  --cream-2: #fff8d6;
  --orange: #ffcf24;
  --orange-2: #1f6feb;
  --green: #1f6feb;
  --button-blue: #1f6feb;
  --button-blue-hover: #185abc;
  --ink: #12233f;
  --muted: #58677e;
  --white: #ffffff;
  --line: rgba(31, 111, 235, 0.14);
  --shadow: 0 24px 70px rgba(31, 111, 235, 0.16);
  --soft-shadow: 0 14px 36px rgba(31, 111, 235, 0.1);
  --scroll-shift: 0px;
  --wave-cream: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150' preserveAspectRatio='none'%3E%3Cpath fill='%23f7fbff' d='M0,0 L1440,0 L1440,44 C1320,84 1210,52 1086,44 C940,34 846,74 710,76 C560,78 454,28 320,28 C200,28 100,62 0,46 Z'/%3E%3C/svg%3E");
  --wave-cream-bottom: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150' preserveAspectRatio='none'%3E%3Cpath fill='%23f7fbff' d='M0,150 L1440,150 L1440,104 C1320,64 1210,96 1086,104 C940,114 846,74 710,72 C560,70 454,120 320,120 C200,120 100,86 0,102 Z'/%3E%3C/svg%3E");
  --wave-green-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150' preserveAspectRatio='none'%3E%3Cpath fill='%23000' d='M0,150 L1440,150 L1440,62 C1320,102 1210,70 1086,62 C940,52 846,92 710,94 C560,96 454,46 320,46 C200,46 100,80 0,64 Z'/%3E%3C/svg%3E");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  color: var(--ink);
  font-family: "Nunito", Arial, sans-serif;
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 207, 36, 0.1), transparent 26%),
    radial-gradient(circle at 86% 12%, rgba(112, 207, 147, 0.16), transparent 24%),
    radial-gradient(circle at 20% 20%, rgba(47, 36, 31, 0.035) 0 1px, transparent 1px),
    var(--cream);
  background-size: auto, auto, 26px 26px, auto;
  overflow-x: hidden;
}

main {
  max-width: 100%;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand {
  font-family: "Statos", "Nunito", Arial, sans-serif;
}

.section-shell {
  width: min(1160px, calc(100% - 34px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 34px));
  min-height: 82px;
  margin: 18px auto 0;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 70px rgba(132, 76, 25, 0.14);
  backdrop-filter: blur(22px);
  animation: headerDrop 680ms ease both;
  transition: min-height 220ms ease, padding 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  min-height: 68px;
  padding-top: 8px;
  padding-bottom: 8px;
  box-shadow: 0 18px 50px rgba(132, 76, 25, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  max-width: 330px;
  color: var(--orange);
  font-size: clamp(1.06rem, 1.5vw, 1.34rem);
  font-weight: 900;
  line-height: 1.05;
}

.brand-name {
  min-width: 0;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.logo-shell {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(31, 111, 235, 0.18);
  overflow: hidden;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  position: relative;
  padding: 12px 14px;
  border-radius: 999px;
  color: #27364d;
  font-weight: 900;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 16px;
  bottom: 5px;
  left: 16px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: var(--orange);
  background: rgba(255, 207, 36, 0.08);
  transform: translateY(-1px);
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.social-links,
.contact-social-links,
.footer-social-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-links a,
.contact-social-links a,
.footer-social-links a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.social-links a:hover,
.contact-social-links a:hover,
.footer-social-links a:hover {
  background: #fff;
  box-shadow: 0 18px 34px rgba(31, 111, 235, 0.18);
  transform: translateY(-3px);
}

.social-links img,
.contact-social-links img,
.footer-social-links img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(31, 111, 235, 0.12);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--button-blue);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  min-height: calc(100vh - 110px);
  padding: clamp(74px, 9vw, 122px) 0 44px;
}

.hero::before {
  position: absolute;
  top: 8%;
  right: -16vw;
  width: 34vw;
  min-width: 330px;
  height: 34vw;
  min-height: 330px;
  border-radius: 42% 58% 54% 46%;
  background: linear-gradient(135deg, rgba(255, 207, 36, 0.2), rgba(31, 111, 235, 0.1));
  content: "";
  filter: blur(1px);
}

.hero-copy,
.hero-visual,
.trust-strip {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 8vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h1 span {
  color: var(--orange);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 1;
}

h3 {
  font-size: 1.2rem;
}

.hero-text,
.about p,
.location-copy p,
.contact p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 207, 36, 0.18);
  border-radius: 999px;
  color: #27364d;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 28px rgba(31, 111, 235, 0.08);
}

.note-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 50%;
  overflow: hidden;
}

.person-icon::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 9px 0 3px rgba(255, 207, 36, 0.34);
  content: "";
  transform: translateY(-3px);
}

.heart-chip {
  border: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
}

.heart-chip::before {
  width: 15px;
  height: 15px;
  background: #fff;
  clip-path: polygon(50% 86%, 12% 48%, 10% 25%, 27% 12%, 50% 28%, 73% 12%, 90% 25%, 88% 48%);
  content: "";
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
}

.primary-button,
.product-buy-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 56px;
  padding: 0 25px;
  border-radius: 999px;
  color: #fff;
  font-weight: 1000;
  background: var(--button-blue);
  box-shadow: 0 18px 34px rgba(31, 111, 235, 0.24);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-button {
  min-height: 64px;
  padding: 0 32px;
  font-size: 1.08rem;
}

.primary-button img,
.product-buy-button img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.primary-button:hover,
.product-buy-button:hover {
  background: var(--button-blue-hover);
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(31, 111, 235, 0.3);
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--orange);
  font-size: 1.06rem;
  font-weight: 1000;
}

.secondary-link span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 207, 36, 0.1);
  transition: transform 180ms ease;
}

.secondary-link:hover span {
  transform: translateX(4px);
}

.hero-visual {
  --mx: 0px;
  --my: 0px;
  min-height: 560px;
  transform: translate(var(--mx), var(--my));
  transition: transform 180ms ease;
}

.blob {
  position: absolute;
  pointer-events: none;
}

.blob-main {
  right: 0;
  bottom: 44px;
  width: min(92%, 610px);
  height: 380px;
  border-radius: 42% 58% 40% 60% / 58% 46% 54% 42%;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  box-shadow: inset 0 -28px 60px rgba(13, 63, 130, 0.12), 0 34px 70px rgba(255, 207, 36, 0.22);
  animation: blobFloat 8s ease-in-out infinite;
}

.blob-light {
  right: 36px;
  bottom: 4px;
  width: min(92%, 590px);
  height: 112px;
  border-radius: 50%;
  background: rgba(255, 246, 233, 0.84);
  box-shadow: 0 18px 38px rgba(31, 111, 235, 0.12);
}

.pet-window {
  position: absolute;
  right: 64px;
  bottom: 26px;
  width: min(76%, 440px);
  aspect-ratio: 0.86;
  border-radius: 42% 58% 48% 52% / 52% 42% 58% 48%;
  overflow: hidden;
  filter: drop-shadow(0 34px 34px rgba(80, 45, 21, 0.22));
  animation: petFloat 6s ease-in-out infinite;
}

.hero-pets-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: translateY(38px);
}

.floating-doodle {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.doodle-heart {
  top: 124px;
  right: 82px;
  width: 116px;
  height: 86px;
  border: 3px solid rgba(255, 207, 36, 0.3);
  border-radius: 42% 58% 44% 56%;
  background: rgba(255, 255, 255, 0.55);
  animation: lazyFloat 5.8s ease-in-out infinite;
}

.doodle-heart::before {
  position: absolute;
  inset: 28px 39px;
  background: var(--orange);
  clip-path: polygon(50% 86%, 12% 48%, 10% 25%, 27% 12%, 50% 28%, 73% 12%, 90% 25%, 88% 48%);
  content: "";
}

.doodle-bone {
  left: 54px;
  bottom: 120px;
  width: 64px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  transform: rotate(-14deg);
}

.doodle-bone::before,
.doodle-bone::after {
  position: absolute;
  top: -8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 0 rgba(255, 255, 255, 0.72);
  content: "";
}

.doodle-bone::before {
  left: -4px;
}

.doodle-bone::after {
  right: -4px;
}

.trust-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 14px;
  padding: 22px 26px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero::after,
.products::after,
.about::after,
.location::after,
.reviews::after,
.contact::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 0;
  height: clamp(46px, 6vw, 92px);
  background-image: var(--wave-cream-bottom);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
  pointer-events: none;
}

.hero::after {
  display: none;
}

.hero > *,
.about > *,
.location > *,
.reviews > *,
.contact > * {
  position: relative;
  z-index: 1;
}

.trust-strip article {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 8px 20px;
  border-right: 1px solid rgba(255, 207, 36, 0.16);
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 1000;
}

.trust-strip small {
  color: var(--muted);
  font-weight: 700;
}

.strip-icon,
.mini-icon {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.paw-icon::before,
.ambient-paws span::before {
  position: absolute;
  left: 10px;
  bottom: 6px;
  width: 18px;
  height: 16px;
  border-radius: 50% 50% 42% 42%;
  background: var(--orange);
  content: "";
}

.paw-icon::after,
.ambient-paws span::after {
  position: absolute;
  left: 2px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 14px -6px 0 var(--orange), 28px 0 0 var(--orange);
  content: "";
}

.medal-icon {
  border: 3px solid var(--orange);
  border-radius: 50%;
}

.medal-icon::before {
  position: absolute;
  inset: 10px;
  background: var(--orange);
  clip-path: polygon(50% 0, 62% 36%, 100% 36%, 69% 57%, 81% 100%, 50% 74%, 19% 100%, 31% 57%, 0 36%, 38% 36%);
  content: "";
}

.home-icon::before {
  position: absolute;
  inset: 9px 7px 7px;
  border: 3px solid var(--orange);
  border-top: 0;
  border-radius: 4px;
  content: "";
}

.home-icon::after {
  position: absolute;
  top: 5px;
  left: 9px;
  width: 22px;
  height: 22px;
  border-top: 3px solid var(--orange);
  border-left: 3px solid var(--orange);
  content: "";
  transform: rotate(45deg);
}

.star-icon::before {
  position: absolute;
  inset: 3px;
  background: var(--orange);
  clip-path: polygon(50% 0, 62% 34%, 98% 35%, 69% 56%, 79% 91%, 50% 70%, 21% 91%, 31% 56%, 2% 35%, 38% 34%);
  content: "";
}

.products {
  position: relative;
  margin: 76px 0 56px;
  padding: clamp(132px, 13vw, 176px) 0 clamp(70px, 8vw, 100px);
  border-radius: 0 0 64px 64px;
  background:
    radial-gradient(circle at 15% 30%, rgba(255, 255, 255, 0.24), transparent 22%),
    linear-gradient(135deg, #3d8bff, var(--green));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26);
  overflow: visible;
}

.products::before {
  position: absolute;
  top: clamp(-102px, -7vw, -66px);
  right: 0;
  left: 0;
  z-index: 0;
  height: clamp(104px, 10vw, 150px);
  background:
    radial-gradient(circle at 15% 30%, rgba(255, 255, 255, 0.24), transparent 22%),
    linear-gradient(135deg, #3d8bff, var(--green));
  mask-image: var(--wave-green-mask);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  -webkit-mask-image: var(--wave-green-mask);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  content: "";
  pointer-events: none;
}

.products::after {
  background-image: var(--wave-cream-bottom);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.product-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.product-copy h2,
.products .eyebrow {
  color: #12233f;
}

.product-copy p {
  max-width: 500px;
  color: rgba(18, 35, 63, 0.78);
  font-size: 1.14rem;
  line-height: 1.65;
}

.product-badges,
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-badges {
  margin: 22px 0 12px;
}

.product-tags {
  margin-top: 0;
}

.product-badges span,
.product-tags span,
.floating-seal {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: #164f9f;
  font-weight: 1000;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 24px rgba(45, 80, 53, 0.1);
}

.product-tags span {
  color: #174f9f;
}

.product-buy-button {
  width: fit-content;
  margin-top: 26px;
}

.product-display {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
  animation: lazyFloat 6.4s ease-in-out infinite;
}

.product-display::before {
  position: absolute;
  inset: 48px 28px 18px;
  border-radius: 54% 46% 45% 55%;
  background: rgba(255, 255, 255, 0.28);
  content: "";
  filter: blur(1px);
}

.product-photo {
  position: relative;
  z-index: 1;
  display: none;
  width: min(100%, 630px);
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 28px 24px rgba(42, 31, 24, 0.2));
  transition: transform 300ms ease, filter 300ms ease;
}

.product-display[data-visual="racoes"] .product-photo-racoes,
.product-display[data-visual="petiscos"] .product-photo-petiscos,
.product-display[data-visual="cuidados"] .product-photo-cuidados,
.product-display[data-visual="banho"] .product-photo-banho {
  display: block;
}

.product-showcase:hover .product-photo {
  transform: translateY(-8px) scale(1.025);
  filter: drop-shadow(0 34px 28px rgba(42, 31, 24, 0.23));
}

.product-photo-banho {
  max-height: 350px;
}

.floating-seal {
  position: absolute;
  top: 14px;
  right: 10%;
  z-index: 3;
  color: var(--orange);
  transform: rotate(4deg);
}

.product-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  font-family: inherit;
  font-size: 2.5rem;
  line-height: 1;
  background: var(--button-blue);
  box-shadow: var(--soft-shadow);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease;
}

.product-arrow:hover {
  background: var(--button-blue-hover);
  transform: translateY(-50%) scale(1.06);
}

.product-arrow-prev {
  left: clamp(12px, 2vw, 32px);
}

.product-arrow-next {
  right: clamp(12px, 2vw, 32px);
}

.products-inner {
  position: relative;
  z-index: 1;
}

.products-heading {
  display: grid;
  gap: 8px;
  max-width: 720px;
  margin-bottom: clamp(26px, 4vw, 42px);
}

.products-heading h2,
.products-heading .eyebrow {
  color: #12233f;
}

.products-heading p {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(18, 35, 63, 0.78);
  font-size: 1.14rem;
  line-height: 1.65;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
  gap: 22px;
  justify-content: start;
}

.product-grid[hidden],
.products-empty[hidden] {
  display: none !important;
}

.store-product-card,
.products-empty {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 50px rgba(18, 35, 63, 0.12);
  backdrop-filter: blur(14px);
}

.store-product-card {
  display: grid;
  grid-template-areas:
    "photo"
    "info";
  grid-template-rows: clamp(210px, 22vw, 270px) auto;
  min-width: 0;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.store-product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 64px rgba(18, 35, 63, 0.16);
}

.store-product-photo {
  grid-area: photo;
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 0;
  padding: 18px;
  background: #fff;
  overflow: hidden;
}

.store-product-photo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 16px 20px rgba(18, 35, 63, 0.14));
}

.store-product-info {
  grid-area: info;
  display: grid;
  grid-template-areas:
    "title"
    "price"
    "buy";
  align-content: start;
  gap: 12px;
  padding: 18px;
  background: #fff8d6;
}

.store-product-info h3 {
  grid-area: title;
  margin-bottom: 0;
  color: #12233f;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 1000;
  line-height: 1.3;
}

.store-product-info p {
  grid-area: price;
  margin-bottom: 4px;
  color: var(--button-blue);
  font-size: clamp(1.64rem, 2.4vw, 1.9rem);
  font-weight: 1000;
  line-height: 1;
}

.store-product-info .product-buy-button {
  grid-area: buy;
  width: 100%;
  min-height: 48px;
  margin-top: 0;
  padding: 0 18px;
  border-radius: 10px;
  color: #fff;
}

.products-empty {
  display: grid;
  justify-items: start;
  gap: 12px;
  max-width: 620px;
  padding: clamp(26px, 5vw, 42px);
}

.products-empty h3,
.products-empty p {
  margin-bottom: 0;
}

.products-empty p {
  color: rgba(18, 35, 63, 0.74);
  line-height: 1.65;
}

.about,
.location,
.contact {
  position: relative;
  padding: 42px 0;
}

.about,
.contact {
  padding-bottom: 92px;
}

.location {
  padding-bottom: 104px;
}

.about-panel,
.location-copy,
.map-card,
.contact-content,
.review-card {
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.about-panel {
  position: relative;
  padding: clamp(32px, 6vw, 68px);
  border-radius: 42px;
  overflow: hidden;
}

.about-panel::after {
  position: absolute;
  right: 40px;
  bottom: 28px;
  width: 110px;
  height: 92px;
  opacity: 0.08;
  background: var(--orange);
  clip-path: polygon(50% 0, 62% 34%, 98% 35%, 69% 56%, 79% 91%, 50% 70%, 21% 91%, 31% 56%, 2% 35%, 38% 34%);
  content: "";
}

.about-mini-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 14px;
  max-width: 650px;
  margin-top: 28px;
  color: #27364d;
  font-weight: 900;
}

.mini-icon {
  width: 24px;
  height: 24px;
}

.bone-icon::before {
  position: absolute;
  top: 9px;
  left: 3px;
  width: 18px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

.bone-icon::after {
  position: absolute;
  inset: 4px 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 18px 0 0 var(--orange), 0 10px 0 var(--orange), 18px 10px 0 var(--orange);
  content: "";
}

.bowl-icon::before {
  position: absolute;
  left: 2px;
  bottom: 4px;
  width: 20px;
  height: 11px;
  border-radius: 4px 4px 12px 12px;
  background: var(--orange);
  content: "";
}

.heart-icon::before,
.heart-icon::after {
  position: absolute;
  top: 6px;
  width: 13px;
  height: 20px;
  border-radius: 13px 13px 0 0;
  background: var(--orange);
  content: "";
  transform-origin: 50% 100%;
}

.heart-icon::before {
  left: 11px;
  transform: rotate(45deg);
}

.heart-icon::after {
  left: 0;
  transform: rotate(-45deg);
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(330px, 1fr);
  gap: 26px;
  align-items: stretch;
}

.location-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(30px, 5vw, 54px);
  border-radius: 34px;
}

.map-card {
  position: relative;
  min-height: 360px;
  border-radius: 34px;
  overflow: hidden;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
  transition: filter 260ms ease, transform 420ms ease;
}

.map-card:hover iframe {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.015);
}

.map-overlay-link {
  position: absolute;
  right: 18px;
  bottom: 18px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  font-weight: 1000;
  background: var(--button-blue);
  box-shadow: var(--soft-shadow);
  display: inline-flex;
  align-items: center;
}

.reviews {
  position: relative;
  width: min(1160px, calc(100% - 34px));
  margin: 44px auto;
  padding: clamp(28px, 5vw, 44px) clamp(28px, 5vw, 44px) clamp(82px, 8vw, 106px);
  border-radius: 46px;
  background: linear-gradient(135deg, rgba(255, 226, 195, 0.9), rgba(255, 248, 237, 0.92));
  box-shadow: var(--shadow);
}

.reviews::after {
  border-radius: 0 0 46px 46px;
}

.reviews-summary {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 34px;
  color: #fff;
  background: var(--button-blue);
  box-shadow: 0 20px 46px rgba(31, 111, 235, 0.24);
}

.reviews-summary .eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.reviews-summary strong {
  display: block;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.86;
}

.reviews-summary p,
.reviews-summary span {
  margin: 0;
  font-weight: 1000;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.review-card {
  position: relative;
  padding: 24px;
  border-radius: 28px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.review-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 58px rgba(31, 111, 235, 0.16);
}

.review-card::before {
  position: absolute;
  top: 14px;
  right: 20px;
  color: rgba(255, 207, 36, 0.16);
  font-family: "Statos", "Nunito", Arial, sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  content: "“";
}

.review-stars {
  margin-bottom: 12px;
  color: #ffcf24;
  letter-spacing: 0;
}

.review-card h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.user-avatar {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 207, 36, 0.22);
  border-radius: 50%;
  background: #fff8d6;
}

.user-avatar::before,
.user-avatar::after {
  position: absolute;
  left: 50%;
  background: var(--orange);
  content: "";
  transform: translateX(-50%);
}

.user-avatar::before {
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.user-avatar::after {
  bottom: 7px;
  width: 18px;
  height: 9px;
  border-radius: 12px 12px 5px 5px;
}

.review-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-content {
  position: relative;
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: clamp(38px, 7vw, 76px) 24px;
  border-radius: 44px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(31, 111, 235, 0.26), transparent 25%),
    linear-gradient(135deg, #12233f, #173a66);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-content p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-social-links a {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.site-footer {
  margin-top: 40px;
  padding: 60px 0 24px;
  color: #fff8ee;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 207, 36, 0.3), transparent 24%),
    linear-gradient(135deg, #12233f, #173a66);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(3, minmax(160px, 0.8fr));
  gap: clamp(24px, 4vw, 46px);
  width: min(1160px, calc(100% - 34px));
  margin: 0 auto;
}

.footer-brand .brand {
  margin-bottom: 16px;
  color: #fff;
}

.footer-brand p,
.footer-column p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 248, 238, 0.76);
  line-height: 1.65;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 4px;
  color: #fff;
}

.footer-column a {
  width: fit-content;
  color: rgba(255, 248, 238, 0.78);
  font-weight: 900;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover {
  color: #ffdf61;
  transform: translateX(2px);
}

.footer-social-links {
  margin-top: 18px;
}

.footer-social-links a {
  background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  width: min(1160px, calc(100% - 34px));
  margin: 42px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 248, 238, 0.62);
}

.ambient-paws {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.ambient-paws span {
  position: absolute;
  width: 42px;
  height: 34px;
  opacity: 0.12;
  transform: rotate(-16deg);
  animation: pawFloat 16s linear infinite;
}

.ambient-paws span:nth-child(1) {
  left: 8%;
  animation-delay: -4s;
}

.ambient-paws span:nth-child(2) {
  left: 58%;
  animation-delay: -10s;
  transform: scale(1.2) rotate(12deg);
}

.ambient-paws span:nth-child(3) {
  left: 88%;
  animation-delay: -7s;
  transform: scale(0.82) rotate(-22deg);
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(28px) scale(0.985);
  transition: opacity 760ms ease, transform 760ms ease, filter 760ms ease;
}

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

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

@keyframes petFloat {
  0%,
  100% {
    transform: translateY(var(--scroll-shift));
  }
  50% {
    transform: translateY(calc(var(--scroll-shift) - 12px));
  }
}

@keyframes blobFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(1.2deg);
  }
}

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

@keyframes productSwitch {
  from {
    opacity: 0.35;
    transform: translateX(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes pawFloat {
  from {
    top: 110%;
  }
  to {
    top: -12%;
  }
}

.product-display.switching .product-photo {
  animation: productSwitch 520ms ease;
}

@media (max-width: 1000px) {
  .site-header {
    border-radius: 30px;
  }

  .menu-toggle {
    display: block;
  }

  .social-links {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero,
  .product-showcase,
  .location {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }

  .hero-visual {
    min-height: 480px;
  }

  .trust-strip,
  .review-grid,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 620px) {
  .section-shell,
  .site-header,
  .reviews {
    width: min(100% - 22px, 1160px);
  }

  .site-header {
    top: 10px;
    min-height: 70px;
    margin-top: 10px;
    padding: 9px 12px;
  }

  .brand {
    font-size: 1.22rem;
  }

  .brand small {
    display: none;
  }

  .logo-shell {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.4rem);
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero-actions,
  .hero-notes {
    align-items: stretch;
  }

  .primary-button,
  .secondary-link,
  .product-buy-button {
    width: 100%;
  }

  .hero-visual {
    min-height: 390px;
  }

  .blob-main {
    right: -12px;
    bottom: 44px;
    height: 290px;
  }

  .blob-light {
    right: 2px;
    height: 82px;
  }

  .pet-window {
    right: 28px;
    bottom: 34px;
    width: min(82%, 310px);
  }

  .doodle-heart {
    top: 38px;
    right: 14px;
    width: 86px;
    height: 64px;
  }

  .trust-strip,
  .review-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .trust-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 207, 36, 0.16);
  }

  .trust-strip article:last-child {
    border-bottom: 0;
  }

  .products {
    margin: 44px 0;
    padding: 118px 0 142px;
    border-radius: 0 0 38px 38px;
  }

  .product-display {
    min-height: 250px;
  }

  .product-photo {
    width: 112%;
  }

  .product-arrow {
    top: auto;
    bottom: 54px;
    width: 46px;
    height: 46px;
    font-size: 2rem;
    transform: none;
  }

  .product-arrow:hover {
    transform: scale(1.06);
  }

  .product-arrow-prev {
    left: calc(50% - 58px);
  }

  .product-arrow-next {
    right: calc(50% - 58px);
  }

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

  .store-product-card {
    grid-template-rows: minmax(300px, 68vw) auto;
    border-radius: 22px;
  }

  .store-product-photo {
    padding: 18px;
  }

  .store-product-info {
    padding: 16px;
  }

  .reviews-summary {
    display: grid;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    background:
      radial-gradient(circle at 16% 22%, rgba(255, 207, 36, 0.1), transparent 26%),
      radial-gradient(circle at 86% 12%, rgba(112, 207, 147, 0.16), transparent 24%),
      radial-gradient(circle at 20% 20%, rgba(47, 36, 31, 0.035) 0 1px, transparent 1px),
      var(--cream);
    background-size: auto, auto, 26px 26px, auto;
    overflow-x: hidden;
  }

  main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .products,
  .hero,
  .site-footer {
    max-width: 100%;
    overflow-x: hidden;
  }

  .product-photo {
    max-width: 100%;
  }

  .blob-main,
  .pet-window,
  .doodle-heart,
  .product-display,
  .ambient-paws span {
    animation: none !important;
  }

  .hero-visual {
    transform: none !important;
  }

  .reveal {
    filter: none;
    transform: translateY(14px);
    transition: opacity 360ms ease, transform 360ms ease;
  }

  .product-photo,
  .map-card iframe,
  .hero-pets-photo {
    filter: none;
    transition: transform 180ms ease;
  }

  .product-showcase:hover .product-photo,
  .map-card:hover iframe {
    transform: none;
  }

  .site-header {
    backdrop-filter: blur(10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
