/** Shopify CDN: Minification failed

Line 899:13 Expected identifier but found whitespace
Line 899:18 Unexpected "0.3s"
Line 1009:0 Unexpected "}"

**/
/* ============================================================
   Tasty Tumblers — Shopify Theme Styles
   Replicates the original Tailwind design exactly.
   ============================================================ */

:root {
  --navy: #1a2066;
  --navy-deep: #0f1340;
  --navy-darker: #0d1033;
  --cream: #faf6ef;
  --pink: #e879a8;
  --orange: #f5a623;
  --pink-500: #ec4899;
  --orange-400: #fb923c;
  --rose-400: #fb7185;
  --amber-400: #fbbf24;
  --blue-500: #3b82f6;
  --cyan-400: #22d3ee;
  --violet-500: #8b5cf6;
  --purple-400: #a78bfa;
  --emerald-500: #10b981;
  --teal-400: #2dd4bf;
  --red-500: #ef4444;
  --yellow-400: #facc15;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--navy);
  background: #fff;
  line-height: 1.5;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input {
  font-family: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ---------- Layout helpers ---------- */
.max-w-7xl {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}
.max-w-4xl {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}
.max-w-2xl {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.max-w-xl {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-lg {
  max-width: 32rem;
}

.px-base {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .px-base {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .px-base {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, var(--pink-500), var(--orange-400));
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  box-shadow: 0 10px 15px -3px rgba(236, 72, 153, 0.25);
}
.btn-primary:hover {
  opacity: 0.9;
}
.btn-primary:active {
  transform: scale(0.95);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--cream);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn-outline:active {
  transform: scale(0.95);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--cream);
}
.btn-outline-dark:active {
  transform: scale(0.95);
}

/* ---------- Gradient text ---------- */
.gradient-text {
  background: linear-gradient(135deg, #e879a8, #f5a623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding: 0.08em 0.05em 0.25em;
}
.font-pacifico {
  font-family: 'Pacifico', cursive;
}

/* ---------- Marquee ---------- */
.marquee-track {
  animation: marquee 28s linear infinite;
  width: max-content;
  display: flex;
  gap: 4rem;
  white-space: nowrap;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-20px) scale(1.2);
    opacity: 0.4;
  }
}

/* ---------- Star rating ---------- */
.star-rating {
  display: flex;
  gap: 0.125rem;
}
.star-rating svg {
  flex-shrink: 0;
}
.star-filled {
  color: #fbbf24;
  fill: #fbbf24;
}
.star-empty {
  color: #d1d5db;
  fill: #d1d5db;
}

/* ============================================================
   Announcement bar
   ============================================================ */
.announcement-bar {
  background: var(--navy);
  color: var(--cream);
  padding: 0.625rem 0;
  overflow: hidden;
}
.announcement-bar__item {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.announcement-bar__icon {
  color: #f472b6;
  flex-shrink: 0;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}
.site-header.is-scrolled {
  background: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.site-header__logo img {
  height: 3rem;
  width: auto;
  object-fit: contain;
}
.site-header__nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .site-header__nav {
    display: flex;
  }
}
.site-header__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.025em;
  transition: color 0.2s ease;
}
.site-header__link:hover {
  color: var(--orange-400);
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-header__icon-btn {
  position: relative;
  padding: 0.5rem;
  color: var(--navy);
  transition: color 0.2s ease;
}
.site-header__icon-btn:hover {
  color: var(--orange-400);
}
.site-header__cart-count {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  background: linear-gradient(to right, var(--pink-500), var(--orange-400));
  color: #fff;
  font-weight: 700;
  border-radius: 9999px;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
}
.site-header__menu-btn {
  display: block;
  padding: 0.5rem;
  color: var(--navy);
}
@media (min-width: 768px) {
  .site-header__menu-btn {
    display: none;
  }
}
.site-header__mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid #f3f4f6;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.site-header__mobile-nav.is-open {
  display: block;
}
.site-header__mobile-nav a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.2s ease;
}
.site-header__mobile-nav a:hover {
  background: var(--cream);
  color: var(--orange-400);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle at 20% 80%, #e879a8 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, #f5a623 0%, transparent 50%);
}
.hero__floaters {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__floater {
  position: absolute;
  border-radius: 9999px;
  opacity: 0.2;
}
.hero__inner {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
  }
}
.hero__content {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  align-self: flex-start;
}
.hero__badge svg {
  color: #f472b6;
}
.hero__badge-text {
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
}
@media (min-width: 640px) {
  .hero__title {
    font-size: 3.75rem;
  }
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 4.5rem;
  }
}
.hero__title-line {
  display: block;
}
.hero__title-line--cream {
  color: var(--cream);
}
.hero__subtitle {
  color: rgba(250, 246, 239, 0.8);
  font-size: 1.125rem;
  line-height: 1.625;
  max-width: 28rem;
  margin: 0;
}
.hero__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__avatars {
  display: flex;
  margin-right: -0.5rem;
}
.hero__avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 2px solid var(--navy);
  object-fit: cover;
  margin-left: -0.5rem;
}
.hero__social-text {
  color: rgba(250, 246, 239, 0.7);
  font-size: 0.75rem;
  margin-top: 0.125rem;
}
.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__media-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(236, 72, 153, 0.3), rgba(251, 146, 60, 0.3));
  border-radius: 1.5rem;
  filter: blur(48px);
}
.hero__media-frame {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 1rem;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.hero__media-img {
  width: 100%;
  max-width: 32rem;
  border-radius: 1rem;
  object-fit: cover;
}
.hero__floating-card {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__floating-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(to bottom right, var(--pink-500), var(--orange-400));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__floating-icon svg {
  color: #fff;
}
.hero__floating-title {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.875rem;
}
.hero__floating-sub {
  color: var(--gray-500);
  font-size: 0.75rem;
}

/* ============================================================
   Trust bar
   ============================================================ */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--gray-200);
}
.trust-bar__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2.5rem 1rem;
}
@media (min-width: 640px) {
  .trust-bar__inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .trust-bar__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .trust-bar__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.trust-bar__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, var(--pink-500), var(--orange-400));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.trust-bar__item:hover .trust-bar__icon {
  transform: scale(1.1);
}
.trust-bar__icon svg {
  color: #fff;
}
.trust-bar__label {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.875rem;
}
.trust-bar__sub {
  color: var(--gray-500);
  font-size: 0.75rem;
}

/* ============================================================
   Section heading
   ============================================================ */
.section-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-heading--left {
  text-align: left;
}
.section-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-400);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--navy);
  margin: 0;
  line-height: 1.1;
}
@media (min-width: 640px) {
  .section-title {
    font-size: 3rem;
  }
}
.section-subtitle {
  color: var(--gray-500);
  max-width: 36rem;
  margin: 1rem auto 0;
  font-size: 1rem;
  line-height: 1.625;
}

/* ============================================================
   Categories
   ============================================================ */
.categories {
  padding: 5rem 0;
  background: #fff;
}
.categories__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .categories__inner {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .categories__inner {
    padding: 0 2rem;
  }
}
.categories__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .categories__grid {
    gap: 1.5rem;
  }
}
.category-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  min-height: 260px;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .category-card {
    padding: 2rem;
    min-height: 420px;
  }
}
.category-card:hover {
  transform: scale(1.02);
}
.category-card--black {
  background: #000;
}
.category-card--navy {
  background: var(--navy-darker);
}
.category-card__hover-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: radial-gradient(circle at 50% 50%, rgba(232, 121, 168, 0.08), transparent 70%);
}
.category-card:hover .category-card__hover-bg {
  opacity: 1;
}
.category-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
}
.category-card__tag--blue {
  background: linear-gradient(to right, rgba(59, 130, 246, 0.2), rgba(34, 211, 238, 0.2));
  border-color: rgba(96, 165, 250, 0.3);
  color: #67e8f9;
}
.category-card__tag--pink {
  background: linear-gradient(to right, rgba(236, 72, 153, 0.2), rgba(251, 146, 60, 0.2));
  border-color: rgba(244, 114, 182, 0.3);
  color: #f9a8d4;
}
.category-card__img {
  width: 100%;
  max-width: 120px;
  object-fit: contain;
  flex: 1;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.25));
  transition: transform 0.5s ease;
}
@media (min-width: 768px) {
  .category-card__img {
    max-width: 280px;
  }
}
.category-card:hover .category-card__img {
  transform: scale(1.05);
}
.category-card__content {
  margin-top: 0.75rem;
  text-align: center;
  position: relative;
}
@media (min-width: 768px) {
  .category-card__content {
    margin-top: 1.5rem;
  }
}
.category-card__desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  display: none;
}
@media (min-width: 480px) {
  .category-card__desc {
    display: block;
    font-size: 0.75rem;
  }
}
@media (min-width: 768px) {
  .category-card__desc {
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 1rem;
  }
}
.category-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .category-card__cta {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }
}
.category-card:hover .category-card__cta {
  gap: 0.75rem;
}
.category-card__cta--blue {
  background: linear-gradient(to right, var(--blue-500), var(--cyan-400));
}
.category-card__cta--pink {
  background: linear-gradient(to right, var(--pink-500), var(--orange-400));
}

/* ============================================================
   Features (Why Us)
   ============================================================ */
.features {
  padding: 5rem 0;
  background: var(--cream);
}
.features__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .features__inner {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .features__inner {
    padding: 0 2rem;
  }
}
.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .features__grid {
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.feature-card {
  background: #fff;
  padding: 1rem;
  border-radius: 1.5rem;
  border: 1px solid var(--gray-100);
}
@media (min-width: 768px) {
  .feature-card {
    padding: 1.5rem;
  }
}
  transition: all 0.3s ease;
}
.feature-card:hover {
  border-color: transparent;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.25rem);
}
.feature-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.2s ease;
}
.feature-card:hover .feature-card__icon {
  transform: scale(1.1);
}
.feature-card__icon svg {
  color: #fff;
}
.feature-card__icon--blue {
  background: linear-gradient(to bottom right, var(--blue-500), var(--cyan-400));
}
.feature-card__icon--pink {
  background: linear-gradient(to bottom right, var(--pink-500), var(--rose-400));
}
.feature-card__icon--orange {
  background: linear-gradient(to bottom right, var(--orange-400), var(--amber-400));
}
.feature-card__icon--emerald {
  background: linear-gradient(to bottom right, var(--emerald-500), var(--teal-400));
}
.feature-card__title {
  color: var(--navy);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.feature-card__desc {
  color: var(--gray-500);
  font-size: 0.875rem;
  line-height: 1.625;
}

/* ============================================================
   Meet the family
   ============================================================ */
.family {
  padding: 6rem 0;
  background: #fff;
  overflow: hidden;
}
.family__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .family__inner {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .family__inner {
    padding: 0 2rem;
  }
}
.family__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .family__grid {
    gap: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .family__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .family__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.family-card {
  position: relative;
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid var(--gray-100);
  padding: 1rem;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .family-card {
    padding: 1.5rem;
  }
}
.family-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.25rem);
}
.family-card--featured {
  grid-column: span 1;
}
}
.family-card__avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  margin-bottom: 1rem;
  transition: transform 0.2s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .family-card__avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.625rem;
    margin-bottom: 0.75rem;
  }
}
.family-card:hover .family-card__avatar {
  transform: scale(1.1);
}
.family-card__avatar--pink {
  background: linear-gradient(to bottom right, var(--pink-500), var(--rose-400));
}
.family-card__avatar--orange {
  background: linear-gradient(to bottom right, var(--orange-400), var(--amber-400));
}
.family-card__avatar--blue {
  background: linear-gradient(to bottom right, var(--blue-500), var(--cyan-400));
}
.family-card__avatar--violet {
  background: linear-gradient(to bottom right, var(--violet-500), var(--purple-400));
}
.family-card__avatar--emerald {
  background: linear-gradient(to bottom right, var(--emerald-500), var(--teal-400));
}
.family-card__avatar--red {
  background: linear-gradient(to bottom right, var(--red-500), var(--orange-400));
}
.family-card__avatar--yellow {
  background: linear-gradient(to bottom right, var(--yellow-400), var(--orange-400));
}
.family-card__name {
  color: var(--navy);
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.1;
  margin: 0;
}
.family-card__aka {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pink-500);
  margin-top: 0.125rem;
}
.family-card__title {
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  background: linear-gradient(to right, currentColor, currentColor);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.family-card__title--pink {
  color: var(--pink-500);
}
.family-card__title--orange {
  color: var(--orange-400);
}
.family-card__title--blue {
  color: var(--blue-500);
}
.family-card__title--violet {
  color: var(--violet-500);
}
.family-card__title--emerald {
  color: var(--emerald-500);
}
.family-card__title--red {
  color: var(--red-500);
}
.family-card__title--yellow {
  color: var(--yellow-400);
}
.family-card__desc {
  color: var(--gray-500);
  font-size: 0.875rem;
  line-height: 1.625;
  margin-top: 0.75rem;
}
.family-card__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.25rem;
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.family-card:hover .family-card__bar {
  opacity: 1;
}
.family-card__bar--pink {
  background: linear-gradient(to right, var(--pink-500), var(--rose-400));
}
.family-card__bar--orange {
  background: linear-gradient(to right, var(--orange-400), var(--amber-400));
}
.family-card__bar--blue {
  background: linear-gradient(to right, var(--blue-500), var(--cyan-400));
}
.family-card__bar--violet {
  background: linear-gradient(to right, var(--violet-500), var(--purple-400));
}
.family-card__bar--emerald {
  background: linear-gradient(to right, var(--emerald-500), var(--teal-400));
}
.family-card__bar--red {
  background: linear-gradient(to right, var(--red-500), var(--orange-400));
}
.family-card__bar--yellow {
  background: linear-gradient(to right, var(--yellow-400), var(--orange-400));
}
.family__footer {
  margin-top: 3rem;
  text-align: center;
}
.family__footer-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--cream);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
}
.family__footer-inner svg {
  color: var(--pink-500);
  fill: var(--pink-500);
}
.family__footer-text {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.875rem;
}

/* ============================================================
   Featured products
   ============================================================ */
.featured-products {
  padding: 5rem 0;
  background: var(--cream);
}
.featured-products__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .featured-products__inner {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .featured-products__inner {
    padding: 0 2rem;
  }
}
.featured-products__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .featured-products__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.featured-products__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.featured-products__filter {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
  background: #fff;
  color: var(--navy);
}
.featured-products__filter:hover {
  background: rgba(26, 32, 102, 0.1);
}
.featured-products__filter.is-active {
  background: var(--navy);
  color: var(--cream);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.featured-products__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .featured-products__grid {
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .featured-products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.product-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.product-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__img {
  transform: scale(1.05);
}
.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  color: #fff;
}
.product-card__badge--orange {
  background: var(--orange-400);
}
.product-card__badge--pink {
  background: var(--pink-500);
}
.product-card__badge--emerald {
  background: var(--emerald-500);
}
.product-card__badge--red {
  background: var(--red-500);
}
.product-card__badge--violet {
  background: var(--violet-500);
}
.product-card__badge--gray {
  background: var(--gray-200);
  color: #374151;
}
.product-card__body {
  padding: 0.75rem;
}
@media (min-width: 640px) {
  .product-card__body {
    padding: 1.25rem;
  }
}
.product-card__category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange-400);
  margin-bottom: 0.25rem;
}
.product-card__title {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 640px) {
  .product-card__title {
    font-size: 1.125rem;
  }
}
.product-card__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.product-card__rating-count {
  color: var(--gray-500);
  font-size: 0.75rem;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card__price-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.product-card__price {
  color: var(--navy);
  font-weight: 900;
  font-size: 1.25rem;
}
.product-card__compare-price {
  color: var(--gray-400);
  text-decoration: line-through;
  font-size: 0.875rem;
}
.product-card__add {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--navy);
  color: var(--cream);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.product-card__add:hover {
  background: linear-gradient(to right, var(--pink-500), var(--orange-400));
}
.featured-products__view-all {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================================
   Reviews
   ============================================================ */
.reviews {
  padding: 5rem 0;
  background: #fff;
}
.reviews__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .reviews__inner {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .reviews__inner {
    padding: 0 2rem;
  }
}
.reviews__heading-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.reviews__google-score {
  color: var(--navy);
  font-weight: 700;
}
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .reviews__grid {
    gap: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .reviews__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.review-card {
  background: var(--cream);
  border-radius: 1.5rem;
  padding: 1rem;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .review-card {
    padding: 1.5rem;
  }
}
.review-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.review-card__source {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.review-card__text {
  color: rgba(26, 32, 102, 0.8);
  line-height: 1.625;
  font-style: italic;
  flex: 1;
}
.review-card__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--gray-200);
}
.review-card__avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: linear-gradient(to bottom right, var(--pink-500), var(--orange-400));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.review-card__name {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.875rem;
}

/* ============================================================
   Newsletter
   ============================================================ */
.newsletter {
  padding: 5rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.newsletter__bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle at 30% 50%, #e879a8, transparent 50%),
    radial-gradient(circle at 70% 50%, #f5a623, transparent 50%);
}
.newsletter__inner {
  position: relative;
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
@media (min-width: 640px) {
  .newsletter__inner {
    padding: 0 1.5rem;
  }
}
.newsletter__icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(to bottom right, var(--pink-500), var(--orange-400));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.newsletter__icon svg {
  color: #fff;
}
.newsletter__title {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.1;
}
@media (min-width: 640px) {
  .newsletter__title {
    font-size: 3rem;
  }
}
.newsletter__subtitle {
  color: rgba(250, 246, 239, 0.7);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}
.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .newsletter__form {
    flex-direction: row;
  }
}
.newsletter__input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--cream);
  font-size: 0.875rem;
}
.newsletter__input::placeholder {
  color: rgba(250, 246, 239, 0.4);
}
.newsletter__input:focus {
  outline: none;
  border-color: var(--orange-400);
}
.newsletter__success {
  background: linear-gradient(to right, rgba(236, 72, 153, 0.2), rgba(251, 146, 60, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
}
.newsletter__success-title {
  color: var(--cream);
  font-weight: 700;
  font-size: 1.125rem;
}
.newsletter__success-sub {
  color: rgba(250, 246, 239, 0.7);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.newsletter__fineprint {
  color: rgba(250, 246, 239, 0.4);
  font-size: 0.75rem;
  margin-top: 1rem;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(250, 246, 239, 0.7);
}
.site-footer__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1rem;
}
@media (min-width: 640px) {
  .site-footer__inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .site-footer__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.site-footer__grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.site-footer__brand img {
  height: 4rem;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}
.site-footer__about {
  font-size: 0.875rem;
  line-height: 1.625;
  margin-bottom: 1rem;
}
.site-footer__social {
  display: flex;
  gap: 0.75rem;
}
.site-footer__social-link {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.site-footer__social-link:hover {
  background: linear-gradient(to bottom right, var(--pink-500), var(--orange-400));
}
.site-footer__social-link svg {
  color: var(--cream);
}
.site-footer__col-title {
  color: var(--cream);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.site-footer__links a {
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
.site-footer__links a:hover {
  color: var(--orange-400);
}
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.site-footer__contact li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
}
.site-footer__contact svg {
  color: var(--orange-400);
  flex-shrink: 0;
}
.site-footer__contact--top svg {
  margin-top: 0.125rem;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 640px) {
  .site-footer__bottom {
    flex-direction: row;
  }
}
.site-footer__copyright {
  font-size: 0.75rem;
}
.site-footer__legal {
  display: flex;
  gap: 1.5rem;
  font-size: 0.75rem;
}
.site-footer__legal a {
  transition: color 0.2s ease;
}
.site-footer__legal a:hover {
  color: var(--orange-400);
}

/* ============================================================
   Generic page / product / collection scaffolding
   ============================================================ */
.page-shell {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem 1rem;
}
@media (min-width: 640px) {
  .page-shell {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .page-shell {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.page-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .page-title {
    font-size: 3rem;
  }
}
.rte {
  color: #374151;
  line-height: 1.625;
}
.rte h1,
.rte h2,
.rte h3 {
  color: var(--navy);
  font-weight: 800;
  margin: 1.5rem 0 0.75rem;
}
.rte h1 {
  font-size: 1.875rem;
}
.rte h2 {
  font-size: 1.5rem;
}
.rte h3 {
  font-size: 1.25rem;
}
.rte p {
  margin: 0 0 1rem;
}
.rte a {
  color: var(--orange-400);
  text-decoration: underline;
}
.rte ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0 0 1rem;
}
.rte img {
  border-radius: 0.75rem;
  margin: 1rem 0;
}

/* Product page */
.product-page {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem 1rem;
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .product-page {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .product-page {
    grid-template-columns: 1fr 1fr;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.product-page__media img {
  border-radius: 1.5rem;
  width: 100%;
}
.product-page__title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 0.75rem;
}
.product-page__price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.product-page__form {
  margin-bottom: 1.5rem;
}
.product-page__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, var(--pink-500), var(--orange-400));
  color: #fff;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  box-shadow: 0 10px 15px -3px rgba(236, 72, 153, 0.25);
}
.product-page__btn:hover {
  opacity: 0.9;
}
.product-page__desc {
  color: #374151;
  line-height: 1.625;
}

/* Collection page */
.collection-page {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem 1rem;
}
@media (min-width: 640px) {
  .collection-page {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .collection-page {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.collection-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .collection-page__grid {
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .collection-page__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .collection-page__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Cart */
.cart-page {
  max-width: 48rem;
  margin: 0 auto;
  padding: 3rem 1rem;
}
@media (min-width: 640px) {
  .cart-page {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.cart-item__img {
  width: 5rem;
  height: 5rem;
  border-radius: 0.75rem;
  object-fit: cover;
}
.cart-item__title {
  font-weight: 700;
  color: var(--navy);
}
.cart-item__price {
  color: var(--gray-500);
  font-size: 0.875rem;
}
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.cart-item__qty button {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: var(--cream);
  font-weight: 700;
}
.cart-item__remove {
  color: var(--gray-400);
  font-size: 0.75rem;
  margin-left: 1rem;
  text-decoration: underline;
}
.cart-empty {
  text-align: center;
  padding: 4rem 0;
}
.cart-empty a {
  display: inline-block;
  margin-top: 1.5rem;
}

/* 404 / search */
.not-found {
  text-align: center;
  padding: 6rem 1rem;
}
.not-found__title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 1rem;
}
.not-found__text {
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.search-form {
  display: flex;
  gap: 0.5rem;
  max-width: 28rem;
  margin: 0 auto 2rem;
}
.search-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-200);
  background: var(--cream);
}
.search-form button {
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  background: var(--navy);
  color: var(--cream);
  font-weight: 600;
}

/* Utility */
.text-center {
  text-align: center;
}
.mt-12 {
  margin-top: 3rem;
}
.hidden {
  display: none;
}

/* ============================================================
   Product page — breadcrumb, gallery, variants, qty
   ============================================================ */
.product-page {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
.product-page__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.product-page__breadcrumb a {
  color: var(--gray-500);
  transition: color 0.2s;
}
.product-page__breadcrumb a:hover { color: var(--orange-400); }
.product-page__breadcrumb span { color: var(--gray-300); }
.product-page__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .product-page__layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.product-page__gallery {}
.product-page__main-img-wrap {
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 1;
}
.product-page__main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.2s;
}
.product-page__thumbs {
  display: flex;
  gap: 0.625rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}
.product-page__thumb {
  width: 4rem;
  height: 4rem;
  border-radius: 0.625rem;
  overflow: hidden;
  border: 2px solid var(--gray-200);
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s;
  background: var(--cream);
}
.product-page__thumb.is-active { border-color: var(--orange-400); }
.product-page__thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-page__info {}
.product-page__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0 1rem;
}
.product-page__price-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.product-page__compare-price {
  text-decoration: line-through;
  color: var(--gray-400);
  font-size: 1.1rem;
}
.product-page__option {
  margin-bottom: 1.25rem;
}
.product-page__option-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-page__option-values {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.product-page__option-btn {
  padding: 0.375rem 0.875rem;
  border-radius: 0.5rem;
  border: 2px solid var(--gray-200);
  background: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s;
}
.product-page__option-btn:hover { border-color: var(--orange-400); }
.product-page__option-btn.is-selected {
  border-color: var(--orange-400);
  background: var(--orange-400);
  color: #fff;
}
.product-page__qty { margin-bottom: 1.5rem; }
.product-page__qty-wrap {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--gray-200);
  border-radius: 0.75rem;
  overflow: hidden;
}
.product-page__qty-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  background: #fff;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.product-page__qty-btn:hover { background: var(--cream); }
.product-page__qty-input {
  width: 3rem;
  text-align: center;
  border: none;
  border-left: 2px solid var(--gray-200);
  border-right: 2px solid var(--gray-200);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  height: 2.5rem;
  background: #fff;
}
.product-page__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.product-page__btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 1.5rem;
  gap: 0.5rem;
}
.product-page__desc {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
  color: var(--gray-500);
  line-height: 1.75;
}

/* ============================================================
   Collection page — header + pagination
   ============================================================ */
.collection-page__header {
  margin-bottom: 2rem;
}
.collection-page__desc {
  color: var(--gray-500);
  max-width: 48rem;
  margin-top: 0.5rem;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  padding: 1rem 0;
}
.pagination__btn {
  padding: 0.5rem 1.25rem;
  border-radius: 0.75rem;
  border: 2px solid var(--gray-200);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  transition: all 0.2s;
}
.pagination__btn:hover { border-color: var(--orange-400); color: var(--orange-400); }
.pagination__info {
  font-size: 0.875rem;
  color: var(--gray-400);
  font-weight: 500;
}

