:root {
  --pink-50: #f6f7f9;
  --pink-100: #e8edf3;
  --pink-200: #d5dde8;
  --pink-400: #22c55e;
  --pink-600: #0f766e;
  --rose-900: #111827;
  --ink: #1f2937;
  --mint: #d1fae5;
  --lemon: #fde68a;
  --lilac: #dbeafe;
  --peach: #fed7aa;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
  --ease-pop: cubic-bezier(0.2, 0.9, 0.25, 1.25);
}

* {
  box-sizing: border-box;
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0) rotate(var(--piece-rotate, 0deg));
  }

  50% {
    transform: translateY(-0.85rem) rotate(calc(var(--piece-rotate, 0deg) + 2deg));
  }
}

@keyframes cuteWiggle {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  30% {
    transform: rotate(-8deg) scale(1.08);
  }

  60% {
    transform: rotate(7deg) scale(1.05);
  }
}

@keyframes sparklePop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.8);
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(34, 197, 94, 0.16), transparent 26rem),
    radial-gradient(circle at 92% 6%, rgba(59, 130, 246, 0.14), transparent 30rem),
    linear-gradient(180deg, #f8fafc 0%, #fff 42%, #eef2f7 100%);
}

body.cart-open,
body.quick-open,
body.checkout-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 900;
  color: var(--rose-900);
  transition: color 220ms ease, transform 220ms var(--ease-pop);
}

.brand:hover {
  color: var(--pink-600);
  transform: translateY(-2px);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.8rem;
  color: var(--white);
  background: var(--pink-600);
  box-shadow: 0 10px 24px rgba(232, 79, 133, 0.32);
}

.brand:hover .brand-mark {
  animation: cuteWiggle 620ms ease;
}

.desktop-nav {
  display: flex;
  gap: 1.5rem;
  font-weight: 800;
  color: rgba(75, 24, 48, 0.72);
}

.desktop-nav a {
  position: relative;
  padding: 0.25rem 0;
  transition: color 200ms ease, transform 200ms var(--ease-pop);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 0.2rem;
  border-radius: 999px;
  background: var(--pink-600);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms var(--ease-pop);
}

.desktop-nav a:hover {
  color: var(--pink-600);
  transform: translateY(-2px);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.icon-button,
.cart-button {
  border: 0;
  color: var(--rose-900);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(167, 72, 105, 0.12);
  transition: transform 220ms var(--ease-pop), box-shadow 220ms ease, background 220ms ease;
}

.icon-button:hover,
.cart-button:hover {
  background: #fffafd;
  box-shadow: 0 16px 34px rgba(167, 72, 105, 0.18);
  transform: translateY(-3px) scale(1.04);
}

.icon-button {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  font-size: 1.4rem;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.7rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  font-weight: 900;
}

.cart-button strong {
  display: grid;
  place-items: center;
  min-width: 1.45rem;
  height: 1.45rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--pink-600);
  font-size: 0.8rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(24rem, 0.85fr) minmax(24rem, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  min-height: auto;
  padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 5vw, 5rem) clamp(2.5rem, 4vw, 4rem);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(15, 118, 110, 0.88)),
    #111827;
}

.hero::after {
  content: "";
  position: absolute;
  left: 8%;
  bottom: -2rem;
  width: min(32rem, 68vw);
  height: 8rem;
  background: repeating-linear-gradient(90deg, #22c55e 0 3rem, #38bdf8 3rem 6rem, #f59e0b 6rem 9rem, #ef4444 9rem 12rem);
  opacity: 0.22;
  transform: rotate(-4deg);
  border-radius: 999px;
  filter: blur(0.2px);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-top: clamp(0.35rem, 2vw, 2rem);
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--pink-400);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--rose-900);
  font-family: "Nunito", system-ui, sans-serif;
  line-height: 1;
}

h1 {
  max-width: 12ch;
  font-size: clamp(4rem, 10vw, 8.8rem);
}

.hero h1,
.hero .eyebrow {
  color: var(--white);
}

.hero .eyebrow {
  color: var(--pink-400);
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
}

.hero-text {
  max-width: 35rem;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions,
.trust-row,
.bundle-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.hero-actions {
  margin-top: 2rem;
}

.primary-link,
.secondary-link,
.custom-form button,
.newsletter-form button,
.checkout-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0 1.25rem;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  isolation: isolate;
  overflow: hidden;
  transition: transform 220ms var(--ease-pop), box-shadow 220ms ease, background 220ms ease;
}

.primary-link::after,
.secondary-link::after,
.custom-form button::after,
.newsletter-form button::after,
.checkout-button::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -30%;
  z-index: -1;
  width: 45%;
  height: 180%;
  background: rgba(255, 255, 255, 0.45);
  transform: rotate(22deg) translateX(-220%);
  transition: transform 520ms ease;
}

.primary-link:hover,
.secondary-link:hover,
.custom-form button:hover,
.newsletter-form button:hover,
.checkout-button:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 20px 42px rgba(15, 118, 110, 0.28);
}

.primary-link:hover::after,
.secondary-link:hover::after,
.custom-form button:hover::after,
.newsletter-form button:hover::after,
.checkout-button:hover::after {
  transform: rotate(22deg) translateX(380%);
}

.primary-link,
.custom-form button,
.newsletter-form button,
.checkout-button {
  color: var(--white);
  background: var(--pink-600);
  box-shadow: 0 16px 34px rgba(15, 118, 110, 0.24);
}

.secondary-link {
  color: var(--rose-900);
  background: var(--white);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
}

.trust-row {
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 900;
}

.trust-row span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  transition: transform 200ms var(--ease-pop), background 200ms ease, box-shadow 200ms ease;
}

.trust-row span:hover {
  background: var(--white);
  box-shadow: 0 12px 28px rgba(167, 72, 105, 0.14);
  transform: translateY(-4px) rotate(-1deg);
}

.hero-visual {
  position: relative;
  z-index: 1;
  height: clamp(30rem, 64vh, 42rem);
  min-height: 0;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 240ms ease, filter 240ms ease;
}

.hero-visual img,
.bundle-visual img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-visual img {
  height: 100%;
  object-position: center;
  transition: transform 460ms ease, filter 460ms ease;
}

.hero-visual:hover img {
  filter: saturate(1.06) brightness(1.02);
  transform: scale(1.025);
}

.bundle-visual img {
  aspect-ratio: 5 / 4;
  transition: transform 420ms ease, filter 420ms ease;
}

.bundle-visual:hover img {
  filter: saturate(1.05);
  transform: scale(1.025) rotate(-0.5deg);
}

.hero-card {
  position: absolute;
  right: clamp(0.8rem, 3vw, 2rem);
  bottom: clamp(0.8rem, 3vw, 2rem);
  width: min(17rem, calc(100% - 2rem));
  padding: 1rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(12px);
  transform: translateZ(2rem);
  transition: transform 240ms var(--ease-pop), box-shadow 240ms ease;
}

.hero-visual:hover .hero-card {
  box-shadow: 0 20px 48px rgba(91, 31, 57, 0.22);
  transform: translateZ(2rem) translateY(-4px) rotate(-1deg);
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  color: var(--pink-600);
}

.search-panel {
  display: none;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem clamp(1rem, 5vw, 5rem);
  background: var(--white);
  border-top: 1px solid var(--pink-100);
  border-bottom: 1px solid var(--pink-100);
}

.search-panel.open {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
}

.search-panel label,
.sort-wrap label {
  color: var(--rose-900);
  font-weight: 900;
}

.search-panel input,
.sort-wrap select,
.custom-form input,
.custom-form select,
.checkout-view input,
.checkout-view select,
.cart-summary input,
.cart-summary textarea,
.newsletter-form input {
  width: 100%;
  border: 1px solid rgba(232, 79, 133, 0.22);
  border-radius: 1rem;
  background: var(--white);
  color: var(--ink);
  outline: 0;
}

.search-panel input:focus,
.sort-wrap select:focus,
.custom-form input:focus,
.custom-form select:focus,
.checkout-view input:focus,
.checkout-view select:focus,
.cart-summary input:focus,
.cart-summary textarea:focus,
.newsletter-form input:focus {
  border-color: rgba(15, 118, 110, 0.54);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.search-panel input {
  min-height: 3rem;
  padding: 0 1rem;
}

.category-band,
.shop-section,
.custom-section,
.bundle-section,
.reviews-section,
.newsletter-section,
.faq-section {
  position: relative;
  scroll-margin-top: 5.5rem;
  padding: clamp(4rem, 7vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.category-band {
  background: linear-gradient(180deg, var(--white), var(--pink-50));
  overflow: visible;
}

.section-heading {
  max-width: 46rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 9.75rem), 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}

.category-card {
  position: relative;
  min-height: 8.25rem;
  padding: 1.1rem;
  text-align: left;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.85rem;
  color: var(--rose-900);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: transform 220ms var(--ease-pop), box-shadow 220ms ease, border-color 220ms ease;
}

.category-card::after {
  content: "";
  position: absolute;
  right: -1.8rem;
  top: -1.8rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transform: scale(0);
  transition: transform 240ms var(--ease-pop);
}

.category-card:hover {
  border-color: rgba(15, 118, 110, 0.24);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
  transform: translateY(-5px);
}

.category-card:hover::after {
  transform: scale(1);
}

.category-card:nth-child(2) {
  background: linear-gradient(135deg, #fff, #e5e7eb);
}

.category-card:nth-child(3) {
  background: linear-gradient(135deg, #fff, #dbeafe);
}

.category-card:nth-child(4) {
  background: linear-gradient(135deg, #fff, #dcfce7);
}

.category-card:nth-child(5) {
  background: linear-gradient(135deg, #fff, #fef3c7);
}

.category-card.active {
  outline: 3px solid rgba(15, 118, 110, 0.2);
}

.category-card span,
.category-card strong {
  display: block;
}

.category-card span {
  margin-bottom: 0.4rem;
  color: var(--pink-600);
  font-weight: 900;
}

.overflow-piece {
  position: absolute;
  z-index: 3;
  width: clamp(8rem, 18vw, 15rem);
  aspect-ratio: 1;
  border: 0.45rem solid var(--white);
  border-radius: 0.9rem;
  object-fit: cover;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.16);
  pointer-events: none;
  animation: floatSoft 5.5s ease-in-out infinite;
}

.tape-piece {
  right: 7%;
  top: -6rem;
  --piece-rotate: 8deg;
  transform: rotate(var(--piece-rotate));
}

.journal-piece {
  left: 4%;
  top: -5rem;
  --piece-rotate: -7deg;
  animation-delay: -2.4s;
  transform: rotate(var(--piece-rotate));
}

.shop-section {
  background: var(--pink-50);
}

.shop-top {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
}

.sort-wrap {
  display: grid;
  gap: 0.4rem;
  min-width: 13rem;
}

.sort-wrap select {
  min-height: 2.9rem;
  padding: 0 0.85rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.empty-products {
  grid-column: 1 / -1;
  padding: 2rem;
  border: 1px dashed rgba(232, 79, 133, 0.28);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(56, 36, 55, 0.68);
  font-weight: 900;
  text-align: center;
}

.product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.85rem;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: transform 240ms var(--ease-pop), box-shadow 240ms ease, border-color 240ms ease;
  content-visibility: auto;
  contain-intrinsic-size: 27rem;
}

.product-card:hover {
  border-color: rgba(15, 118, 110, 0.22);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.12);
  transform: translateY(-5px);
}

.product-media {
  position: relative;
  background: var(--pink-100);
  overflow: hidden;
}

.product-media a {
  display: block;
}

.product-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.product-card:hover .product-media img {
  filter: saturate(1.05) brightness(1.02);
  transform: scale(1.04);
}

.wish-button {
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  border-radius: 0.75rem;
  color: var(--pink-600);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  transition: transform 180ms var(--ease-pop), background 180ms ease, color 180ms ease;
}

.wish-button:hover {
  transform: translateY(-2px);
}

.wish-button.active {
  color: var(--white);
  background: var(--pink-600);
}

.product-body {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  color: rgba(56, 36, 55, 0.66);
  font-size: 0.86rem;
  font-weight: 900;
}

.stock-badge {
  position: absolute;
  left: 0.8rem;
  top: 0.8rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  max-width: calc(100% - 4.2rem);
  padding: 0 0.75rem;
  border-radius: 999px;
  color: var(--rose-900);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px rgba(111, 76, 156, 0.14);
  font-size: 0.78rem;
  font-weight: 900;
}

.stock-badge.low-stock,
.cart-stock.low-stock {
  color: #7a4b00;
  background: #fff3c6;
}

.stock-badge.out-stock,
.cart-stock.out-stock {
  color: #7f1d1d;
  background: #ffe1e1;
}

.stock-badge.made-order,
.cart-stock.made-order {
  color: #315e50;
  background: var(--mint);
}

.product-card h3 {
  margin: 0;
  color: var(--rose-900);
  font-size: 1.1rem;
  transition: color 180ms ease;
}

.product-card h3 a {
  color: inherit;
}

.product-card:hover h3 {
  color: var(--pink-600);
}

.product-card p {
  margin: 0;
  color: rgba(56, 36, 55, 0.68);
  line-height: 1.45;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
  align-items: center;
}

.product-actions button,
.details-btn {
  min-height: 2.65rem;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms var(--ease-pop), box-shadow 180ms ease;
}

.product-actions button:hover,
.details-btn:hover {
  box-shadow: 0 12px 26px rgba(15, 118, 110, 0.2);
  transform: translateY(-3px);
}

.add-cart {
  color: var(--white);
  background: var(--pink-600);
}

.add-cart:disabled,
.quick-card button:disabled {
  cursor: not-allowed;
  color: rgba(50, 32, 79, 0.54);
  background: var(--pink-100);
  box-shadow: none;
  transform: none;
}

.quick-btn {
  width: 2.65rem;
  color: var(--rose-900);
  background: var(--pink-100);
}

.details-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.4rem;
  padding: 0 0.95rem;
  color: var(--rose-900);
  background: var(--pink-100);
}

.product-page {
  padding: clamp(2rem, 5vw, 5rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 249, 0.94)),
    var(--pink-50);
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 1.4rem;
  color: rgba(56, 36, 55, 0.68);
  font-weight: 900;
}

.product-breadcrumb button {
  border: 0;
  padding: 0;
  color: var(--pink-600);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.product-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.74fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
}

.product-detail-media,
.product-detail-info,
.product-detail-panels details,
.product-reviews-block,
.related-products {
  border: 1px solid rgba(232, 79, 133, 0.14);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(167, 72, 105, 0.1);
}

.product-detail-media {
  padding: clamp(0.8rem, 2vw, 1.15rem);
}

.product-main-media {
  overflow: hidden;
  border-radius: 0.95rem;
  background: var(--pink-100);
}

.product-main-media img,
.product-main-media video {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-main-media video {
  background: #111;
}

.product-thumb-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(4.5rem, 1fr));
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.product-thumb {
  min-height: 4.7rem;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 0.85rem;
  background: var(--pink-100);
  color: var(--rose-900);
  font-weight: 900;
  cursor: pointer;
}

.product-thumb.active {
  border-color: var(--pink-600);
  box-shadow: 0 10px 22px rgba(15, 118, 110, 0.24);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2.5vw, 1.4rem);
}

.product-detail-kicker,
.product-rating-line,
.product-price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.product-detail-kicker {
  justify-content: space-between;
  color: rgba(56, 36, 55, 0.64);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail-info h1 {
  margin: 0;
  color: var(--rose-900);
  font-size: clamp(2.2rem, 5vw, 4.9rem);
  line-height: 0.95;
}

.product-rating-line strong,
.product-rating-line span,
.product-rating-line a {
  font-weight: 900;
}

.product-rating-line span {
  color: var(--pink-600);
}

.product-lede {
  margin: 0;
  color: rgba(56, 36, 55, 0.72);
  line-height: 1.7;
}

.product-price-row strong {
  color: var(--rose-900);
  font-size: 1.8rem;
}

.stock-badge.inline {
  position: static;
  max-width: none;
}

.product-option {
  display: grid;
  gap: 0.5rem;
  color: var(--rose-900);
  font-weight: 900;
}

.product-option input,
.product-option select {
  width: 100%;
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 0.75rem;
  padding: 0.85rem;
  background: white;
  font: inherit;
}

.product-option small {
  color: rgba(56, 36, 55, 0.62);
}

.product-variant-chips,
.product-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.product-variant-chips button,
.product-perks span {
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  color: var(--rose-900);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 900;
}

.product-variant-chips button {
  cursor: pointer;
}

.product-variant-chips button.active {
  color: white;
  background: var(--pink-600);
}

.product-buy-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: center;
}

.qty-stepper {
  display: grid;
  grid-template-columns: 2.6rem 3.2rem 2.6rem;
  overflow: hidden;
  min-height: 2.85rem;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 999px;
  background: white;
}

.qty-stepper button,
.qty-stepper input {
  border: 0;
  background: transparent;
  text-align: center;
  font: inherit;
  font-weight: 900;
}

.product-add-main,
.product-wish,
.sticky-product-bar button {
  min-height: 2.85rem;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.product-add-main:disabled,
.sticky-product-bar button:disabled {
  color: rgba(50, 32, 79, 0.54);
  background: var(--pink-100);
  cursor: not-allowed;
}

.product-wish {
  padding: 0 1rem;
  color: var(--pink-600);
  background: var(--pink-100);
}

.product-wish.active {
  color: white;
  background: var(--pink-600);
}

.product-detail-panels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.product-detail-panels details {
  padding: 1rem;
}

.product-detail-panels summary {
  color: var(--rose-900);
  font-weight: 900;
  cursor: pointer;
}

.product-detail-panels p,
.product-detail-panels li {
  color: rgba(56, 36, 55, 0.72);
  line-height: 1.6;
}

.product-reviews-block,
.related-products {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
  padding: clamp(1rem, 2.5vw, 1.4rem);
}

.rating-breakdown {
  display: grid;
  gap: 0.45rem;
}

.rating-breakdown div {
  display: grid;
  grid-template-columns: 4.5rem 1fr 2rem;
  gap: 0.7rem;
  align-items: center;
  font-weight: 900;
}

.rating-breakdown meter {
  width: 100%;
}

.product-review-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 0.8rem;
}

.product-review-list article {
  border: 1px solid rgba(139, 92, 246, 0.16);
  border-radius: 0.9rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.76);
}

.product-review-list strong {
  color: var(--pink-600);
}

.product-review-list p {
  color: rgba(56, 36, 55, 0.72);
  line-height: 1.6;
}

.product-review-list span {
  color: rgba(56, 36, 55, 0.62);
  font-weight: 900;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
  gap: 0.9rem;
}

.related-card {
  display: grid;
  gap: 0.55rem;
  overflow: hidden;
  border: 1px solid rgba(232, 79, 133, 0.12);
  border-radius: 1rem;
  padding-bottom: 0.85rem;
  background: white;
  color: var(--rose-900);
  font-weight: 900;
}

.related-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.related-card strong,
.related-card span {
  padding: 0 0.85rem;
}

.sticky-product-bar {
  position: sticky;
  bottom: 1rem;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.85rem;
  align-items: center;
  width: min(48rem, 100%);
  margin: 1.2rem auto 0;
  padding: 0.75rem;
  border: 1px solid rgba(232, 79, 133, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(75, 24, 48, 0.16);
  backdrop-filter: blur(14px);
}

.sticky-product-bar span,
.sticky-product-bar strong {
  color: var(--rose-900);
  font-weight: 900;
}

.sticky-product-bar button {
  padding: 0 1.1rem;
  color: white;
  background: var(--pink-600);
}

.custom-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.78fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background: linear-gradient(135deg, #fff, #fbf8ff 50%, #f3ecff);
}

.custom-copy p:not(.eyebrow),
.bundle-copy p,
.site-footer p {
  color: rgba(56, 36, 55, 0.72);
  line-height: 1.7;
}

.custom-copy ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  font-weight: 900;
}

.custom-copy li::before {
  content: "✿";
  margin-right: 0.5rem;
  color: var(--pink-600);
}

.custom-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(232, 79, 133, 0.18);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  transition: transform 240ms var(--ease-pop), box-shadow 240ms ease;
}

.custom-form:hover {
  box-shadow: 0 28px 72px rgba(167, 72, 105, 0.22);
  transform: translateY(-5px);
}

.custom-form label,
.cart-summary label {
  display: grid;
  gap: 0.45rem;
  color: var(--rose-900);
  font-weight: 900;
}

.custom-form input,
.custom-form select {
  min-height: 3rem;
  padding: 0 0.9rem;
}

.custom-form input[type="range"] {
  padding: 0;
  accent-color: var(--pink-600);
}

.bundle-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background: var(--white);
}

.editable-sections {
  background: var(--white);
}

.cms-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.78fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 7vw, 7rem) clamp(1rem, 5vw, 5rem);
  background: linear-gradient(135deg, #fff, var(--pink-50));
  overflow: hidden;
}

.cms-section:nth-child(even) {
  background: linear-gradient(135deg, var(--pink-50), #fff 58%, #f6efff);
}

.cms-section::after {
  content: "";
  position: absolute;
  right: clamp(-5rem, -7vw, -2rem);
  bottom: -2.4rem;
  width: min(18rem, 42vw);
  aspect-ratio: 1;
  border-radius: 38% 62% 45% 55%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0)),
    var(--pink-200);
  opacity: 0.28;
  transform: rotate(-10deg);
}

.cms-section.image-left {
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1fr);
}

.cms-section.image-left .cms-section-image {
  order: -1;
}

.cms-section-copy p:not(.eyebrow) {
  color: rgba(56, 36, 55, 0.72);
  line-height: 1.7;
}

.cms-section-copy .primary-link {
  margin-top: 0.8rem;
}

.cms-section-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: 2rem;
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform 360ms ease, filter 360ms ease;
}

.cms-section:hover .cms-section-image img {
  filter: saturate(1.04) brightness(1.02);
  transform: scale(1.025) rotate(0.5deg);
}

.bundle-stats {
  margin: 1.4rem 0 1.6rem;
}

.bundle-stats span {
  display: grid;
  min-width: 7rem;
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  background: var(--pink-50);
  color: rgba(56, 36, 55, 0.68);
  transition: transform 200ms var(--ease-pop), background 200ms ease;
}

.bundle-stats span:hover {
  background: var(--pink-100);
  transform: translateY(-5px);
}

.bundle-stats strong {
  color: var(--rose-900);
  font-size: 1.4rem;
}

.reviews-section {
  background: linear-gradient(180deg, var(--pink-50), var(--white));
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.review-grid article {
  padding: 1.25rem;
  border: 1px solid rgba(232, 79, 133, 0.16);
  border-radius: 1.2rem;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(167, 72, 105, 0.08);
  transition: transform 220ms var(--ease-pop), box-shadow 220ms ease;
}

.review-grid article:hover {
  box-shadow: 0 22px 44px rgba(167, 72, 105, 0.14);
  transform: translateY(-6px) rotate(0.5deg);
}

.review-grid span {
  color: #f4aa22;
}

.review-grid p {
  color: rgba(56, 36, 55, 0.72);
  line-height: 1.6;
}

.newsletter-section {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  background: var(--rose-900);
}

.newsletter-section h2 {
  color: var(--white);
}

.newsletter-form {
  display: flex;
  gap: 0.7rem;
  width: min(34rem, 100%);
}

.newsletter-form input {
  min-height: 3.2rem;
  padding: 0 1rem;
}

.faq-section {
  display: grid;
  gap: 1rem;
  background: var(--pink-50);
}

.faq-section details {
  padding: 1rem 1.2rem;
  border: 1px solid rgba(232, 79, 133, 0.16);
  border-radius: 1rem;
  background: var(--white);
  transition: transform 200ms var(--ease-pop), box-shadow 200ms ease;
}

.faq-section details:hover {
  box-shadow: 0 14px 30px rgba(167, 72, 105, 0.1);
  transform: translateY(-3px);
}

.faq-section summary {
  color: var(--rose-900);
  font-weight: 900;
  cursor: pointer;
}

.faq-section p {
  color: rgba(56, 36, 55, 0.72);
  line-height: 1.6;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  background: var(--white);
}

.site-footer div:last-child {
  display: flex;
  gap: 1rem;
  font-weight: 900;
}

.cart-drawer,
.quick-view,
.checkout-view {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  background: rgba(75, 24, 48, 0.34);
}

.cart-drawer.open,
.quick-view.open,
.checkout-view.open {
  display: block;
}

.cart-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(31rem, 100%);
  height: 100%;
  margin-left: auto;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 246, 249, 0.98), rgba(255, 255, 255, 0.98)),
    var(--pink-50);
  box-shadow: -24px 0 70px rgba(75, 24, 48, 0.22);
}

.cart-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  padding: 1.4rem;
  border-bottom: 1px solid var(--pink-100);
}

.cart-head h2 {
  font-size: 2.2rem;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  min-height: 0;
  overflow: auto;
  padding: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.7rem;
  border-radius: 1rem;
  background: var(--white);
  border: 1px solid rgba(232, 79, 133, 0.12);
  box-shadow: 0 12px 24px rgba(167, 72, 105, 0.08);
}

.cart-item img {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 0.8rem;
  object-fit: cover;
}

.cart-item h3 {
  margin: 0;
  font-size: 0.98rem;
}

.cart-item p {
  margin: 0.2rem 0 0;
  color: rgba(56, 36, 55, 0.66);
  font-weight: 900;
}

.cart-stock {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.35rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  color: #315e50;
  background: var(--mint);
  font-size: 0.75rem;
  font-weight: 900;
}

.cart-line-actions {
  display: grid;
  justify-items: end;
  gap: 0.45rem;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.qty-controls button {
  width: 1.8rem;
  height: 1.8rem;
  border: 0;
  border-radius: 50%;
  background: var(--pink-100);
  transition: transform 160ms var(--ease-pop), background 160ms ease;
}

.qty-controls button:hover {
  background: var(--pink-200);
  transform: scale(1.12);
}

.qty-controls button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.cart-remove,
.secondary-cart-action {
  border: 0;
  color: rgba(50, 32, 79, 0.74);
  background: transparent;
  font-weight: 900;
}

.cart-remove {
  min-height: auto;
  padding: 0;
  font-size: 0.78rem;
}

.cart-remove:hover,
.secondary-cart-action:hover {
  color: var(--pink-600);
}

.cart-empty {
  display: none;
  padding: 1rem;
  color: rgba(56, 36, 55, 0.68);
  font-weight: 900;
}

.cart-empty.show {
  display: block;
}

.cart-summary {
  position: sticky;
  bottom: 0;
  display: grid;
  gap: 0.8rem;
  max-height: 56vh;
  overflow: auto;
  padding: 1rem;
  border-top: 1px solid var(--pink-100);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 -18px 40px rgba(167, 72, 105, 0.12);
  backdrop-filter: blur(12px);
}

.cart-summary textarea {
  min-height: 4.5rem;
  padding: 0.75rem;
  resize: vertical;
}

.cart-summary input {
  min-height: 2.75rem;
  padding: 0 0.85rem;
}

.cart-tools {
  display: grid;
  gap: 0.75rem;
  padding: 0.85rem;
  border: 1px solid rgba(232, 79, 133, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.7);
}

.promo-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem;
  margin-top: 0.45rem;
}

.promo-row button {
  min-height: 2.75rem;
  border: 0;
  border-radius: 999px;
  padding: 0 0.9rem;
  color: var(--white);
  background: var(--pink-600);
  font-weight: 900;
}

.promo-status {
  margin: 0.4rem 0 0;
  color: rgba(56, 36, 55, 0.64);
  font-size: 0.82rem;
  font-weight: 900;
}

.promo-status.success {
  color: #315e50;
}

.gift-wrap-option {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0.65rem 0.75rem;
  border-radius: 0.9rem;
  background: var(--pink-50);
}

.gift-wrap-option input {
  width: auto;
  min-height: auto;
  accent-color: var(--pink-600);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
}

.summary-line.muted {
  color: rgba(56, 36, 55, 0.68);
  font-size: 0.94rem;
}

.cart-total-preview {
  color: var(--rose-900);
  font-size: 1.22rem;
}

.secondary-cart-action {
  justify-self: center;
  min-height: 2rem;
}

.cart-summary .checkout-button {
  position: sticky;
  bottom: 0;
  z-index: 2;
}

.quick-view.open {
  display: grid;
  place-items: center;
  padding: 1rem;
}

.quick-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(14rem, 0.8fr) minmax(0, 1fr);
  gap: 1.3rem;
  width: min(48rem, 100%);
  padding: 1rem;
  border-radius: 1.5rem;
  background: var(--white);
  box-shadow: var(--shadow);
  animation: sparklePop 260ms ease;
}

.checkout-view.open {
  display: grid;
  place-items: center;
  padding: 1rem;
  overflow: auto;
}

.checkout-shell {
  width: min(74rem, 100%);
  max-height: min(52rem, calc(100vh - 2rem));
  overflow: auto;
  border: 1px solid rgba(232, 79, 133, 0.18);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 208, 223, 0.65), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 249, 0.98));
  box-shadow: 0 34px 90px rgba(75, 24, 48, 0.24);
  animation: sparklePop 260ms ease;
}

.checkout-top {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem clamp(1rem, 3vw, 1.7rem);
  border-bottom: 1px solid rgba(232, 79, 133, 0.14);
  background: rgba(255, 250, 252, 0.9);
  backdrop-filter: blur(16px);
}

.checkout-top h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(19rem, 0.75fr);
  gap: clamp(1rem, 3vw, 1.6rem);
  padding: clamp(1rem, 3vw, 1.7rem);
}

.checkout-main {
  display: grid;
  gap: 1rem;
}

.checkout-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(232, 79, 133, 0.14);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 34px rgba(167, 72, 105, 0.08);
  transition: transform 220ms var(--ease-pop), box-shadow 220ms ease;
}

.checkout-block:hover {
  box-shadow: 0 22px 42px rgba(167, 72, 105, 0.13);
  transform: translateY(-3px);
}

.checkout-block h3,
.summary-card h3 {
  margin: 0 0 0.9rem;
  color: var(--rose-900);
  font-size: 1.2rem;
}

.checkout-step {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  color: var(--white);
  background: var(--pink-600);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(232, 79, 133, 0.26);
}

.checkout-block label {
  display: grid;
  gap: 0.45rem;
  color: var(--rose-900);
  font-weight: 900;
}

.checkout-block input {
  min-height: 3rem;
  padding: 0 0.9rem;
}

.field-grid {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.field-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-grid.three {
  grid-template-columns: 1fr 0.75fr 0.7fr;
}

.delivery-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.delivery-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.85rem;
  border: 1px solid rgba(232, 79, 133, 0.18);
  border-radius: 1rem;
  background: var(--white);
  cursor: pointer;
  transition: transform 180ms var(--ease-pop), border-color 180ms ease, box-shadow 180ms ease;
}

.delivery-card:hover,
.delivery-card:has(input:checked) {
  border-color: rgba(232, 79, 133, 0.46);
  box-shadow: 0 14px 30px rgba(167, 72, 105, 0.12);
  transform: translateY(-3px);
}

.delivery-card input {
  width: 1rem;
  min-height: auto;
  accent-color: var(--pink-600);
}

.delivery-card small {
  display: block;
  color: rgba(56, 36, 55, 0.62);
  font-weight: 800;
}

.delivery-card b {
  color: var(--pink-600);
}

.checkout-summary-panel {
  align-self: start;
  position: sticky;
  top: 6.5rem;
}

.summary-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(232, 79, 133, 0.18);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.checkout-items {
  display: grid;
  gap: 0.7rem;
  max-height: 17rem;
  overflow: auto;
  padding-right: 0.25rem;
}

.checkout-item {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.checkout-item img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.85rem;
  object-fit: cover;
}

.checkout-item h4 {
  margin: 0;
  color: var(--rose-900);
  font-size: 0.94rem;
}

.checkout-item span {
  color: rgba(56, 36, 55, 0.62);
  font-weight: 900;
}

.checkout-lines {
  display: grid;
  gap: 0.7rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(232, 79, 133, 0.14);
}

.checkout-lines div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(56, 36, 55, 0.72);
  font-weight: 900;
}

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

.checkout-lines .checkout-total {
  color: var(--rose-900);
  font-size: 1.25rem;
}

.order-success {
  display: grid;
  place-items: center;
  gap: 0.8rem;
  padding: clamp(2rem, 6vw, 5rem);
  text-align: center;
}

.order-success[hidden] {
  display: none;
}

.success-mark {
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  color: var(--white);
  background: var(--pink-600);
  font-size: 2.2rem;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(232, 79, 133, 0.28);
}

.success-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(56, 36, 55, 0.72);
  font-weight: 900;
}

.success-details span {
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  background: var(--pink-50);
}

.success-details strong {
  color: var(--pink-600);
}

.order-success p:not(.eyebrow) {
  max-width: 32rem;
  color: rgba(56, 36, 55, 0.72);
  line-height: 1.7;
}

.sparkle-burst {
  position: fixed;
  z-index: 80;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--pink-400);
  box-shadow:
    1rem -0.4rem 0 -0.15rem var(--lemon),
    -0.9rem -0.35rem 0 -0.12rem var(--mint),
    -0.3rem 0.9rem 0 -0.14rem var(--lilac),
    0.85rem 0.75rem 0 -0.16rem var(--peach);
  pointer-events: none;
  animation: sparklePop 620ms ease forwards;
}

.quick-card img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  border-radius: 1rem;
  object-fit: cover;
}

.quick-card h2 {
  font-size: 2.6rem;
}

.quick-card p {
  color: rgba(56, 36, 55, 0.72);
  line-height: 1.6;
}

.quick-card strong {
  display: block;
  margin-bottom: 1rem;
  color: var(--rose-900);
  font-size: 1.3rem;
}

.quick-close {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  z-index: 2;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero,
  .custom-section,
  .bundle-section,
  .cms-section,
  .cms-section.image-left {
    grid-template-columns: 1fr;
  }

  .cms-section.image-left .cms-section-image {
    order: 0;
  }

  .hero {
    gap: 2rem;
    padding-top: 2rem;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-visual {
    height: clamp(22rem, 50vh, 32rem);
  }

  .category-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-section {
    align-items: stretch;
    flex-direction: column;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary-panel {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 0.75rem 1rem;
  }

  .brand span:last-child {
    display: none;
  }

  .cart-button span:nth-child(2) {
    display: none;
  }

  .hero {
    min-height: auto;
    gap: 1.5rem;
    padding: 2rem 1.25rem 2.5rem;
  }

  .hero-visual {
    height: clamp(17rem, 40vh, 24rem);
  }

  h1 {
    font-size: 3.9rem;
  }

  .category-grid,
  .product-grid,
  .product-detail-shell,
  .product-detail-panels {
    grid-template-columns: 1fr;
  }

  .product-detail-info {
    position: static;
  }

  .product-buy-row,
  .sticky-product-bar {
    grid-template-columns: 1fr;
    border-radius: 1rem;
  }

  .product-meta {
    justify-content: flex-start;
  }

  .shop-top,
  .site-footer,
  .newsletter-form {
    align-items: stretch;
    flex-direction: column;
  }

  .search-panel.open,
  .quick-card {
    grid-template-columns: 1fr;
  }

  .checkout-view.open {
    padding: 0;
  }

  .checkout-shell {
    min-height: 100vh;
    max-height: none;
    border-radius: 0;
  }

  .checkout-block {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    width: 100%;
  }

  .cart-item {
    grid-template-columns: 4rem 1fr;
  }

  .cart-item img {
    width: 4rem;
    height: 4rem;
  }

  .cart-line-actions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto;
    justify-items: stretch;
    align-items: center;
  }

  .cart-summary {
    max-height: 62vh;
  }

  .promo-row,
  .gift-wrap-option {
    grid-template-columns: 1fr;
  }

  .field-grid.two,
  .field-grid.three,
  .delivery-options {
    grid-template-columns: 1fr;
  }

  .overflow-piece {
    opacity: 0.55;
  }
}

@media (max-width: 420px) {
  .site-header {
    gap: 0.55rem;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .icon-button,
  .cart-button {
    min-height: 2.65rem;
  }

  .hero-actions,
  .newsletter-form {
    width: 100%;
  }

  .hero-actions a,
  .newsletter-form button,
  .checkout-button {
    width: 100%;
  }

  .trust-row span,
  .bundle-stats span {
    width: 100%;
  }

  .checkout-top {
    align-items: center;
  }

  .checkout-layout,
  .checkout-block,
  .summary-card {
    padding: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .hero-visual,
  .hero-visual:hover img,
  .product-card:hover,
  .category-card:hover,
  .custom-form:hover,
  .bundle-visual:hover img {
    transform: none !important;
  }
}

.shop-filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 0 0 1.4rem;
}

.shop-filters label,
.pill-check,
.kit-builder-options,
.kit-preview,
.tracking-result,
.quick-details,
.quick-reviews article,
.quick-option {
  border: 1px solid rgba(139, 92, 246, 0.18);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 0.75rem;
  padding: 0.85rem;
}

.shop-filters label,
.quick-option {
  display: grid;
  gap: 0.45rem;
  font-weight: 800;
}

.pill-check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.kit-builder-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.kit-builder-options legend {
  font-weight: 900;
  color: var(--rose-900);
  padding: 0 0.35rem;
}

.kit-preview {
  display: grid;
  gap: 0.25rem;
}

.tracking-section {
  padding: 4rem clamp(1rem, 5vw, 5rem);
}

.tracking-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.9rem;
  align-items: end;
  margin-bottom: 1rem;
}

.tracking-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 800;
}

.tracking-form input,
.tracking-form button,
.shop-filters input,
.shop-filters select,
.quick-option input,
.quick-option select {
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 0.65rem;
  padding: 0.75rem;
  font: inherit;
}

.tracking-form button {
  background: var(--pink-600);
  color: white;
  font-weight: 900;
  cursor: pointer;
}

.tracking-card {
  display: grid;
  gap: 0.35rem;
}

.quick-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.quick-media-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0;
}

.quick-media-thumb {
  width: 4rem;
  aspect-ratio: 1;
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 0.7rem;
  overflow: hidden;
  background: var(--pink-100);
  color: var(--rose-900);
  font-weight: 900;
  cursor: pointer;
}

.quick-media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quick-card video#quickImage {
  width: 100%;
  max-height: 32rem;
  object-fit: cover;
  border-radius: 1rem;
  background: #111;
}

.quick-details span {
  background: var(--pink-100);
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  font-weight: 800;
}

.quick-reviews {
  display: grid;
  gap: 0.6rem;
  margin: 0.8rem 0;
}

.checkout-disclaimer {
  color: rgba(47, 41, 64, 0.68);
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  .shop-filters,
  .tracking-form {
    grid-template-columns: 1fr;
  }

  .kit-builder-options {
    grid-template-columns: 1fr;
  }
}
