/* ============================================================
   POTATO PUPPERS — STYLES
   Brand: Orange #F37A1F | Brown #6B3A2A | Cream #FFF8F0
   Fonts: Fredoka One (display) + Nunito (body)
============================================================ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  --orange:       #f2781e;
  --orange-dark:  #D9640D;
  --orange-light: #FFB273;
  --brown:        #6B3A2A;
  --brown-light:  #8C5040;
  --white:        #FFFFFF;
  --cream:        #FFF8F0;
  --cream-dark:   #F5EBD8;

  --shadow-xs: 0 1px 4px rgba(107, 58, 42, 0.10);
  --shadow-sm: 0 2px 10px rgba(107, 58, 42, 0.12);
  --shadow-md: 0 6px 24px rgba(107, 58, 42, 0.16);
  --shadow-lg: 0 16px 48px rgba(107, 58, 42, 0.22);

  --radius-sm:   10px;
  --radius-md:   18px;
  --radius-lg:   24px;
  --radius-pill: 999px;

  --font-display: 'Fredoka One', cursive;
  --font-body:    'Nunito', sans-serif;

  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--brown);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
}

/* ── UTILITIES ──────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--brown);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.text-center { text-align: center; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--brown);
  opacity: 0.65;
  margin-top: 0.4rem;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  letter-spacing: 0.02em;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--brown);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-white:hover {
  background: var(--cream);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(243, 122, 31, 0.35);
  padding: 11px 24px;
  font-size: 0.9rem;
}

.btn-orange:hover {
  background: var(--orange-dark);
  box-shadow: 0 8px 20px rgba(243, 122, 31, 0.45);
}

/* ── WAVE DIVIDERS ──────────────────────────────────────── */
.wave-top,
.hero-wave,
.footer-wave {
  line-height: 0;
  overflow: hidden;
}

.wave-top svg,
.hero-wave svg,
.footer-wave svg {
  width: 100%;
  display: block;
}

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(107, 58, 42, 0.07);
  transition: box-shadow 0.3s ease;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(107, 58, 42, 0.15);
}

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

.nav-logo img {
  width: 300px;
  height: auto;
  display: block;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brown);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2.5px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-links a:hover {
  color: var(--orange);
}

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

/* Nav action buttons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.hamburger:hover {
  background: rgba(243, 122, 31, 0.1);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--orange);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Hide the checkbox — interaction via its <label> elements */
.menu-toggle-checkbox {
  display: none;
}

/* ── NAV OVERLAY ────────────────────────────────────────── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1100;
}

.nav-overlay.open,
#menuToggle:checked ~ .nav-overlay {
  display: block;
}

/* ── SLIDE-IN DRAWER ────────────────────────────────────── */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: var(--white);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  overflow: hidden;
}

.nav-drawer.open,
#menuToggle:checked ~ .nav-drawer {
  transform: translateX(0);
  overflow-y: auto;
}

/* Hamburger → X when drawer open */
#menuToggle:checked ~ .navbar .hamburger span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
#menuToggle:checked ~ .navbar .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
#menuToggle:checked ~ .navbar .hamburger span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav-drawer-inner {
  display: flex;
  flex-direction: column;
  padding: 20px 28px 40px;
  min-height: 100%;
}

.nav-drawer-close {
  align-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 8px;
  color: var(--brown);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.nav-drawer-close:hover {
  background: rgba(107, 58, 42, 0.06);
}

.drawer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.drawer-nav li {
  border-bottom: 1px solid rgba(107, 58, 42, 0.08);
}

.drawer-nav li:last-child {
  border-bottom: none;
}

.drawer-nav a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--brown);
  transition: color 0.2s ease;
}

.drawer-nav a:hover {
  color: var(--orange);
}

.drawer-section {
  margin-bottom: 28px;
}

.drawer-section h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.45;
  margin-bottom: 12px;
}

.drawer-section a {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brown);
  padding: 5px 0;
  transition: color 0.2s ease;
}

.drawer-section a:hover {
  color: var(--orange);
}

.drawer-section .social-links {
  margin-top: 4px;
}

.drawer-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(107, 58, 42, 0.08);
}

.drawer-footer a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--brown);
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.drawer-footer a:hover {
  opacity: 1;
}

.drawer-footer p {
  font-size: 0.8rem;
  color: var(--brown);
  opacity: 0.35;
  margin-top: 6px;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  background: var(--orange);
  position: relative;
  overflow-x: hidden;
}

/* Subtle polka-dot texture */
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.09) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  height: 600px;
  overflow: hidden;
}

/* Left: absolutely positioned, vertically centered */
.hero-left {
  position: absolute;
  left: 0%;
  top: 55%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  width: 520px;
  z-index: 1;
}

.hero-mascot {
  width: 100%;
  object-fit: contain;
  filter: none;
  animation: floatMascot 4s ease-in-out infinite;
}

@keyframes floatMascot {
  0%, 100% { translate: 0 0; }
  50%       { translate: 0 -10px; }
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.7;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* Center: dog height-constrained so it fits the hero */
.hero-center {
  position: absolute;
  bottom: 0;
  top: 7%;
  left: 46%;
  transform: translateX(-20%);
  isolation: isolate;
  z-index: 0;
}

.hero-dog-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
  background: var(--orange);
}

.hero-dog-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: var(--orange);
  z-index: 100;
  pointer-events: none;
  transform: translateZ(0);
  will-change: transform;
}

.hero-dog {
  height: 580px;
  width: auto;
  object-fit: contain;
  display: block;
  /*filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.28));*/
  position: relative;
  z-index: 1;
}

.hero-dog-video {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(calc(-50% + 2px));
  width: auto;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 0;
  clip-path: inset(2px 0 0 0);
  transition: opacity 0.3s ease;
}

.hero-center::after {
  /*content: '';
  position: absolute;
  top: 70%;
  left: 60%;
  transform: translateX(-50%);
  width: 110%;
  height: 100px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0) 90%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;*/
}

@keyframes floatDog {
  0%, 100% { translate: 0 0; }
  50%       { translate: 0 -9px; }
}

/* hero-media: invisible on desktop (children abs-pos relative to .hero),
   flex row on mobile */
.hero-media {
  display: contents;
}

/* Right: product bag pinned to bottom-right of full-width hero section */
.hero-right {
  position: absolute;
  right: 120px;
  bottom: 80px;
  display: flex;
  align-items: flex-end;
  z-index: 2;
}

.hero-product-wrap {
  position: relative;
  display: inline-block;
}

.hero-product {
  height: 620px;
  width: auto;
  object-fit: contain;
  filter: none;
  animation: floatProduct 4.5s ease-in-out infinite 1s;
}

@keyframes floatProduct {
  0%, 100% { translate: 0 0; }
  50%       { translate: 0 -13px; }
}

/* Floating treats — absolutely positioned in hero-inner, painted first so
   they sit behind dog (hero-center) and bag (hero-right) via DOM order */
.bone {
  position: absolute;
  pointer-events: none;
  object-fit: contain;
  /* No z-index needed — DOM order handles layering */
}

/* Clustered near the top of the bag (right ~30% of hero-inner) */
.bone-1 {
  width: 110px;
  top: 39%;
  right: 1%;
  rotate: 15deg;
  animation: floatBone 3.2s ease-in-out infinite;
}

.bone-2 {
  width: 72px;
  top: 14%;
  right: 26%;
  rotate: -30deg;
  animation: floatBone 4.1s ease-in-out infinite 0.8s;
}

.bone-3 {
  width: 78px;
  top: -1%;
  right: 24%;
  rotate: 40deg;
  animation: floatBone 3.7s ease-in-out infinite 1.4s;
}

.bone-4 {
  width: 100px;
  top: 6%;
  right: 28%;
  rotate: -50deg;
  animation: floatBone 4.4s ease-in-out infinite 0.3s;
}

.bone-5 {
  width: 130px;
  bottom: 38%;
  right: 4%;
  rotate: -12deg;
  z-index: 3;
  animation: floatBone 3.5s ease-in-out infinite 0.5s;
}

.bone-6 {
  width: 80px;
  top: 2%;
  right: 15%;
  rotate: -45deg;
  animation: floatBone 3.4s ease-in-out infinite 0.6s;
}

.bone-7 {
  width: 76px;
  top: 18%;
  right: 4%;
  rotate: 20deg;
  animation: floatBone 4.2s ease-in-out infinite 1.1s;
}

.bone-8 {
  width: 72px;
  top: 5%;
  right: 2%;
  rotate: 10deg;
  animation: floatBone 3.8s ease-in-out infinite 1.7s;
}

.bone-9 {
  width: 250px;
  top: 2%;
  right: 8%;
  rotate: -5deg;
  animation: floatBone 4.6s ease-in-out infinite 0.2s;
}

.bone-10 {
  width: 70px;
  top: 2%;
  right: 5%;
  rotate: 8deg;
  animation: floatBone 3.6s ease-in-out infinite 0.9s;
}

.bone-11 {
  width: 85px;
  top: 24%;
  right: 1%;
  rotate: -15deg;
  animation: floatBone 4.0s ease-in-out infinite 1.3s;
}

@keyframes floatBone {
  0%        { translate: 0 0;      transform: rotate(-3deg); }
  50%       { translate: 0 -16px; transform: rotate(3deg);  }
  100%      { translate: 0 0;      transform: rotate(-3deg); }
}

/* Hero wave */
.hero-wave {
  position: relative;
  z-index: 1;
  margin-top: 42px;
  margin-bottom: -1px;
}

/* ── BENEFITS ────────────────────────────────────────────── */
.benefits {
  background: var(--cream);
  padding: 56px 0 64px;
}

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

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  border: 1.5px solid rgba(107, 58, 42, 0.06);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.benefit-label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--brown);
}

/* ── SHOP ────────────────────────────────────────────────── */
.shop {
  background: var(--white);
  padding: 0 0 50px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  padding-top: 40px; /* clearance for popped-out images */
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(107, 58, 42, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrap {
  background: var(--orange);
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 220px;
  position: relative;
  overflow: visible;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.product-img-wrap--berry {
  background: #7B4FA3;
}

.product-img-wrap--pb {
  background: #C27B2E;
}

/* Dot texture on product cards */
.product-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.10) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  pointer-events: none;
}

.product-img-wrap img {
  height: 258px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.25));
  transition: transform 0.3s ease;
  margin-bottom: 8px;
}

.product-card:hover .product-img-wrap img {
  transform: translateY(-6px) scale(1.04);
}

.product-info {
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--brown);
  margin-bottom: 8px;
  line-height: 1.2;
}

.product-info p {
  font-size: 0.9rem;
  color: var(--brown);
  opacity: 0.7;
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}

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

.price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--orange);
}

/* ── INGREDIENTS ─────────────────────────────────────────── */
.ingredients {
  background: var(--cream);
  padding: 0 0 90px;
}

.ingredients .section-title {
  margin-bottom: 2.5rem;
}

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

.ingredients-text p {
  font-size: 1.05rem;
  color: var(--brown);
  opacity: 0.85;
  margin-bottom: 1.1rem;
  line-height: 1.8;
}

.ingredients-text strong {
  color: var(--orange);
  font-weight: 800;
}

.ingredients-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  padding: 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(243, 122, 31, 0.30);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.badge-icon {
  display: inline-block;
  background: var(--white);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  object-fit: contain;
  padding: 4px;
  margin: 0 8px 0 0;
  flex-shrink: 0;
}

.badge:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 22px rgba(243, 122, 31, 0.42);
}

/* ── ABOUT ──────────────────────────────────────────────── */
.about {
  background: var(--white);
  padding: 0 0 90px;
}

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

.about-text .section-title {
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--brown);
  opacity: 0.82;
  margin-bottom: 1.1rem;
  line-height: 1.8;
}

.about-img-wrap {
  flex-shrink: 0;
}

.about-mascot {
  width: 210px;
  height: 210px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--cream);
  padding: 18px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.about-mascot:hover {
  transform: rotate(-4deg) scale(1.04);
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer-wave {
  background: var(--white);
  line-height: 0;
}

.footer-body {
  background: var(--brown);
  color: var(--white);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo-text {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 240px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 18px;
  opacity: 0.9;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-col a:hover {
  color: var(--orange-light);
  padding-left: 4px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.social-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-3px);
}


.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

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

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--orange-light);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    padding: 48px 28px 20px;
    min-height: 460px;
  }

  .hero-product {
    width: 600px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

  .footer-brand p {
    max-width: 100%;
  }

}

/* Ultra-wide (1440px+) — constrain hero content to 1440px so bag/dogs
   don't drift to far edges on large monitors */
@media (min-width: 1440px) {
  .hero-media {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1440px;
    top: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
  }
  .hero-media > * {
    pointer-events: auto;
  }
}

/* iPad Air landscape (1100–1200px) — adjust hero sizing */
@media (min-width: 1100px) and (max-width: 1200px) {
  .hero-left { width: 550px; z-index: 3; }
  .hero-mascot { width: 75%; }
  .hero-tagline { font-size: 0.95rem; }
  .hero-center { left: 50%; z-index: 0; }
  .hero-right { right: 20px; z-index: 2; }
  .hero-product { height: 500px; width: auto; }
  .hero-dog { height: 550px; }
}

/* iPad Pro landscape — minimal tweaks only, desktop layout is fine */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .hero-right { right: 5px; }
  .bone-5 { right: -3%; }
}

/* iPad Mini landscape (1024×768 viewport) — scale down to fit shorter height */
@media (min-width: 768px) and (max-width: 1024px) and (max-height: 800px) {
  .hero-inner {
    height: 520px;
    min-height: unset;
  }
  .hero-left {
    width: 340px;
    left: 74px;
    top: 50%;
  }
  .hero-center {
    top: 4%;
    left: 50%;
  }
  .hero-dog   { height: 420px; }
  .hero-right { right: 0; bottom: 40px; }
  .hero-product { height: 420px; width: auto; }
  .bone { transform: scale(0.65); transform-origin: center center; }
  .bone-2 { right: 10%; }
  .bone-3 { right: 9%; }
  .bone-4 { right: 12%; }
  .bone-5 { right: -3%; }
  .bone-6 { right: 4%; }
}

@media (min-width: 768px) and (max-width: 1100px) {

  /* Nav: hamburger */
  .nav-links { display: none; }

  /* Hero: stacked — logo/tagline on top, bag+dog row below */
  .hero { overflow-x: clip; }
  .hero-inner {
    height: auto;
    overflow: visible;
    min-height: auto;
    padding: 16px 40px 0;
  }

  .hero-left {
    position: static;
    transform: none;
    width: 100%;
    padding: 24px 16px 40px;
    align-items: center;
  }

  .hero-mascot { width: 70%; height: auto; }
  .hero-tagline { white-space: normal; text-align: center; }

  .hero-media {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    width: 100%;
    position: relative;
  }

  /* Bag — left */
  .hero-right {
    order: 1;
    position: static;
    width: 48%;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding-left: 8px;
  }

  .hero-product { width: auto; height: 560px; max-width: none; }

  /* Dog — right */
  .hero-center {
    order: 2;
    position: relative;
    left: 0px;
    transform: none;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    z-index: 0;
    isolation: isolate;
  }

  .hero-dog { width: auto; height: 580px; max-width: none; }

  /* Bones — repositioned for tablet flex layout */
  .bone { z-index: 10; }

  .bone-1 { width: 85px;  top: 5%;  left: 8%;   right: auto; rotate: -40deg; }
  .bone-2 { width: 88px;  top: 26%; left: -4%;  right: auto; }
  .bone-3 { width: 52px;  top: 10%; left: 2%;   right: auto; z-index: 2;}
  .bone-4 { display: none; }
  .bone-5 { width: 75px;  bottom: 56%; left: 43%; right: auto; }
  .bone-6 { width: 95px;  top: -2%; right: 65%;  left: auto; }
  .bone-7 { width: 65px;  top: 10%; right: 48%;  left: auto; }
  .bone-8 { width: 62px;  top: 37%; right: 46%;  left: auto; z-index: 2;}
  .bone-9 { width: 180px; top: 4%; right: 58%; left: auto; z-index: 2; }
  .bone-10 { width: 55px; top: 10%; right: 48%;  left: auto; }
  .bone-11 { width: 72px; top: 24%; right: 46%;  left: auto; }

  /* Benefits: 2 cols */
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }

  /* Shop: 2 cols */
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  /* Ingredients / About: single col */
  .ingredients-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .about-img-wrap { display: flex; justify-content: center; }
}

@media (max-width: 768px) {
  /* Navbar */
  .nav-links {
    display: none;
  }

  .nav-logo img {
    width: 272px;
  }

  /* Hero: logo/tagline stacked on top, bag+dog row below */
  .hero {
    overflow-x: clip;
  }
  .hero-inner {
    padding: 10px 28px 20px;
    height: auto;
    overflow: visible;
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-left {
    position: static;
    transform: none;
    width: 100%;
    padding: 24px 16px 35px;
    align-items: center;
  }

  .hero-mascot {
    width: 90%;
    height: auto;
  }

  .hero-tagline {
    white-space: normal;
    text-align: center;
  }

  /* hero-media becomes the flex row — height driven by image heights */
  .hero-media {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    width: 100%;
    position: relative;
    /*overflow: hidden;*/
  }

  /* Bag — left */
  .hero-right {
    order: 1;
    position: static;
    width: 48%;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding-left: 20px;
  }

  .hero-product {
    width: auto;
    height: 470px;
    max-width: none;
  }

  /* Dog — right, right portion bleeds off screen, foreground */
  .hero-center {
    order: 2;
    position: relative;
    left: -30px;
    transform: none;
    width: 70%;
    flex-shrink: 0;
    overflow: visible;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    z-index: 1;
  }

  img.hero-dog {
    display: none;
  }

  .hero-dog-video {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    height: 590px;
    width: auto;
    opacity: 1;
  }

  .hero-center::after {
    display: none;
  }

  .hero-dog-wrap {
    overflow: visible;
  }

  .hero-dog-wrap::before {
    top: -8px;
  }

  /* Bones: scattered around bag, z-index above flex items */
  .bone {
    z-index: 10;
  }

  .bone-1 {
    width: 82px;
    top: 18%;
    left: 17%;
    right: auto;
    rotate: -40deg;
  }

  .bone-2 {
    width: 85px;
    top: 39%;
    left: 4%;
    right: auto;
  }

  .bone-3 {
    width: 48px;
    top: 23%;
    left: 11%;
    right: auto;
    z-index: 1;
  }

  .bone-4 {
    display: none;
    /*width: 30px;
    top: 50%;
    left: 38%;
    right: auto;*/
  }

  .bone-5 {
    width: 70px;
    bottom: 72%;
    left: 36%;
  }

  .bone-6 {
    width: 92px;
    top: 4%;
    right: 72%;
  }

  .bone-7 {
    width: 62px;
    top: 23%;
    right: 48%;
    z-index: 2;
  }

  .bone-8 {
    width: 60px;
    top: 50%;
    right: 45%;
    z-index: 1;
  }

  .bone-9 {
    width: 172px;
    top: 9%;
    right: 52%;
    z-index: 2;
  }

  .bone-10 {
    width: 52px;
    top: 13%;
    right: 47%;
  }

  .bone-11 {
    width: 78px;
    top: 37%;
    right: 53%;
  }
  
  /* Benefits: 2 columns */
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Shop: single column */
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Ingredients */
  .ingredients-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* About */
  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .about-img-wrap {
    display: flex;
    justify-content: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

@media (max-width: 480px) {
  /* Reset hero sizes inflated by the 768px tablet-mini rules */
  .hero-center {
    left: -5px;
    width: 52%;
    overflow: visible;
  }
  .hero-dog-video {
    height: 320px;
    clip-path: none;
  }
  .hero-product {
    height: 360px;
  }
  .hero-right {
    padding-left: 8px;
  }

  /* Restore original phone bone positions (overrides iPad Mini 768px values) */
  .bone-1 { width: 70px;  top: 5%;  left: 7%;  right: auto; rotate: -40deg; }
  .bone-2 { width: 73px;  top: 26%; left: -6%; right: auto; }
  .bone-3 { width: 41px;  top: 10%; left: 1%;  right: auto; z-index: 1; }
  .bone-5 { width: 60px;  bottom: 85%; left: 26%; }
  .bone-6 { width: 80px;  top: -9%;  right: 82%; }
  .bone-7 { width: 54px;  top: 10%;  right: 41%; z-index: 2; }
  .bone-8 { width: 52px;  top: 37%;  right: 37%; z-index: 1; }
  .bone-9 { width: 150px; top: -4%;  right: 48%; z-index: 2; }
  .bone-10 { width: 45px; top: 0%;   right: 38%; }
  .bone-11 { width: 68px; top: 24%;  right: 38%; }

  .hero-tagline {
    font-size: 0.95rem;
    letter-spacing: 0.02em;
  }
  .hero-center::after {
    top: 82%;
    left: 75%;
  }
  .nav-container {
      padding: 0 15px;
  }
  .product-card {
    margin: 0 0 3em 0;
  }
  .section-title {
    margin-top: 10%;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .benefit-card {
    padding: 20px 12px 18px;
  }
  .benefit-icon {
    font-size: 4.8rem;
  }
  .benefit-label {
    font-size: 1rem;
  }
  .hero-product-wrap {
      margin: 0 0 0 -21px;
  }
  .ingredients-badges {
    gap: 10px;
  }
  .hero-center::after {
    bottom: 10px;
  }
  .badge {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

/* ============================================================
   CHECKOUT MODAL
============================================================ */

/* Overlay + sheet */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 0;
}

.checkout-modal[hidden] {
  display: none;
}

.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  cursor: pointer;
}

.checkout-sheet {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 1080px;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

/* Header */
.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  border-bottom: 1px solid #e8e8e8;
  background: #fff;
}

.checkout-logo {
  height: 36px;
  width: auto;
}

.checkout-secure {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #767676;
}

/* Body columns */
.checkout-body {
  display: flex;
  flex: 1;
}

.checkout-form-col {
  flex: 0 0 58%;
  padding: 40px 48px 40px 40px;
  border-right: 1px solid #e8e8e8;
}

.checkout-summary-col {
  flex: 0 0 42%;
  padding: 40px 40px 40px 40px;
  background: #f9f9f9;
}

/* Breadcrumb */
.checkout-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #999;
  margin-bottom: 28px;
}

.checkout-breadcrumb .crumb {
  color: #999;
  transition: color 0.15s;
}

.checkout-breadcrumb .crumb.active {
  color: var(--brown);
  font-weight: 700;
}

.checkout-breadcrumb .crumb-sep {
  color: #ccc;
}

/* Step title */
.checkout-step-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 20px;
}

/* Fields */
.checkout-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.checkout-field label {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.checkout-field input {
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  padding: 10px 12px;
  font-size: 16px;
  font-family: var(--font-body);
  color: #333;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  background: #fff;
}

.checkout-field input:focus {
  border-color: var(--brown);
  box-shadow: 0 0 0 2px rgba(107,58,42,0.15);
}

.checkout-field input.input-error {
  border-color: #e33;
  box-shadow: 0 0 0 2px rgba(220,50,50,0.12);
}

.checkout-field-row {
  display: flex;
  gap: 12px;
}

.checkout-field-row .checkout-field {
  flex: 1;
}

.checkout-field-row .checkout-field--sm {
  flex: 0 0 90px;
}

/* Nav buttons */
.checkout-nav-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  gap: 12px;
}

.checkout-btn-back {
  background: none;
  border: none;
  color: var(--brown);
  font-size: 14px;
  font-family: var(--font-body);
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.checkout-btn-back:hover {
  color: var(--orange);
}

.checkout-btn-next {
  margin-left: auto;
  min-width: 160px;
}

/* Order summary */
.checkout-product-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 20px;
}

.checkout-product-img-wrap {
  position: relative;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: visible;
  background: #fff;
}

.checkout-product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.checkout-qty-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brown);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}

.checkout-product-details {
  flex: 1;
}

.checkout-product-name {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
  margin-bottom: 3px;
}

.checkout-product-variant {
  font-size: 12px;
  color: #888;
}

.checkout-product-price {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  white-space: nowrap;
}

/* Demo notice */
.checkout-demo-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff8ed;
  border: 1px solid #f5d89a;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13px;
  color: #7a5800;
  margin-bottom: 20px;
  line-height: 1.4;
}

.checkout-demo-notice svg {
  flex-shrink: 0;
  color: #c98000;
}

/* Totals */
.checkout-totals {
  margin-bottom: 24px;
}

.checkout-totals-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #555;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.checkout-totals-row:last-child {
  border-bottom: none;
}

.checkout-totals-row--total {
  font-size: 16px;
  font-weight: 800;
  color: #222;
}

.checkout-shipping-val {
  color: #2a9d5c;
  font-weight: 600;
}

/* Trust badge */
.checkout-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #999;
}

/* Close button */
.checkout-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  padding: 6px;
  line-height: 1;
  border-radius: 4px;
  transition: color 0.15s;
}

.checkout-close-btn:hover {
  color: var(--brown);
}

/* Confirmation screen */
.checkout-confirm {
  position: absolute;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.checkout-confirm[hidden] {
  display: none;
}

.checkout-confirm-inner {
  text-align: center;
  max-width: 440px;
  padding: 40px 24px;
}

.checkout-confirm-icon {
  margin-bottom: 20px;
}

.checkout-confirm-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--brown);
  margin-bottom: 12px;
}

.checkout-confirm-sub {
  font-size: 15px;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.6;
}

.checkout-confirm-product {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 28px;
}

.checkout-confirm-close {
  min-width: 200px;
}

/* ── Mobile checkout ─────────────────────────────────────── */
@media (max-width: 720px) {
  .checkout-sheet {
    min-height: 100dvh;
    border-radius: 0;
  }

  .checkout-header {
    padding: 14px 20px;
  }

  .checkout-logo {
    height: 28px;
  }

  .checkout-body {
    flex-direction: column;
  }

  .checkout-form-col {
    flex: none;
    padding: 28px 20px;
    border-right: none;
    border-bottom: 1px solid #e8e8e8;
    order: 2;
  }

  .checkout-summary-col {
    flex: none;
    padding: 20px;
    order: 1;
  }

  .checkout-field-row {
    flex-direction: column;
    gap: 0;
  }

  .checkout-field-row .checkout-field--sm {
    flex: none;
  }
}

/* ============================================================
   CART ICON IN NAV
============================================================ */
.cart-icon-btn {
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  border-radius: 8px;
  transition: color 0.15s;
}

.cart-icon-btn:hover {
  color: var(--orange);
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -4px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
}

.cart-badge[hidden] {
  display: none;
}

/* badge pulse animation */
@keyframes badgePop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.5); }
  100% { transform: scale(1); }
}

.cart-badge--pop {
  animation: badgePop 0.3s ease;
}

/* ============================================================
   CART DRAWER
============================================================ */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

#cart-drawer.cart-drawer--open .cart-drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 380px;
  max-width: 100vw;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  box-shadow: -4px 0 32px rgba(107, 58, 42, 0.18);
}

#cart-drawer.cart-drawer--open .cart-drawer-panel {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}

.cart-drawer-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--brown);
  margin: 0;
}

.cart-drawer-count {
  font-size: 13px;
  color: #999;
  margin-top: 2px;
  display: block;
}

.cart-drawer-close {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #aaa;
  border-radius: 6px;
  display: flex;
  align-items: center;
  transition: color 0.15s;
  flex-shrink: 0;
}

.cart-drawer-close:hover {
  color: var(--brown);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 20px;
}

.cart-empty {
  text-align: center;
  padding: 48px 20px;
  color: #aaa;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}

.cart-item img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid #eee;
  flex-shrink: 0;
  background: var(--cream);
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.3;
  margin-bottom: 2px;
}

.cart-item-variant {
  font-size: 12px;
  color: #aaa;
}

.cart-qty-stepper {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
}

.cart-qty-stepper button {
  width: 26px;
  height: 26px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  transition: background 0.15s, border-color 0.15s;
  font-family: var(--font-body);
}

.cart-qty-stepper button:hover {
  background: var(--cream);
  border-color: var(--orange);
}

.cart-qty-stepper span {
  width: 28px;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--brown);
}

.cart-item-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--brown);
  white-space: nowrap;
  flex-shrink: 0;
}

.cart-remove-btn {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #ccc;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  transition: color 0.15s;
  flex-shrink: 0;
}

.cart-remove-btn:hover {
  color: #e53e3e;
}

.cart-drawer-footer {
  border-top: 1px solid #eee;
  padding: 20px;
  background: #fff;
  flex-shrink: 0;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 16px;
}

#cartCheckoutBtn {
  width: 100%;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  padding: 14px 0;
}

#cartCheckoutBtn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.cart-continue-link {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: #aaa;
  cursor: pointer;
  transition: color 0.15s;
}

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

/* Mobile */
@media (max-width: 480px) {
  .cart-drawer-panel {
    width: 100vw;
  }
}
