/** Shopify CDN: Minification failed

Line 301:0 Unexpected "}"

**/
/* ==========================================================================
   Cuddle Valley Hero Stack (v2 tweaks)
   1) Sticker overlaps product slightly (closer + overlap)
   2) Smaller currency symbol (~65%) vertically centered
   ========================================================================== */

.cv-hero {
  position: relative;
  min-height: calc(var(--cv-hero-minh, 120vh) * 1vh);
  overflow: hidden;
}

/* Background */
.cv-hero__bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cv-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.cv-hero__bg-img--mobile { display: none; }

.cv-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(255,255,255,0.55), rgba(255,255,255,0) 48%),
    linear-gradient(to bottom, rgba(0,0,0,0.08), rgba(0,0,0,0.26));
}

/* Sticky logo banner */
.cv-hero__sticky {
  position: sticky;
  top: 0;
  z-index: 5;
  padding-top: clamp(14px, 2vw, 24px);
  padding-bottom: clamp(10px, 1.6vw, 18px);
}

.cv-hero__logo-wrap {
  width: min(980px, 94vw);
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.cv-hero__logo {
  width: 100%;
  max-width: 820px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.25));
}

/* Content/panel */
.cv-hero__content {
  position: relative;
  z-index: 2;
  padding-top: clamp(14px, 2vw, 20px);
  padding-bottom: clamp(40px, 5vw, 90px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.cv-hero__panel {
  width: min(var(--cv-panel-max, 620px), 92vw);
  background: var(--cv-panel-bg, #F2D34E);
  border-radius: 14px;
  box-shadow: 0 16px 44px rgba(0,0,0,0.26);
  border: 1px solid rgba(0,0,0,0.12);
}

.cv-hero__panel-inner {
  position: relative;
  padding: 22px 18px 26px;
}

/* Stack */
.cv-stack { display: flex; flex-direction: column; }

.cv-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  gap: clamp(8px, 1.3vw, 14px);

  margin-top: calc(var(--cv-overlap) * -1);
  padding-top: var(--cv-row-gap, 12px);

  z-index: var(--z, 1);
}

.cv-item:first-child { margin-top: 0; }

.cv-item--pic-price { flex-direction: row; }
.cv-item--price-pic { flex-direction: row-reverse; }

/* Product image */
.cv-item__product {
  display: block;
  width: min(520px, 72vw);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
}

.cv-item__product img {
  width: 100%;
  height: auto;
  display: block;
  transform: rotate(var(--tilt, -7deg));
  filter: drop-shadow(0 18px 34px rgba(0,0,0,0.30));
  transition: transform 160ms ease, filter 160ms ease;
}

.cv-item__product:hover img {
  transform: rotate(var(--tilt, -7deg)) translateY(-2px) scale(1.01);
  filter: drop-shadow(0 22px 42px rgba(0,0,0,0.34));
}

/* Sticker burst price (side) */
.cv-item__price {
  position: relative;
  z-index: 2;

  width: clamp(110px, 15vw, var(--cv-sticker-size, 150px));
  aspect-ratio: 1 / 1;

  background: #d8342a;
  border: 6px solid rgba(0,0,0,0.18);
  border-radius: 0;

  clip-path: polygon(
    50% 0%, 62% 8%, 75% 3%, 82% 16%, 97% 20%, 88% 33%, 100% 50%, 88% 66%, 97% 80%,
    82% 84%, 75% 97%, 62% 92%, 50% 100%, 38% 92%, 25% 97%, 18% 84%, 3% 80%,
    12% 66%, 0% 50%, 12% 33%, 3% 20%, 18% 16%, 25% 3%, 38% 8%
  );

  box-shadow: 0 16px 30px rgba(0,0,0,0.28), 0 2px 0 rgba(255,255,255,0.25) inset;
  display: grid;
  place-items: center;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;

  transform: rotate(-2deg);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

/* Make sticker overlap the product slightly */
.cv-item--pic-price .cv-item__price { margin-left: -18px; }
.cv-item--price-pic .cv-item__price { margin-right: -18px; }

.cv-item__price::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 2px dashed rgba(255,255,255,0.22);
  clip-path: inherit;
  pointer-events: none;
}

.cv-item__price::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
  clip-path: inherit;
  transform: translate(5px, 6px);
  z-index: -1;
  filter: blur(0.2px);
}

.cv-item__price:hover {
  transform: scale(1.05) rotate(-4deg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.32), 0 2px 0 rgba(255,255,255,0.28) inset;
}

/* Price typography */
.cv-item__price-text {
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #f6d74b;
  text-shadow: 0 3px 0 rgba(0,0,0,0.35), 0 10px 22px rgba(0,0,0,0.20);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.10em;
  transform: rotate(-6deg);
}

.cv-item__price-amount {
  font-size: clamp(26px, 4.2vw, 52px);
}

.cv-item__price-currency {
  font-size: calc(clamp(26px, 4.2vw, 52px) * 0.65);
  line-height: 1;
  position: relative;
  top: 0.02em;
}

/* layout */
.cv-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Slider-controlled sticker distance */
.cv-item--pic-price .cv-item__price {
  margin-left: var(--cv-sticker-offset, -18px);
}

.cv-item--price-pic .cv-item__price {
  margin-right: var(--cv-sticker-offset, -18px);
}

/* Ensure proper overlap layering */
.cv-item__product {
  position: relative;
  z-index: 3;
}

.cv-item__price {
  position: relative;
  z-index: 4;
}

/* Sleeve-height anchor: nudge sticker upward relative to the product */
.cv-item__price{
  align-self: flex-start;           /* stops vertical centering */
  margin-top: 100px;                /* sleeve-ish height on desktop */
}



/* CTA/Subtext (optional) */
.cv-hero__cta { margin-top: 22px; display: flex; justify-content: center; }
.cv-hero__subtext { width: min(760px, 92vw); color: rgba(255,255,255,0.92); text-shadow: 0 2px 10px rgba(0,0,0,0.35); }

/* Mobile */
@media (max-width: 749px) {
  .cv-hero__bg-img--desktop { display: none; }
  .cv-hero__bg-img--mobile { display: block; }

  .cv-hero__logo { max-width: 720px; }

  .cv-item { gap: 10px; }

  .cv-item__product { width: min(70vw, 420px); }
  .cv-item__price { width: clamp(105px, 22vw, 150px); }

  .cv-item--pic-price .cv-item__price { margin-left: -14px; }
  .cv-item--price-pic .cv-item__price { margin-right: -14px; }
}

@media (prefers-reduced-motion: reduce) {
  .cv-item__product img,
  .cv-item__price {
    transition: none;
  }
}
@media (max-width: 749px) {
  .cv-stack {
    --cv-overlap: 72px;   /* brings overlap back */
    --cv-row-gap: 6px;    /* removes the visible gap */
  }
    /* Sticker should touch/overlap on mobile */
  .cv-item--pic-price .cv-item__price { margin-left: -90px; }
  .cv-item--price-pic .cv-item__price { margin-right: -90px; }

}


  /* Make sticker anchor a bit less aggressive on mobile */
  .cv-item__price{
    margin-top: 28px;
  }

  /* (Optional) slightly smaller stickers on mobile if needed */
  /* .cv-hero { --cv-sticker-size: 130px; } */
}
