/** Shopify CDN: Minification failed

Line 867:0 Unexpected "}"

**/
/* =========================================================
   Cozy Night-Light Theme Styles
   Custom styling that complements the base Publisher theme.
   ========================================================= */

:root {
  --cozy-cream: #fbf6ee;
  --cozy-beige: #f0e6d2;
  --cozy-amber: #f5c97a;
  --cozy-honey: #d99b53;
  --cozy-caramel: #b97942;
  --cozy-charcoal: #3a2d22;
  --cozy-taupe: #8a7866;
  --cozy-glow: rgba(245, 201, 122, 0.35);
  --cozy-shadow: 0 18px 40px -22px rgba(58, 45, 34, 0.35);
  --cozy-radius-lg: 22px;
  --cozy-radius-md: 14px;
  --cozy-radius-sm: 10px;
  --cozy-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Countdown / Flash Sale banner ---------- */
.cozy-countdown {
  background: linear-gradient(135deg, var(--cozy-charcoal), #4a3828);
  color: #fff;
  padding: clamp(32px, 5vw, 64px) 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cozy-countdown::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, var(--cozy-glow), transparent 70%);
  pointer-events: none;
}
.cozy-countdown .cozy-heading { color: #fff; }
.cozy-countdown .cozy-subtext { color: rgba(255,255,255,0.82); margin-left: auto; margin-right: auto; }
.cozy-countdown__timer {
  display: flex; justify-content: center; gap: clamp(1rem, 2.5vw, 2rem);
  margin: 2.4rem 0;
}
.cozy-countdown__unit {
  display: flex; flex-direction: column; align-items: center;
  min-width: 64px;
}
.cozy-countdown__number {
  font-family: var(--font-heading-family);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--cozy-amber);
  background: rgba(255,255,255,0.08);
  border-radius: var(--cozy-radius-sm);
  padding: 0.6rem 1rem;
  min-width: 64px;
  text-align: center;
}
.cozy-countdown__label {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 0.6rem;
  color: rgba(255,255,255,0.65);
}

/* ---------- Bestseller Ranking ---------- */
.cozy-ranking__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(16px, 2vw, 28px);
  margin-top: 3.2rem;
  counter-reset: ranking;
}
.cozy-ranking__card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--cozy-charcoal);
  background: #fff;
  border-radius: var(--cozy-radius-md);
  overflow: hidden;
  box-shadow: var(--cozy-shadow);
  transition: transform 0.4s var(--cozy-ease);
  counter-increment: ranking;
}
.cozy-ranking__card:hover { transform: translateY(-4px); }
.cozy-ranking__badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  font-family: var(--font-heading-family);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  border-radius: 50%;
}
.cozy-ranking__badge::after {
  content: counter(ranking);
}
.cozy-ranking__card:nth-child(1) .cozy-ranking__badge { background: linear-gradient(135deg, #f5c97a, #d99b53); }
.cozy-ranking__card:nth-child(2) .cozy-ranking__badge { background: linear-gradient(135deg, #c0c0c0, #9a9a9a); }
.cozy-ranking__card:nth-child(3) .cozy-ranking__badge { background: linear-gradient(135deg, #cd7f32, #a0612b); }
.cozy-ranking__card:nth-child(n+4) .cozy-ranking__badge { background: var(--cozy-taupe); }
.cozy-ranking__media {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--cozy-cream);
}
.cozy-ranking__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--cozy-ease);
}
.cozy-ranking__card:hover .cozy-ranking__media img { transform: scale(1.06); }
.cozy-ranking__body {
  padding: 1.4rem 1.6rem 1.8rem;
  display: flex; flex-direction: column; gap: 0.4rem;
  flex: 1;
}
.cozy-ranking__title { font-size: 1.5rem; font-weight: 600; margin: 0; line-height: 1.3; }
.cozy-ranking__price { font-size: 1.4rem; color: var(--cozy-taupe); margin: 0; }
.cozy-ranking__reviews { font-size: 1.2rem; color: var(--cozy-honey); margin: 0; }

/* ---------- Marquee / ticker ---------- */
.cozy-marquee {
  overflow: hidden;
  background: var(--cozy-beige);
  padding: 1rem 0;
  white-space: nowrap;
}
.cozy-marquee__inner {
  display: inline-flex;
  animation: cozyMarquee 30s linear infinite;
}
.cozy-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 2.4rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cozy-charcoal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cozy-marquee__item::before {
  content: "✦";
  color: var(--cozy-honey);
}
@keyframes cozyMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Generic helpers ---------- */
.cozy-section {
  padding: clamp(40px, 6vw, 96px) 0;
}
.cozy-container {
  width: 100%;
  max-width: var(--page-width, 1200px);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}
.cozy-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 1.1rem;
  color: var(--cozy-honey);
  margin-bottom: 1.2rem;
}
.cozy-heading {
  font-family: var(--font-heading-family);
  font-weight: var(--font-heading-weight);
  margin: 0 0 1.2rem;
  color: var(--cozy-charcoal);
  letter-spacing: -0.01em;
}
.cozy-heading--xl { font-size: clamp(3.2rem, 5vw, 5.6rem); line-height: 1.05; }
.cozy-heading--lg { font-size: clamp(2.6rem, 3.6vw, 4rem); line-height: 1.1; }
.cozy-heading--md { font-size: clamp(2rem, 2.4vw, 2.6rem); line-height: 1.2; }
.cozy-subtext {
  color: var(--cozy-taupe);
  font-size: 1.6rem;
  line-height: 1.6;
  max-width: 60ch;
}
.cozy-center { text-align: center; }
.cozy-center .cozy-subtext { margin-left: auto; margin-right: auto; }

.cozy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.4rem 2.6rem;
  border-radius: 999px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.35s var(--cozy-ease), box-shadow 0.35s var(--cozy-ease), background 0.35s var(--cozy-ease);
  border: 1px solid transparent;
  cursor: pointer;
}
.cozy-button--primary {
  background: var(--cozy-honey);
  color: #fff;
  box-shadow: 0 12px 30px -12px rgba(217, 155, 83, 0.6);
}
.cozy-button--primary:hover { transform: translateY(-2px); background: var(--cozy-caramel); }
.cozy-button--ghost {
  background: transparent;
  color: var(--cozy-charcoal);
  border-color: rgba(58, 45, 34, 0.25);
}
.cozy-button--ghost:hover { background: rgba(58, 45, 34, 0.06); border-color: var(--cozy-charcoal); }

/* ---------- Hero ---------- */
.cozy-hero { position: relative; overflow: hidden; isolation: isolate; }
.cozy-hero__media { position: absolute; inset: 0; z-index: -1; }
.cozy-hero__media img,
.cozy-hero__media video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.cozy-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(58, 45, 34, 0) 30%, rgba(58, 45, 34, 0.55) 100%);
  z-index: -1;
}
.cozy-hero__inner {
  min-height: clamp(420px, 70vh, 760px);
  display: flex; align-items: flex-end;
  padding: clamp(60px, 8vw, 120px) 0;
}
.cozy-hero__content { max-width: 620px; color: #fff; }
.cozy-hero__content .cozy-heading,
.cozy-hero__content .cozy-subtext { color: #fff; }
.cozy-hero__content .cozy-subtext { opacity: 0.92; }
.cozy-hero__actions {
  display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 2.4rem;
}
.cozy-hero--center .cozy-hero__inner { align-items: center; justify-content: center; text-align: center; }
.cozy-hero--center .cozy-hero__content { margin: 0 auto; }
.cozy-hero--center .cozy-hero__actions { justify-content: center; }

@media (max-width: 749px) {
  .cozy-hero__media picture,
  .cozy-hero__media img { object-position: var(--cozy-hero-mobile-pos, center); }
}

/* ---------- Slideshow text overlay ---------- */
/*
 * When show_text_box is false, the text overlays the image on both desktop
 * and mobile. The theme's scheme-1 charcoal text disappears on dark photo
 * areas. We force white text with a text-shadow so it stays legible
 * everywhere — consistent across all viewports.
 */
.slideshow .banner__box .banner__heading,
.slideshow .banner__box .banner__heading *,
.slideshow .banner__box .banner__text,
.slideshow .banner__box .banner__text * {
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55), 0 0 20px rgba(0, 0, 0, 0.25);
}
.slideshow .banner__box .banner__heading em {
  color: var(--cozy-amber);
}
.slideshow .banner__box .banner__buttons .button--primary {
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.4);
}

/* ---------- USP bar ---------- */
.cozy-usp {
  background: var(--cozy-cream);
  padding: clamp(24px, 4vw, 48px) 0;
  border-top: 1px solid rgba(58, 45, 34, 0.06);
  border-bottom: 1px solid rgba(58, 45, 34, 0.06);
}
.cozy-usp__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}
.cozy-usp__item { text-align: center; }
.cozy-usp__icon {
  width: 48px; height: 48px; margin: 0 auto 1rem;
  display: grid; place-items: center;
  color: var(--cozy-honey);
}
.cozy-usp__icon svg { width: 100%; height: 100%; }
.cozy-usp__title {
  font-size: 1.5rem; font-weight: 600; color: var(--cozy-charcoal);
  margin: 0 0 0.4rem;
}
.cozy-usp__text { font-size: 1.3rem; color: var(--cozy-taupe); margin: 0; line-height: 1.5; }

/* ---------- Scene cards ---------- */
.cozy-scenes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 2vw, 28px);
  margin-top: 3.6rem;
}
.cozy-scenes__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--cozy-radius-lg);
  text-decoration: none;
  aspect-ratio: 3 / 4;
  display: block;
  box-shadow: var(--cozy-shadow);
  transition: transform 0.4s var(--cozy-ease);
}
.cozy-scenes__card:hover { transform: translateY(-4px); }
.cozy-scenes__card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--cozy-ease);
}
.cozy-scenes__card:hover img { transform: scale(1.05); }
.cozy-scenes__card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(58, 45, 34, 0) 35%, rgba(58, 45, 34, 0.7) 100%);
}
.cozy-scenes__card-body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.2rem;
  color: #fff;
}
.cozy-scenes__card-title {
  font-family: var(--font-heading-family);
  font-size: 2.2rem;
  margin: 0 0 0.4rem;
}
.cozy-scenes__card-text { font-size: 1.3rem; opacity: 0.92; margin: 0; }

/* ---------- Gift guide ---------- */
.cozy-gift__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2vw, 28px);
  margin-top: 3.6rem;
}
.cozy-gift__card {
  background: var(--cozy-cream);
  border-radius: var(--cozy-radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none;
  color: var(--cozy-charcoal);
  box-shadow: var(--cozy-shadow);
  transition: transform 0.4s var(--cozy-ease);
}
.cozy-gift__card:hover { transform: translateY(-4px); }
.cozy-gift__card-media { aspect-ratio: 4 / 3; overflow: hidden; }
.cozy-gift__card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--cozy-ease);
}
.cozy-gift__card:hover .cozy-gift__card-media img { transform: scale(1.04); }
.cozy-gift__card-body { padding: 2rem 2.2rem 2.4rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.cozy-gift__card-tag {
  display: inline-block;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  color: var(--cozy-honey);
  text-transform: uppercase;
}
.cozy-gift__card-title { font-size: 1.9rem; margin: 0; font-family: var(--font-heading-family); }
.cozy-gift__card-text { font-size: 1.3rem; color: var(--cozy-taupe); margin: 0 0 0.6rem; }
.cozy-gift__card-cta {
  margin-top: auto;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cozy-caramel);
}

/* ---------- Room inspiration ---------- */
.cozy-room {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: center;
}
.cozy-room--text-left .cozy-room__text { grid-column: 1 / span 5; }
.cozy-room--text-left .cozy-room__media { grid-column: 6 / span 7; }
.cozy-room--text-right .cozy-room__media { grid-column: 1 / span 7; }
.cozy-room--text-right .cozy-room__text { grid-column: 8 / span 5; }
.cozy-room__media {
  position: relative;
  border-radius: var(--cozy-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #000;
}
.cozy-room__media img,
.cozy-room__media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.cozy-room__play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(58, 45, 34, 0.25);
  color: #fff; border: 0; cursor: pointer;
}
.cozy-room__play svg { width: 72px; height: 72px; opacity: 0.9; }
@media (max-width: 749px) {
  .cozy-room { grid-template-columns: 1fr; }
  .cozy-room__text,
  .cozy-room__media { grid-column: 1 / -1 !important; }
}

/* ---------- Brand story ---------- */
.cozy-story {
  background: var(--cozy-cream);
  border-radius: var(--cozy-radius-lg);
  padding: clamp(36px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.cozy-story__promise {
  display: grid;
  gap: 1.6rem;
}
.cozy-story__promise-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
}
.cozy-story__promise-item svg { width: 28px; height: 28px; color: var(--cozy-honey); flex-shrink: 0; margin-top: 0.2rem; }
.cozy-story__promise-title { font-weight: 600; margin: 0 0 0.2rem; color: var(--cozy-charcoal); font-size: 1.5rem; }
.cozy-story__promise-text { margin: 0; color: var(--cozy-taupe); font-size: 1.3rem; line-height: 1.5; }

/* ---------- UGC gallery ---------- */
.cozy-ugc__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(8px, 1vw, 14px);
  margin-top: 3.2rem;
}
.cozy-ugc__item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--cozy-radius-md);
  background: var(--cozy-beige);
}
.cozy-ugc__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--cozy-ease);
}
.cozy-ugc__item:hover img { transform: scale(1.05); }
.cozy-ugc__handle {
  position: absolute; bottom: 8px; left: 10px;
  font-size: 1.1rem; color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ---------- Testimonials ---------- */
.cozy-testimonials__summary {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
  margin-bottom: 3.6rem;
}
.cozy-testimonials__stars { color: var(--cozy-amber); font-size: 2rem; letter-spacing: 0.2rem; }
.cozy-testimonials__rating-num { font-size: 2.2rem; font-weight: 700; color: var(--cozy-charcoal); }
.cozy-testimonials__rating-meta { font-size: 1.3rem; color: var(--cozy-taupe); }
.cozy-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.cozy-testimonials__card {
  background: #fff;
  border: 1px solid rgba(58, 45, 34, 0.08);
  border-radius: var(--cozy-radius-md);
  padding: 2.4rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.cozy-testimonials__quote { font-size: 1.5rem; line-height: 1.55; color: var(--cozy-charcoal); margin: 0; }
.cozy-testimonials__author { font-size: 1.3rem; color: var(--cozy-taupe); margin: 0; }

/* ---------- Newsletter ---------- */
.cozy-newsletter {
  background: linear-gradient(135deg, var(--cozy-cream) 0%, var(--cozy-beige) 100%);
  border-radius: var(--cozy-radius-lg);
  padding: clamp(36px, 5vw, 72px);
  text-align: center;
}
.cozy-newsletter__form {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; align-items: stretch;
  max-width: 520px; margin: 2.4rem auto 1rem;
}
.cozy-newsletter__input {
  flex: 1 1 240px;
  padding: 1.3rem 1.8rem;
  border: 1px solid rgba(58, 45, 34, 0.2);
  border-radius: 999px;
  background: #fff;
  font-size: 1.5rem;
  color: var(--cozy-charcoal);
}
.cozy-newsletter__input:focus { outline: 2px solid var(--cozy-honey); outline-offset: 2px; }
.cozy-newsletter__benefits {
  display: flex; gap: 1.6rem; justify-content: center; flex-wrap: wrap;
  margin-top: 1.6rem; font-size: 1.2rem; color: var(--cozy-taupe);
}
.cozy-newsletter__success { color: var(--cozy-caramel); margin-top: 1rem; font-weight: 600; }

/* ---------- Trust strip ---------- */
.cozy-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.6rem;
  background: var(--cozy-cream);
  border-radius: var(--cozy-radius-md);
  padding: 1.8rem 2.4rem;
  margin: 2rem 0;
}
.cozy-trust__item { display: flex; gap: 1rem; align-items: center; }
.cozy-trust__item svg { width: 24px; height: 24px; color: var(--cozy-honey); flex-shrink: 0; }
.cozy-trust__label { font-size: 1.3rem; color: var(--cozy-charcoal); line-height: 1.3; margin: 0; }

/* ---------- Product Features (Why you'll love it) ---------- */
.cozy-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(20px, 3vw, 36px);
  margin-top: 3.2rem;
}
.cozy-features__item { text-align: center; }
.cozy-features__icon {
  width: 56px; height: 56px; margin: 0 auto 1.2rem;
  background: var(--cozy-cream);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--cozy-honey);
}
.cozy-features__icon svg { width: 28px; height: 28px; }
.cozy-features__title { font-size: 1.6rem; font-weight: 600; color: var(--cozy-charcoal); margin: 0 0 0.6rem; }
.cozy-features__text { font-size: 1.3rem; color: var(--cozy-taupe); margin: 0; line-height: 1.5; }

/* ---------- Product FAQ ---------- */
.cozy-faq { max-width: 760px; margin: 3.2rem auto 0; }
.cozy-faq__item {
  border-bottom: 1px solid rgba(58, 45, 34, 0.12);
  padding: 1.6rem 0;
}
.cozy-faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.2rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--cozy-charcoal);
}
.cozy-faq__item summary::-webkit-details-marker { display: none; }
.cozy-faq__item summary::after {
  content: "+";
  font-size: 2.4rem;
  color: var(--cozy-honey);
  transition: transform 0.3s var(--cozy-ease);
}
.cozy-faq__item[open] summary::after { content: "−"; }
.cozy-faq__answer { padding-top: 1rem; color: var(--cozy-taupe); font-size: 1.4rem; line-height: 1.6; }

/* ---------- Sticky Add To Cart ---------- */
.cozy-sticky-atc {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(58, 45, 34, 0.08);
  box-shadow: 0 -12px 32px -16px rgba(58, 45, 34, 0.25);
  padding: 1.2rem 1.6rem;
  transform: translateY(120%);
  transition: transform 0.4s var(--cozy-ease);
  z-index: 60;
}
.cozy-sticky-atc.is-visible { transform: translateY(0); }
.cozy-sticky-atc.is-hidden-after-add { transform: translateY(120%); pointer-events: none; }
.cozy-sticky-atc.is-added .cozy-sticky-atc__button { background: #2e7d32; }
.cozy-sticky-atc__inner {
  display: flex; align-items: center; gap: 1.4rem;
  max-width: var(--page-width, 1200px); margin: 0 auto;
}
.cozy-sticky-atc__image {
  width: 52px; height: 52px; border-radius: 10px;
  object-fit: cover; flex-shrink: 0;
}
.cozy-sticky-atc__info { flex: 1; min-width: 0; }
.cozy-sticky-atc__title {
  font-size: 1.4rem; font-weight: 600; color: var(--cozy-charcoal);
  margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cozy-sticky-atc__price { font-size: 1.3rem; color: var(--cozy-taupe); margin: 0; }
.cozy-sticky-atc__button {
  background: var(--cozy-honey);
  color: #fff;
  border: 0;
  padding: 1.2rem 2rem;
  border-radius: 999px;
  font-size: 1.4rem; font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s var(--cozy-ease);
}
.cozy-sticky-atc__button:hover { background: var(--cozy-caramel); }
.cozy-sticky-atc__button:disabled { opacity: 0.55; cursor: not-allowed; }

@media (min-width: 990px) {
  .cozy-sticky-atc__image { width: 60px; height: 60px; }
}

/* ---------- Free shipping progress bar ---------- */
.cozy-shipping-bar {
  padding: 1.4rem 2rem;
  background: var(--cozy-cream);
  border-radius: var(--cozy-radius-sm);
  margin: 0 1.5rem 1rem;
}
.cozy-shipping-bar__text {
  font-size: 1.3rem;
  color: var(--cozy-charcoal);
  margin: 0 0 0.8rem;
  text-align: center;
}
.cozy-shipping-bar__text strong { color: var(--cozy-caramel); }
.cozy-shipping-bar__track {
  height: 6px; border-radius: 999px;
  background: rgba(58, 45, 34, 0.1);
  overflow: hidden;
}
.cozy-shipping-bar__fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--cozy-amber), var(--cozy-honey));
  transition: width 0.5s var(--cozy-ease);
}
.cozy-shipping-bar.is-unlocked .cozy-shipping-bar__fill { background: var(--cozy-caramel); }

/* ---------- Collection enhancements ---------- */
.cozy-scene-chips {
  display: flex; gap: 0.8rem; flex-wrap: wrap;
  margin: 1.6rem 0 2.4rem;
}
.cozy-scene-chip {
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  background: var(--cozy-cream);
  color: var(--cozy-charcoal);
  font-size: 1.3rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.3s var(--cozy-ease);
}
.cozy-scene-chip:hover,
.cozy-scene-chip.is-active {
  background: var(--cozy-honey);
  color: #fff;
}
.cozy-scene-chip.is-active { font-weight: 600; }

.cozy-collection-banner {
  position: relative;
  border-radius: var(--cozy-radius-lg);
  overflow: hidden;
  min-height: clamp(220px, 30vw, 360px);
  margin: 2rem 0;
  isolation: isolate;
}
.cozy-collection-banner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; z-index: -1;
}
.cozy-collection-banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(58, 45, 34, 0.1), rgba(58, 45, 34, 0.55));
  z-index: -1;
}
.cozy-collection-banner__inner {
  padding: clamp(24px, 5vw, 64px);
  color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: inherit;
}
.cozy-collection-banner__title { font-family: var(--font-heading-family); font-size: clamp(2.6rem, 4vw, 4.2rem); margin: 0 0 0.8rem; }
.cozy-collection-banner__subtitle { font-size: 1.5rem; max-width: 56ch; margin: 0; opacity: 0.95; }

/* ---------- Recently viewed ---------- */
.cozy-recently { padding: clamp(40px, 5vw, 72px) 0; }
.cozy-recently[hidden] { display: none; }
.cozy-recently__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.6rem;
  margin-top: 2.4rem;
}
.cozy-recently__card {
  text-decoration: none;
  color: var(--cozy-charcoal);
  display: block;
}
.cozy-recently__card-media {
  aspect-ratio: 1 / 1;
  border-radius: var(--cozy-radius-md);
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--cozy-cream);
}
.cozy-recently__card-media img { width: 100%; height: 100%; object-fit: cover; }
.cozy-recently__card-title { font-size: 1.4rem; font-weight: 500; margin: 0 0 0.4rem; line-height: 1.3; }
.cozy-recently__card-price { font-size: 1.3rem; color: var(--cozy-taupe); margin: 0; }

/* ---------- Reveal animation ---------- */
.cozy-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--cozy-ease), transform 0.7s var(--cozy-ease);
}
.cozy-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Page padding utility ---------- */
.cozy-pad-bottom { padding-bottom: 12rem; }
@media (min-width: 990px) {
  .cozy-pad-bottom { padding-bottom: 0; }
}

/* ---------- Product image carousel (thumbnail_slider) ---------- */

/* Fixed square image container — maintain consistent sizing across all images */
.product--thumbnail_slider .product-media-container {
  --aspect-ratio: 1;
  --ratio-percent: 100%;
  background: var(--cozy-cream);
  border-radius: var(--cozy-radius-md);
  overflow: hidden;
}
.product--thumbnail_slider .product-media-container .media {
  padding-top: 100%;
  position: relative;
}
.product--thumbnail_slider .product-media-container .media img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/*
 * Carousel navigation row (prev ← counter → next).
 *
 * The native component-slider.css hides .slider-buttons at ≥990px with a
 * 0-4-0-specificity rule.  We match that specificity here and win by loading
 * later in the cascade (cozy-theme.css loads after component-slider.css).
 */
.product.product--thumbnail_slider .product__media-wrapper .slider-mobile-gutter .slider-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

/* Slider buttons — cozy pill style */
.product--thumbnail_slider .slider-mobile-gutter .slider-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--cozy-charcoal);
  background: transparent;
  border: 1.5px solid rgba(58, 45, 34, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s var(--cozy-ease), border-color 0.25s var(--cozy-ease), color 0.25s var(--cozy-ease), opacity 0.25s var(--cozy-ease);
  flex-shrink: 0;
}
.product--thumbnail_slider .slider-mobile-gutter .slider-button:hover:not([disabled]) {
  background: var(--cozy-honey);
  border-color: var(--cozy-honey);
  color: #fff;
}
.product--thumbnail_slider .slider-mobile-gutter .slider-button[disabled] {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}
.product--thumbnail_slider .slider-mobile-gutter .slider-button .icon {
  width: 0.7rem;
  height: auto;
}

/* Counter text */
.product--thumbnail_slider .slider-counter {
  font-family: var(--font-body-family);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cozy-taupe);
  min-width: auto;
  white-space: nowrap;
}

/* Thumbnail row — cozy active state */
.product--thumbnail_slider .thumbnail[aria-current] {
  box-shadow: 0 0 0 0.2rem var(--cozy-honey);
  border-color: var(--cozy-honey);
}
.product--thumbnail_slider .thumbnail:hover {
  opacity: 0.75;
}

/* Desktop: hide thumbnail slider's own nav buttons */
@media screen and (min-width: 750px) {
  .product--thumbnail_slider .thumbnail-slider .slider-buttons {
    display: none;
  }
}

/* Mobile adjustments */
@media screen and (max-width: 749px) {
  .product.product--thumbnail_slider .product__media-wrapper .slider-mobile-gutter .slider-buttons {
    gap: 0.8rem;
    margin-top: 0.8rem;
  }
  .product--thumbnail_slider .slider-mobile-gutter .slider-button {
    width: 38px;
    height: 38px;
  }

  /* Mobile product title — reduce font size so it's not as large as desktop */
  .product__title h1 {
    font-size: calc(var(--font-heading-scale) * 1.8rem);
  }

  /* Mobile slideshow — reduce nested text sizes */
  .slideshow__text .banner__heading {
    font-size: calc(var(--font-heading-scale) * 2.4rem);
  }
  .slideshow__text .banner__text {
    font-size: 1.3rem;
  }
  .slideshow__text .banner__buttons .button {
    font-size: 1.3rem;
    padding: 0 2.2rem;
    min-height: calc(3.8rem + var(--buttons-border-width) * 2);
    min-width: calc(10rem + var(--buttons-border-width) * 2);
  }

  }
}
