/** Shopify CDN: Minification failed

Line 754:13 Expected ":"

**/
/* ============================================================
   HAPPY PAW CO — COMPLETE CUSTOM DESIGN SYSTEM
   Warm & Playful | Built from scratch
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --coral:      #FF6B35;
  --coral-dk:   #E0531D;
  --coral-lt:   #FFF0EB;
  --yellow:     #FFD166;
  --yellow-lt:  #FFFBF0;
  --mint:       #06D6A0;
  --mint-lt:    #E8FDF7;
  --sky:        #74C0FC;
  --sky-lt:     #EDF6FF;
  --bg:         #FFF8F2;
  --white:      #FFFFFF;
  --text:       #1E1208;
  --muted:      #7A6A5A;
  --border:     #F0E4D4;
  --r-xl:       28px;
  --r-lg:       20px;
  --r-md:       12px;
  --r-pill:     50px;
  --shadow:     0 4px 20px rgba(255,107,53,.10);
  --shadow-lg:  0 12px 40px rgba(255,107,53,.18);
  --shadow-neu: 0 2px 14px rgba(30,18,8,.07);
  --ease:       0.22s ease;
  --font:       'Nunito', sans-serif;
}

/* ============================================================
   GLOBAL
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body, body.gradient {
  font-family: var(--font) !important;
  background: var(--bg) !important;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

body *, input, textarea, select, button { font-family: var(--font) !important; }

::selection { background: rgba(255,107,53,.15); }

/* Remove gradient blobs Dawn adds */
.gradient { background: none !important; }
[class*="color-background"] { background-color: transparent !important; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,.h1 { font-size: clamp(3rem,6vw,5.6rem); font-weight: 900 !important; line-height:1.08; letter-spacing:-.03em; color:var(--text) !important; }
h2,.h2 { font-size: clamp(2.4rem,4.5vw,4rem); font-weight: 900 !important; line-height:1.12; letter-spacing:-.025em; color:var(--text) !important; }
h3,.h3 { font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 800 !important; color:var(--text) !important; }
h4,.h4 { font-size:1.9rem; font-weight:800 !important; color:var(--text) !important; }
p,li { font-size:1.5rem; line-height:1.8; color:var(--muted) !important; font-weight:500; }
a:not(.hpc-btn) { color:var(--coral); text-decoration:none; transition:color var(--ease); }
a:not(.hpc-btn):hover { color:var(--coral-dk); }

/* ============================================================
   SHARED COMPONENTS
   ============================================================ */

/* Eyebrow label */
.hpc-eyebrow {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral);
  background: var(--coral-lt);
  padding: .4rem 1.2rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.4rem;
}

/* Section header (centered) */
.hpc-section-header {
  text-align: center;
  max-width: 70rem;
  margin: 0 auto 5rem;
}
.hpc-section-header h2 { margin: .8rem 0 1.2rem; }
.hpc-section-header p { font-size:1.6rem; color:var(--muted) !important; }

/* Buttons */
.hpc-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  font-size: 1.5rem;
  border-radius: var(--r-pill);
  padding: 0 3rem;
  height: 5.2rem;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
}
.hpc-btn--primary {
  background: var(--coral);
  color: #fff !important;
  border-color: var(--coral);
  box-shadow: var(--shadow);
}
.hpc-btn--primary:hover {
  background: var(--coral-dk);
  border-color: var(--coral-dk);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: #fff !important;
}
.hpc-btn--outline {
  background: transparent;
  color: var(--text) !important;
  border-color: var(--border);
}
.hpc-btn--outline:hover {
  border-color: var(--coral);
  color: var(--coral) !important;
  transform: translateY(-2px);
}

/* ============================================================
   HEADER (Dawn override)
   ============================================================ */
.section-header, .header-wrapper {
  background: var(--white) !important;
  border-bottom: 2px solid var(--border) !important;
  box-shadow: 0 2px 16px rgba(30,18,8,.05) !important;
}
.header { background: var(--white) !important; }

.header__menu-item, .list-menu__item--link {
  font-weight: 700 !important;
  font-size: 1.5rem !important;
  color: var(--text) !important;
  text-decoration: none !important;
  transition: color var(--ease) !important;
}
.header__menu-item:hover, .list-menu__item--link:hover { color: var(--coral) !important; }
.cart-count-bubble { background: var(--coral) !important; color: #fff !important; font-weight:800 !important; }

/* Announcement bar */
.announcement-bar { background: var(--coral) !important; }
.announcement-bar__message, .announcement-bar p, .announcement-bar a, .announcement-bar span {
  font-weight: 700 !important; font-size: 1.35rem !important; color: #fff !important;
}

/* ============================================================
   HERO
   ============================================================ */
.hpc-hero {
  background: var(--bg);
  padding: 7rem 0 0;
  position: relative;
  overflow: hidden;
}

.hpc-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding-bottom: 6rem;
}

/* Content side */
.hpc-hero__content { max-width: 58rem; }

.hpc-hero__heading {
  font-size: clamp(3.4rem, 5.5vw, 6rem) !important;
  font-weight: 900 !important;
  color: var(--text) !important;
  letter-spacing: -.035em;
  line-height: 1.05;
  margin: .8rem 0 2rem;
}

.hpc-hero__subtext {
  font-size: 1.7rem !important;
  color: var(--muted) !important;
  line-height: 1.75;
  margin-bottom: 3.2rem;
}

.hpc-hero__actions {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* Stats row */
.hpc-hero__stats {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.hpc-stat { text-align: center; }
.hpc-stat__num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.hpc-stat__label {
  font-size: 1.25rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: .3rem;
  display: block;
}
.hpc-stat__divider {
  width: 1px;
  height: 3.5rem;
  background: var(--border);
}

/* Image side */
.hpc-hero__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hpc-hero__blob {
  width: 100%;
  max-width: 48rem;
  aspect-ratio: 1;
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: hpc-blob-morph 8s ease-in-out infinite;
}

@keyframes hpc-blob-morph {
  0%,100% { border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%; }
  33%      { border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%; }
  66%      { border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%; }
}

.hpc-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hpc-hero__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(30,18,8,.3);
  padding: 4rem;
  text-align: center;
}

/* Floating badges */
.hpc-hero__badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.2rem 1.6rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  animation: hpc-float 3s ease-in-out infinite;
}
.hpc-hero__badge--top { top: 8%; right: -2rem; animation-delay: 0s; }
.hpc-hero__badge--bottom { bottom: 12%; left: -2rem; animation-delay: 1.5s; }

@keyframes hpc-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.hpc-hero__badge-icon { font-size: 2rem; }
.hpc-hero__badge strong { display:block; font-size:1.4rem; font-weight:800; color:var(--text); }
.hpc-hero__badge span { display:block; font-size:1.2rem; color:var(--muted); }

/* Wave divider */
.hpc-hero__wave { line-height:0; margin-top:-1px; }
.hpc-hero__wave svg { width:100%; height:80px; display:block; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.hpc-trust {
  background: var(--white);
  padding: 3rem 0;
  border-bottom: 2px solid var(--border);
}

.hpc-trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.hpc-trust__item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.hpc-trust__icon {
  font-size: 2.2rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--coral-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hpc-trust__text strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}
.hpc-trust__text span {
  font-size: 1.3rem;
  color: var(--muted);
  font-weight: 500;
}

.hpc-trust__sep {
  width: 1px;
  height: 4rem;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.hpc-categories {
  background: var(--bg);
  padding: 8rem 0;
}

.hpc-categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.hpc-cat-card {
  background: var(--cat-bg, #FFF0EB);
  border-radius: var(--r-xl);
  padding: 3.2rem 2.4rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  transition: transform var(--ease), box-shadow var(--ease);
  border: 2px solid transparent;
}
.hpc-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cat-color, var(--coral));
}

.hpc-cat-card__icon {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: .8rem;
}

.hpc-cat-card__title {
  font-size: 2rem !important;
  font-weight: 900 !important;
  color: var(--text) !important;
  margin: 0;
}

.hpc-cat-card__desc {
  font-size: 1.4rem !important;
  color: var(--muted) !important;
  line-height: 1.6;
  flex: 1;
  margin: 0;
}

.hpc-cat-card__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--cat-color, var(--coral));
  margin-top: 1rem;
  transition: gap var(--ease);
}
.hpc-cat-card:hover .hpc-cat-card__cta { gap: .9rem; }

/* ============================================================
   FEATURED PRODUCTS (Dawn override)
   ============================================================ */
.section-featured-collection {
  background: var(--white) !important;
  padding: 7rem 0 !important;
}

.section-featured-collection .title,
.featured-collection .title {
  font-size: clamp(2.4rem,4vw,3.6rem) !important;
  font-weight: 900 !important;
  color: var(--text) !important;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -.02em;
}

/* Product cards */
.card--card, .card--standard .card__inner {
  background: var(--white) !important;
  border: 2px solid var(--border) !important;
  border-radius: var(--r-xl) !important;
  box-shadow: var(--shadow-neu) !important;
  overflow: hidden !important;
  transition: transform var(--ease), box-shadow var(--ease) !important;
}
.card-wrapper:hover .card--card,
.card-wrapper:hover .card--standard .card__inner {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-lg) !important;
}
.card__media img { transition: transform .4s ease !important; }
.card-wrapper:hover .card__media img { transform: scale(1.07) !important; }

.card-information { padding: 1.6rem 2rem 2rem !important; background: var(--white) !important; }
.card-information .card__heading,
.card-information .card__heading a {
  font-size: 1.7rem !important;
  font-weight: 800 !important;
  color: var(--text) !important;
  text-decoration: none !important;
  line-height: 1.3;
}

.price__regular .price-item, .price .money {
  font-weight: 900 !important;
  font-size: 1.9rem !important;
  color: var(--coral) !important;
}
.price__sale .price-item--regular .money {
  color: var(--muted) !important;
  font-size: 1.4rem !important;
  font-weight: 500 !important;
  text-decoration: line-through !important;
}

.quick-add__submit {
  background: var(--coral) !important;
  color: #fff !important;
  border-radius: var(--r-pill) !important;
  font-weight: 800 !important;
  border: none !important;
  transition: all var(--ease) !important;
}
.quick-add__submit:hover { background: var(--coral-dk) !important; }

.badge {
  border-radius: 50px !important;
  font-weight: 800 !important;
  font-size: 1.1rem !important;
  padding: .35rem 1.1rem !important;
  background: var(--coral) !important;
  color: #fff !important;
  border: none !important;
}

/* View all button */
.section-featured-collection .button,
.featured-collection .button {
  background: var(--coral) !important;
  color: #fff !important;
  border-radius: var(--r-pill) !important;
  font-weight: 800 !important;
  border: 2px solid var(--coral) !important;
  box-shadow: var(--shadow) !important;
  min-height: 5.2rem !important;
  font-size: 1.5rem !important;
  transition: all var(--ease) !important;
}
.section-featured-collection .button:hover { background: var(--coral-dk) !important; border-color: var(--coral-dk) !important; transform: translateY(-2px); }
.button::before, .button::after { display: none !important; }

/* ============================================================
   ABOUT
   ============================================================ */
.hpc-about { padding: 9rem 0; }

.hpc-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

/* Image column */
.hpc-about__image-col { position: relative; }

.hpc-about__image-frame {
  border-radius: 50%;
  border: 8px solid var(--yellow);
  overflow: hidden;
  aspect-ratio: 1;
  max-width: 46rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow-lt);
}
.hpc-about__img { width:100%; height:100%; object-fit:cover; }
.hpc-about__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  min-height: 30rem;
  color: rgba(30,18,8,.25);
}

.hpc-about__badge {
  position: absolute;
  bottom: 2rem;
  right: 0;
  background: var(--coral);
  color: #fff;
  font-weight: 800;
  font-size: 1.4rem;
  padding: 1rem 2rem;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow);
}

/* Content column */
.hpc-about__content h2 { margin: .8rem 0 2rem; }

.hpc-about__body p {
  font-size: 1.6rem !important;
  color: var(--muted) !important;
  line-height: 1.8 !important;
  margin-bottom: 1.4rem;
}

.hpc-about__perks {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 3rem;
}

.hpc-perk {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
}
.hpc-perk__icon {
  font-size: 1.8rem;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hpc-perk strong { display:block; font-size:1.6rem; font-weight:800; color:var(--text); margin-bottom:.3rem; }
.hpc-perk p { font-size:1.4rem !important; color:var(--muted) !important; margin:0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.hpc-testimonials {
  background: var(--bg);
  padding: 8rem 0;
}

.hpc-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.hpc-review-card {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 2px solid var(--border);
  padding: 3rem 2.8rem;
  box-shadow: var(--shadow-neu);
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.hpc-review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.hpc-review-card__stars { font-size: 1.6rem; letter-spacing: .1rem; }

.hpc-review-card__text {
  font-size: 1.55rem !important;
  color: var(--text) !important;
  line-height: 1.7 !important;
  font-style: italic;
  flex: 1;
}

.hpc-review-card__author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.hpc-review-card__avatar {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.hpc-review-card__author strong { display:block; font-size:1.5rem; font-weight:800; color:var(--text); }
.hpc-review-card__author span { font-size:1.3rem; color:var(--muted); font-weight:500; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.hpc-newsletter {
  background: var(--yellow);
  border-radius: var(--r-xl);
  margin: 0 2rem 6rem;
  overflow: hidden;
}

.hpc-newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 6rem;
}

.hpc-newsletter__icon { font-size: 4rem; display: block; margin-bottom: 1rem; }
.hpc-newsletter__content h2 { font-size: clamp(2.4rem,3.5vw,3.4rem) !important; color:var(--text) !important; margin-bottom:1rem; }
.hpc-newsletter__content p { font-size:1.55rem !important; color:var(--text) !important; opacity:.75; }

.hpc-newsletter__input-wrap {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hpc-newsletter__input {
  flex: 1;
  min-width: 22rem;
  height: 5.2rem;
  border-radius: var(--r-pill);
  border: 2px solid rgba(30,18,8,.15);
  background: rgba(255,255,255,.6);
  padding: 0 2rem;
  font-size: 1.5rem;
  color: var(--text);
  transition: border-color var(--ease), background var(--ease);
}
.hpc-newsletter__input:focus {
  border-color: var(--coral);
  background: var(--white);
  outline: none;
}
.hpc-newsletter__input::placeholder { color: rgba(30,18,8,.4); }

.hpc-newsletter__success {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text);
}
.hpc-newsletter__success span { font-size: 3rem; }

.hpc-newsletter__error { color: var(--coral); font-size:1.3rem; margin-top:.8rem; }
.hpc-newsletter__fine { font-size:1.2rem !important; color:var(--text) !important; opacity:.55; margin-top:1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer.footer,
footer.footer[class*="color-"] {
  background: #1E1208 !important;
  background-image: none !important;
}

footer.footer *,
.footer-block__heading,
.footer-block p,
.footer-block li,
.footer-block a,
.footer-block span {
  color: rgba(255,248,242,.65) !important;
}

footer.footer h2,
footer.footer h3,
.footer-block__heading {
  color: #FFF8F2 !important;
  font-weight: 800 !important;
  font-size: 1.4rem !important;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bott