/* Coloriagesworld storefront.
   One authoritative stylesheet: base layout, light theme and storefront components. */

:root {
  --bg: #fff9ef;
  --ink: #21143c;
  --muted: #4d3d6d;
  --pink: #ff7bbd;
  --cyan: #8ed8ff;
  --lime: #82f3cc;
  --violet: #8b65ff;
  --panel: #ffffffcf;
  --cw-bg-x: 0px;
  --cw-bg-y: 0px;
  --cw-stars-x: 0px;
  --cw-stars-y: 0px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--cw-header-height, 76px) + 16px);
}

body {
  margin: 0;
  padding-top: var(--cw-header-height, 76px);
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 8% 10%, #ff7bbd3d, transparent 34%),
    radial-gradient(circle at 92% 6%, #8ed8ff52, transparent 32%),
    radial-gradient(circle at 70% 92%, #82f3cc38, transparent 34%),
    linear-gradient(180deg, #fff9ef 0%, #f8edff 45%, #fff9ef 100%);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(transparent 0 94%, #21143c08 95%);
  background-size: 100% 8px;
  mix-blend-mode: multiply;
  opacity: .34;
}

body::after {
  content: "";
  position: fixed;
  inset: -12vh -10vw;
  z-index: 0;
  pointer-events: none;
  opacity: .92;
  filter: saturate(1.05);
  background:
    radial-gradient(circle at 8% 20%, #ffffffd9 0 2px, transparent 3px),
    radial-gradient(circle at 15% 38%, #ffd36ad9 0 2px, transparent 3px),
    radial-gradient(circle at 29% 14%, #8ed8ffd4 0 2px, transparent 3px),
    radial-gradient(circle at 47% 30%, #ff7bbdc9 0 2px, transparent 3px),
    radial-gradient(circle at 67% 18%, #ffffffcf 0 2px, transparent 3px),
    radial-gradient(circle at 84% 34%, #82f3ccd1 0 2px, transparent 3px),
    radial-gradient(circle at 92% 12%, #ffd36ac4 0 2px, transparent 3px),
    radial-gradient(circle at 72% 72%, #ffffffc7 0 2px, transparent 3px),
    radial-gradient(circle at 22% 82%, #8b65ffc2 0 2px, transparent 3px),
    radial-gradient(32rem 24rem at 4% 18%, #ffffff8f 0%, transparent 67%),
    radial-gradient(30rem 24rem at 92% 16%, #8ed8ff61 0%, transparent 68%),
    radial-gradient(28rem 22rem at 12% 86%, #ff7bbd4d 0%, transparent 70%),
    radial-gradient(34rem 26rem at 82% 84%, #82f3cc45 0%, transparent 72%);
  animation: cwAmbientDrift 18s ease-in-out infinite alternate;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.wrap { width: min(1180px, calc(100% - 32px)); margin: auto; }

body > header,
body > main,
body > footer,
body > .cw-legal-footer {
  position: relative;
  z-index: 2;
}

/* Header */
body > header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 120;
  isolation: isolate;
  overflow: visible;
  color: #21143c;
  background: linear-gradient(135deg, #fff9eff8 0%, #f7effff3 48%, #edf9fff5 100%);
  backdrop-filter: blur(20px) saturate(1.15);
  -webkit-backdrop-filter: blur(20px) saturate(1.15);
  border-bottom: 1px solid #8b65ff2b;
  box-shadow: 0 1px 0 #ffffffdf, 0 10px 28px #50357a1c, 0 30px 78px #8b65ff26;
  filter:
    drop-shadow(0 6px 7px #21143c2b)
    drop-shadow(0 18px 24px #6849d724)
    drop-shadow(0 34px 46px #8ed8ff22);
}

body > header::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: -27px;
  height: 30px;
  z-index: 0;
  pointer-events: none;
  border-radius: 0 0 50% 50%;
  background: linear-gradient(90deg, transparent 0%, #ff7bbd2e 18%, #8b65ff38 50%, #82f3cc2b 82%, transparent 100%);
  filter: blur(13px);
  opacity: .95;
}

body > header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, #ff7bbd73 22%, #8ed8ff85 50%, #82f3cc73 78%, transparent);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  box-shadow: inset 0 1px 0 #ffffffd6, inset 0 -1px 0 #8b65ff18;
}

.logo {
  color: #6849d7;
  font-size: 25px;
  font-weight: 1000;
  letter-spacing: -.06em;
  text-shadow: none;
}

.logo small {
  display: block;
  color: #8b65ff;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-shadow: none;
}

nav {
  display: flex;
  gap: 18px;
  color: #4d3d6dcc;
  font-weight: 850;
}

body > header nav a {
  color: #5d4d75;
  text-shadow: none;
}

body > header nav a:hover {
  color: #6849d7;
  background: #ffffffa8;
}

.cart-pill {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 8px;
  line-height: 1;
  padding: 13px 16px;
  border: 1px solid #21143c1f;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #8b65ff, #ff7bbd 56%, #ffbd7b);
  box-shadow: 0 12px 30px #8b65ff42;
  font-weight: 1000;
}

.cart-icon { width: 23px; height: 23px; flex: none; }
.cart-total { font-size: 19px; font-weight: 800; letter-spacing: -.02em; white-space: nowrap; }
.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: #08061566;
  font-size: 12px;
  font-weight: 800;
}

/* Main atmosphere */
main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, #fff9ef00 0%, #f4e9ff45 48%, #fff9ef0d 100%);
}

main > * { position: relative; z-index: 2; }
main::before,
main::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

main::before {
  inset: -10vh -12vw;
  background:
    radial-gradient(46rem 32rem at 3% 8%, #ff7bbd7d 0%, #ff7bbd2d 42%, transparent 73%),
    radial-gradient(42rem 30rem at 97% 10%, #8ed8ff91 0%, #8ed8ff32 43%, transparent 74%),
    radial-gradient(36rem 28rem at 12% 48%, #ffd36a73 0%, #ffd36a25 42%, transparent 72%),
    radial-gradient(44rem 32rem at 91% 56%, #82f3cc78 0%, #82f3cc27 44%, transparent 75%),
    radial-gradient(42rem 30rem at 44% 90%, #8b65ff68 0%, #8b65ff22 44%, transparent 75%),
    linear-gradient(135deg, #fff9ef00, #f0e4ff66 50%, #e6f7ff5c);
  transform: translate3d(var(--cw-bg-x), var(--cw-bg-y), 0) scale(1.05);
  animation: cwPastelBreath 12s ease-in-out infinite alternate;
  will-change: transform, filter;
}

main::after {
  inset: 0;
  opacity: .82;
  background-image:
    radial-gradient(circle, #8b65ffef 0 2.4px, transparent 3.2px),
    radial-gradient(circle, #ff7bbde8 0 2.2px, transparent 3px),
    radial-gradient(circle, #ffd36aed 0 2px, transparent 2.8px),
    radial-gradient(circle, #fff 0 2.4px, transparent 3.3px),
    repeating-radial-gradient(ellipse at 50% 16%, transparent 0 92px, #ffffff73 94px 97px, transparent 100px 176px);
  background-size: 150px 150px, 220px 220px, 285px 285px, 350px 350px, 100% 580px;
  background-position: 20px 30px, 88px 112px, 152px 22px, 214px 176px, center top;
  transform: translate3d(var(--cw-stars-x), var(--cw-stars-y), 0);
  animation: cwSparkleDrift 24s linear infinite;
  will-change: transform, background-position;
}

main section[id] { scroll-margin-top: calc(var(--cw-header-height, 76px) + 16px); }
section { padding: 72px 0; }

/* Hero */
.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: .98fr 1.02fr;
  align-items: center;
  gap: 44px;
  padding: 54px 0;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.hero > * { position: relative; z-index: 1; }

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(14px);
}

.hero::before {
  width: 360px;
  height: 360px;
  right: -4%;
  top: 5%;
  background: radial-gradient(circle, #8ed8ff8a 0%, #8ed8ff38 38%, transparent 72%);
  animation: cwOrbFloat 9s ease-in-out infinite;
}

.hero::after {
  width: 300px;
  height: 300px;
  left: -8%;
  bottom: 4%;
  background: radial-gradient(circle, #ff7bbd73 0%, #ff7bbd2d 40%, transparent 74%);
  animation: cwOrbFloat 11s ease-in-out -4s infinite reverse;
}

.hero > div:first-child::before {
  content: "";
  position: absolute;
  left: -36px;
  top: -28px;
  width: 150px;
  height: 150px;
  pointer-events: none;
  opacity: .92;
  background:
    radial-gradient(circle at 18px 24px, #fff 0 2px, transparent 3px),
    radial-gradient(circle at 82px 18px, #ffd36a 0 2px, transparent 3px),
    radial-gradient(circle at 120px 58px, #8b65ff 0 2px, transparent 3px),
    radial-gradient(circle at 36px 96px, #8ed8ff 0 2px, transparent 3px),
    radial-gradient(circle at 98px 124px, #ff7bbd 0 2px, transparent 3px);
  filter: drop-shadow(0 0 9px #fff7c9);
  animation: cwSparkleFloat 8s ease-in-out infinite;
}

.kicker {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 10px;
  color: #21143c;
  background: #82f3cc;
  box-shadow: 0 10px 24px #82f3cc52;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .14em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

h1 {
  margin: 20px 0;
  color: #21143c;
  font-size: clamp(48px, 7vw, 96px);
  line-height: .86;
  letter-spacing: -.085em;
  text-transform: uppercase;
}

.neon {
  color: #7654e7;
  text-shadow: 0 10px 32px #8b65ff45;
}

.lead {
  max-width: 620px;
  color: #4d3d6dcc;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 600;
}

.actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  padding: 16px 20px;
  border: 1px solid #21143c1f;
  border-radius: 14px;
  color: #21143c;
  background: #ffffffb8;
  box-shadow: 0 12px 30px #2f19541f;
  font-weight: 1000;
}

.btn.main {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #8b65ff, #ff7bbd 56%, #ffbd7b);
}

.hero .btn.main.disabled {
  pointer-events: none;
  border: 1px solid #8b65ff3d;
  color: #6849d7;
  background: linear-gradient(135deg, #fff2dc, #f0e5ff);
  box-shadow: 0 10px 24px #38235a18;
  opacity: .94;
}

.hero-card {
  width: min(100%, 470px);
  min-height: 0;
  aspect-ratio: 5 / 7;
  justify-self: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #21143c24;
  border-radius: 34px;
  background:
    linear-gradient(135deg, #ffffffd9, #ffffff73),
    radial-gradient(circle at 68% 25%, #8ed8ff8f, transparent 21%),
    radial-gradient(circle at 25% 70%, #ff7bbd75, transparent 25%),
    #f5eaff;
  box-shadow: 0 30px 95px #8b65ff42, 0 0 90px #8ed8ff31;
  transform: perspective(1000px) rotateX(var(--rx, 0)) rotateY(var(--ry, 0));
  transition: .18s;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 42px;
  z-index: 1;
  border: 2px solid #8ed8ffcc;
  border-radius: 24px;
  background: repeating-linear-gradient(135deg, #21143c17 0 3px, transparent 3px 18px);
  box-shadow: 0 0 30px #8ed8ff61 inset;
  animation: cwLinesDrift 16s linear infinite;
}

.hero-card::after {
  content: attr(data-hero-label);
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 2;
  padding: 16px 18px;
  border-radius: 12px;
  color: var(--cw-hero-badge-fg, #21143c);
  background: var(--cw-hero-badge-bg, #ffd36a);
  box-shadow: 0 14px 36px #38235a32, 0 0 54px #ffffff38;
  font-size: 34px;
  font-weight: 1000;
  letter-spacing: -.06em;
  transform: rotate(-2deg);
}

.hero-card[data-hero-label=""]::after,
.hero-card.has-product-image::before { content: none; display: none; }

.hero-product-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Catalog */
.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

h2 {
  margin: 0;
  color: #21143c;
  font-size: clamp(36px, 5vw, 68px);
  line-height: .9;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.section-title p {
  max-width: 500px;
  color: #4d3d6dcc;
  line-height: 1.55;
  font-weight: 600;
}

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

.product {
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #21143c1c;
  border-radius: 24px;
  color: #21143c;
  background: #ffffffcf;
  backdrop-filter: blur(16px) saturate(1.08);
  box-shadow: 0 16px 42px #2f195421;
  transform: perspective(900px) rotateX(var(--rx, 0)) rotateY(var(--ry, 0));
  transition: .18s;
}

.product:hover {
  translate: 0 -8px;
  box-shadow: 0 24px 64px #8b65ff2e;
}

.product:focus-visible,
.hero-card[role="button"]:focus-visible {
  outline: 3px solid #8b65ff;
  outline-offset: 5px;
}

.hero-card[role="button"],
.product .buy-row button { cursor: pointer; }

.product-art {
  height: auto;
  aspect-ratio: 5 / 7;
  margin: 12px 12px 4px;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff7bbd, #8ed8ff);
}

.product-2 .product-art { background: linear-gradient(135deg, #8b65ff, #82f3cc); }
.product-3 .product-art { background: linear-gradient(135deg, #ffd36a, #ff7bbd); }

.product-art::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 2px solid #ffffffdb;
  border-radius: 16px;
  background: repeating-linear-gradient(90deg, #21143c20 0 4px, transparent 4px 18px);
}

.product-art:has(> img)::before { content: none; display: none; }

.product-art > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-art span {
  position: absolute;
  right: 16px;
  bottom: 8px;
  color: #21143c8f;
  font-size: 78px;
  font-weight: 1000;
}

.product-info { padding: 10px 20px 22px; }
.product-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; }

.tag {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid #21143c1c;
  border-radius: 999px;
  color: #6849d7;
  background: #ffffffa8;
  font-size: 12px;
  font-weight: 1000;
}

h3 {
  margin: 14px 0 8px;
  color: #21143c;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -.02em;
}

.product h3 { font-weight: 700; }
.meta { color: #367e65; font-weight: 900; font-size: 13px; }

.product p {
  color: #4d3d6dcc;
  line-height: 1.5;
  font-weight: 600;
}

.store-status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 5px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .01em;
}

.store-status-badge.new { color: #8d285e; background: #ff7bbd29; border-color: #ff7bbd66; }
.store-status-badge.soon { color: #8a571a; background: #ffd36a33; border-color: #ffbd7b80; }
.store-status-badge.out { color: #76415a; background: #ead9e47a; border-color: #8b657747; }
.store-status-badge.custom { box-shadow: inset 0 0 0 1px #ffffff4d, 0 5px 14px #38235a12; }

.buy-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.buy-row strong { color: #21143c; font-size: 27px; }
.buy-row button {
  padding: 12px 14px;
  border: 0;
  border-radius: 12px;
  color: #21143c;
  background: #8ed8ff;
  box-shadow: 0 10px 22px #8ed8ff5e;
  font-weight: 1000;
}
.buy-row button:disabled {
  cursor: not-allowed;
  color: #6849d7;
  background: #fff2dc;
  box-shadow: none;
  opacity: .88;
}

/* Managed information, cart and guest checkout */
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.info {
  padding: 22px;
  border: 1px solid #21143c1c;
  border-radius: 22px;
  color: #21143c;
  background: #ffffffcf;
  backdrop-filter: blur(16px) saturate(1.08);
  box-shadow: 0 12px 30px #2f195417;
}
.info b { display: block; margin-bottom: 8px; color: #6849d7; font-size: 18px; }
.info span { color: #4d3d6dcc; line-height: 1.5; font-weight: 650; }

#inside.home-content-ready .info-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  justify-content: center;
  align-items: stretch;
}
#inside .home-info { width: 100%; height: 100%; min-height: 100%; padding: 0; overflow: hidden; display: flex; flex-direction: column; }
#inside .home-info-copy { padding: 20px; display: grid; gap: 7px; flex: 1; align-content: start; }
#inside .home-info-copy b { margin: 0; font-weight: 700; }
#inside .home-info-copy span { font-weight: 600; }
#inside .home-info-image { position: relative; aspect-ratio: 5 / 7; overflow: hidden; border-bottom: 1px solid #ffffff14; background: #f2eaff; }
#inside .home-info-image img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; transition: transform .35s ease; }
#inside .home-info-image.is-placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 22%, #ff7bbd55 0 7px, transparent 8px),
    radial-gradient(circle at 76% 27%, #8ed8ff66 0 9px, transparent 10px),
    radial-gradient(circle at 68% 76%, #82f3cc66 0 8px, transparent 9px),
    radial-gradient(circle at 30% 72%, #ffd36a72 0 6px, transparent 7px),
    repeating-linear-gradient(135deg, #ffffff82 0 2px, transparent 2px 18px),
    linear-gradient(145deg, #fff2dc, #f0e7ff 48%, #e8f8ff);
}
#inside .home-info-image.is-placeholder::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid #ffffffc9;
  border-radius: 24px;
  box-shadow: 0 0 42px #ffffff8a inset;
}
#inside .home-info-pattern {
  position: relative;
  z-index: 1;
  color: #8b65ff2b;
  font-size: clamp(54px, 6vw, 82px);
  font-weight: 900;
  letter-spacing: -.08em;
  text-shadow: 0 1px #fff;
}
#inside .home-info:hover .home-info-image img { transform: scale(1.025); }

.order { display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; }
.cart,
.form {
  padding: 24px;
  border: 1px solid #21143c1f;
  border-radius: 28px;
  color: #21143c;
  background: #ffffffcf;
  backdrop-filter: blur(16px) saturate(1.08);
  box-shadow: 0 18px 48px #2f195424;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid #21143c17;
}
.cart-row b, .total { color: #21143c; }
.cart-row small { display: block; margin-top: 5px; color: #4d3d6dcc; }
.qty { display: flex; align-items: center; gap: 8px; }
.qty button {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 9px;
  color: #21143c;
  background: #fff2dc;
  box-shadow: 0 6px 14px #2f19541c;
  font-weight: 1000;
}

.empty {
  padding: 24px;
  border: 1px dashed #21143c2b;
  border-radius: 18px;
  color: #4d3d6dcc;
  background: #ffffff7d;
}
.total { margin-top: 18px; font-size: 30px; font-weight: 1000; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field.full { grid-column: 1 / -1; }
label {
  color: #6849d7;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
}
input,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 14px;
  outline: 0;
  border: 1px solid #21143c24;
  border-radius: 14px;
  color: #21143c;
  background: #ffffffd1;
  box-shadow: inset 0 1px 0 #ffffffeb;
}
input:focus,
textarea:focus {
  border-color: #8b65ff7a;
  box-shadow: 0 0 0 4px #8b65ff1f;
}
textarea { min-height: 94px; }
.submit {
  width: 100%;
  margin-top: 12px;
  padding: 16px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #8b65ff, #ff7bbd 56%, #ffbd7b);
  box-shadow: 0 14px 30px #8b65ff38;
  font-weight: 1000;
}
.guest-checkout-note { margin: 0 0 14px; color: #4d3d6d; font-size: 14px; line-height: 1.5; font-weight: 650; }

footer {
  padding: 42px 0;
  border-top: 1px solid #21143c1c;
  color: #4d3d6d;
  background: #fff2dc99;
}
footer .wrap { color: #4d3d6d; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 300;
  padding: 13px 18px;
  border-radius: 12px;
  color: #fff;
  background: #21143c;
  box-shadow: 0 16px 38px #2f19543d;
  font-weight: 1000;
  opacity: 0;
  translate: -50% 20px;
  transition: .2s;
}
.toast.show { opacity: 1; translate: -50% 0; }

.reveal { opacity: 0; translate: 0 26px; transition: .55s; }
.reveal.visible { opacity: 1; translate: 0 0; }

/* Shared legal footer when it is rendered on the storefront */
.cw-legal-footer {
  margin-top: 64px;
  padding: 34px 0;
  border-top: 1px solid #21143c1f;
  color: #4d3d6d;
  background: linear-gradient(135deg, #fff2dccf, #f4eaffd9);
}
.cw-legal-footer .cw-legal-inner {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(280px, 1.4fr);
  gap: 28px;
}
.cw-legal-footer .cw-legal-brand { color: #21143c; font-size: 20px; font-weight: 900; letter-spacing: -.03em; }
.cw-legal-footer .cw-legal-seller { margin: 10px 0 0; color: #4d3d6d; line-height: 1.65; }
.cw-legal-footer .cw-legal-links { display: flex; flex-wrap: wrap; gap: 10px 18px; align-content: flex-start; }
.cw-legal-footer a { color: #6849d7; text-decoration: none; font-weight: 800; }
.cw-legal-footer a:hover { text-decoration: underline; }
.cw-legal-footer .cw-legal-contact {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid #21143c1f;
  color: #4d3d6d;
  font-size: 14px;
  line-height: 1.6;
}

/* Account controls */
.nav-actions { display: flex; align-items: center; gap: 10px; }

.account-pill,
header .cw-service-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 15px;
  border: 1px solid #8b65ff66;
  border-radius: 14px;
  color: #6849d7;
  background: #fff9efd9;
  box-shadow: 0 9px 24px #8b65ff24;
  font-weight: 950;
  white-space: nowrap;
  text-shadow: none;
  transition: .15s;
}

.account-pill:hover,
header .cw-service-button:hover {
  color: #43259f;
  background: #fff;
  border-color: #ff7bbd99;
  transform: translateY(-1px);
}

.account-pill.loading { color: #4d3d6d; pointer-events: none; }
.admin-entry { border-color: #ff7bbd77; background: #fff2dcf2; color: #6849d7; }

.storefront-logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid #8b65ff42;
  border-radius: 11px;
  color: #5d4d75;
  background: #fff9ef9e;
  box-shadow: 0 7px 18px #38235a12;
  font: 850 12px/1 "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  cursor: pointer;
  transition: .15s;
}
.storefront-logout:hover { color: #43259f; background: #fff; border-color: #ff7bbd66; transform: translateY(-1px); }
.storefront-logout:disabled { opacity: .55; cursor: wait; transform: none; }

/* Cart interaction feedback */
.product .buy-row button,
.hero .actions .main,
.qty button {
  transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
}
.product .buy-row button:active,
.hero .actions .main:active,
.qty button:active { transform: translateY(1px) scale(.96); }
.product .buy-row button.cw-added {
  filter: brightness(1.08);
  box-shadow: 0 0 0 3px #ffffff85, 0 8px 24px #20e7ff52;
}

/* Mobile navigation */
.cw-mobile-nav { display: none; }

.cw-mobile-action {
  min-height: 38px;
  padding: 8px 9px;
  border: 1px solid #8b65ff3d;
  border-radius: 11px;
  color: #5d4d75;
  background: #ffffffb8;
  box-shadow: 0 5px 16px #50357a12;
  font: 850 12px/1 "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  text-shadow: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.cw-mobile-action:active { transform: scale(.96); }
.cw-mobile-action:hover { color: #43259f; background: #fff; border-color: #8b65ff70; }
.cw-mobile-action:disabled { opacity: .5; cursor: wait; transform: none; }
.cw-mobile-cart { display: inline-flex; align-items: center; gap: 5px; }
.cw-mobile-cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  color: #fff;
  background: #6849d7;
  font-size: 10px;
  line-height: 1;
}
.cw-mobile-more { position: relative; }
.cw-mobile-more-button { width: 38px; padding: 8px 6px; font-size: 16px; letter-spacing: 1px; }
.cw-mobile-popover {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  width: min(230px, calc(100vw - 24px));
  padding: 7px;
  border: 1px solid #8b65ff40;
  border-radius: 16px;
  color: #3f3157;
  background: #fffaf3f7;
  box-shadow: 0 18px 55px #3e275b35;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.cw-mobile-popover a,
.cw-mobile-popover button {
  display: flex;
  width: 100%;
  align-items: center;
  min-height: 42px;
  padding: 10px 11px;
  border: 0;
  border-radius: 11px;
  color: #4d3d6d;
  background: transparent;
  font: 800 14px/1.2 "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.cw-mobile-popover a:hover,
.cw-mobile-popover button:hover { color: #43259f; background: #8b65ff12; }

/* Package section */
.package-section { padding-top: 42px; padding-bottom: 70px; scroll-margin-top: 92px; }
.package-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid #8b65ff2e;
  border-radius: 36px;
  background: linear-gradient(145deg, #fffdf4e8, #f8edffe8 44%, #edfaffeb);
  box-shadow: 0 26px 80px #8b65ff1f;
}
.package-shell::before,
.package-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(2px);
}
.package-shell::before { width: 280px; height: 280px; right: -90px; top: -110px; background: radial-gradient(circle, #ff7bbd40, transparent 68%); }
.package-shell::after { width: 340px; height: 340px; left: -150px; bottom: -180px; background: radial-gradient(circle, #82f3cc3c, transparent 68%); }
.package-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .8fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}
.package-heading h2 { margin: 0; color: #21143c; text-shadow: none; }
.package-heading p { margin: 0; color: #5d4d75; font-size: 16px; line-height: 1.65; font-weight: 600; }
.package-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.package-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border: 1px solid #fff;
  border-radius: 26px;
  background: #fffaf3eb;
  box-shadow: 0 14px 38px #50357a17;
  transition: transform .2s ease, box-shadow .2s ease;
}
.package-card:hover { transform: translateY(-4px); box-shadow: 0 19px 48px #50357a24; }
.package-card-media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #ffedf7, #efe9ff 52%, #e5f8ff);
}
.package-card:nth-child(2n) .package-card-media { background: linear-gradient(135deg, #e8fff6, #edf5ff 54%, #fff0dc); }
.package-card:nth-child(3n) .package-card-media { background: linear-gradient(135deg, #fff4d8, #ffeaf5 54%, #eee9ff); }
.package-card-media img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.package-number { color: #8b65ff2e; font-size: clamp(58px, 7vw, 92px); font-weight: 900; line-height: 1; letter-spacing: -.08em; }
.package-card-copy { position: relative; display: flex; flex-direction: column; flex: 1; padding: 20px 20px 22px; }
.package-card-no { color: #ff7bbd; font-size: 11px; font-weight: 900; letter-spacing: .13em; }
.package-card h3 { margin: 8px 0; color: #6849d7; font-size: 23px; line-height: 1.05; letter-spacing: -.035em; }
.package-card p { margin: 0; color: #5d4d75; font-size: 14px; line-height: 1.55; font-weight: 600; }

/* Product details dialog */
.product-dialog {
  width: min(1080px, calc(100% - 28px));
  max-height: min(900px, calc(100vh - 28px));
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  color: #21143c;
  background: #fffaf2;
  box-shadow: 0 34px 110px #32184d55;
}
.product-dialog::backdrop { background: #20152e99; backdrop-filter: blur(9px); }
.product-dialog-shell { position: relative; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr); max-height: min(900px, calc(100vh - 28px)); overflow: auto; }
.product-dialog-close {
  position: absolute;
  z-index: 6;
  right: 14px;
  top: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid #6d568b35;
  border-radius: 50%;
  color: #432b68;
  background: #fffdf0e8;
  box-shadow: 0 8px 24px #38235a22;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}
.product-dialog-media { display: grid; grid-template-rows: minmax(360px, 1fr) auto; min-height: 600px; padding: 22px; background: linear-gradient(145deg, #f8efff, #eefaff 52%, #fff2dc); }
.product-dialog-main { position: relative; display: grid; place-items: center; min-height: 0; overflow: hidden; border: 1px solid #fff; border-radius: 22px; background: #ffffffa8; }
.product-dialog-main img { display: block; width: 100%; height: 100%; max-height: 650px; object-fit: contain; }
.product-dialog-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 360px;
  color: #8b65ff;
  background: radial-gradient(circle at 30% 25%, #ff7bbd55, transparent 35%), radial-gradient(circle at 70% 70%, #8ed8ff66, transparent 38%), #fff9ef;
  font-size: 74px;
  font-weight: 1000;
}
.product-dialog-arrow {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 54px;
  border: 1px solid #6d568b35;
  border-radius: 14px;
  color: #432b68;
  background: #fffdf0dd;
  box-shadow: 0 8px 22px #38235a20;
  font-size: 28px;
  cursor: pointer;
  translate: 0 -50%;
}
.product-dialog-arrow.prev { left: 12px; }
.product-dialog-arrow.next { right: 12px; }
.product-dialog-thumbs { display: flex; gap: 9px; overflow: auto; padding-top: 12px; scrollbar-width: thin; }
.product-dialog-thumb { flex: 0 0 74px; width: 74px; height: 74px; padding: 3px; overflow: hidden; border: 2px solid transparent; border-radius: 13px; background: #ffffffaa; cursor: pointer; }
.product-dialog-thumb.active { border-color: #8b65ff; box-shadow: 0 0 0 3px #8b65ff20; }
.product-dialog-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 9px; }
.product-dialog-copy { display: flex; flex-direction: column; min-width: 0; padding: 38px 34px 30px; }
.product-dialog-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.product-dialog-tag,
.product-dialog-status { display: inline-flex; padding: 7px 10px; border-radius: 999px; font-size: 12px; font-weight: 900; }
.product-dialog-tag { color: #6849d7; background: #efe7ff; }
.product-dialog-status { color: #28725b; background: #e9fff5; }
.product-dialog-status.soon { color: #9a6420; background: #fff0d8; }
.product-dialog-status.out { color: #a52f50; background: #fff0f4; }
.product-dialog-status.new { color: #a73870; background: #ffe8f4; }
.product-dialog-status.custom { box-shadow: inset 0 0 0 1px #ffffff38; }
.product-dialog h2 { margin: 0; font-size: clamp(34px, 4.4vw, 62px); line-height: .92; letter-spacing: -.06em; text-transform: none; }
.product-dialog-meta { margin: 15px 0 0; color: #6849d7; font-weight: 900; }
.product-dialog-description { margin: 20px 0 0; color: #4d3d6d; font-size: 16px; line-height: 1.65; white-space: pre-line; }
.product-dialog-footer { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: auto; padding-top: 28px; }
.product-dialog-price { color: #21143c; font-size: 32px; font-weight: 1000; white-space: nowrap; }
.product-dialog-buy {
  min-height: 50px;
  padding: 13px 19px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #8b65ff, #ff7bbd 58%, #ffbd7b);
  box-shadow: 0 12px 28px #8b65ff2b;
  font-weight: 1000;
  cursor: pointer;
}
.product-dialog-buy.waitlist { border: 1px solid #8b65ff80; color: #6849d7; background: #fff; box-shadow: 0 10px 24px #8b65ff1a; }

/* Availability dialog */
.availability-dialog {
  width: min(92vw, 500px);
  padding: 0;
  border: 0;
  border-radius: 24px;
  color: #2f2442;
  background: #fffaf2;
  box-shadow: 0 28px 80px #24183a4d;
}
.availability-dialog::backdrop { background: #22163380; backdrop-filter: blur(5px); }
.availability-dialog__body { padding: 26px; }
.availability-dialog__kicker { margin: 0 0 7px; color: #7656d8; font: 900 12px/1.2 "Trebuchet MS", "Segoe UI", Arial, sans-serif; letter-spacing: .09em; text-transform: uppercase; }
.availability-dialog h2 { margin: 0 0 12px; color: #2e2043; font-size: clamp(24px, 5vw, 31px); line-height: 1.08; }
.availability-dialog p { margin: 0 0 15px; color: #57476e; font-size: 15px; line-height: 1.55; }
.availability-dialog__product { color: #35234f; font-weight: 900; }
.availability-dialog__field { display: grid; gap: 7px; margin: 18px 0 8px; color: #49365f; font-weight: 850; }
.availability-dialog__field input { width: 100%; box-sizing: border-box; padding: 13px 14px; outline: none; border: 1px solid #8b65ff55; border-radius: 14px; color: #2f2442; background: #fff; box-shadow: 0 7px 18px #38235a0d; font: inherit; }
.availability-dialog__field input:focus { border-color: #8b65ffb3; box-shadow: 0 0 0 4px #8b65ff1a; }
.availability-dialog p.availability-dialog__note { color: #736482; font-size: 12px; }
.availability-dialog__note a { color: #6849d7; font-weight: 850; }
.availability-dialog p.availability-dialog__error { min-height: 20px; margin: 9px 0 0; color: #ad315d; font-size: 13px; font-weight: 800; }
.availability-dialog__actions { display: flex; justify-content: flex-end; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.availability-dialog__actions button { min-height: 44px; padding: 10px 16px; border-radius: 14px; font: 900 14px/1 "Trebuchet MS", "Segoe UI", Arial, sans-serif; cursor: pointer; transition: .15s; }
.availability-dialog__cancel { border: 1px solid #8b65ff45; color: #665475; background: #fff; }
.availability-dialog__confirm { border: 1px solid #7656d8; color: #fff; background: #7656d8; box-shadow: 0 9px 22px #7656d830; }
.availability-dialog__actions button:hover:not(:disabled) { transform: translateY(-1px); }
.availability-dialog__actions button:disabled { opacity: .55; cursor: wait; transform: none; }

/* Explicit visibility state is the only place where !important is intentional. */
[hidden],
.cart-pill[hidden],
#order[hidden],
[data-guest-cart-link][hidden],
.storefront-logout[hidden],
.cw-mobile-popover[hidden],
.cw-mobile-popover [hidden] {
  display: none !important;
}

/* Animations */
@keyframes cwPastelBreath {
  from { filter: saturate(1) brightness(1); opacity: .91; }
  to { filter: saturate(1.16) brightness(1.035); opacity: 1; }
}
@keyframes cwSparkleDrift {
  from { background-position: 20px 30px, 88px 112px, 152px 22px, 214px 176px, center top; }
  to { background-position: 170px 180px, -132px 332px, 437px 307px, -136px 526px, center 580px; }
}
@keyframes cwAmbientDrift {
  0% { transform: translate3d(-1.5%, 0, 0) scale(1); }
  100% { transform: translate3d(1.5%, -2%, 0) scale(1.035); }
}
@keyframes cwOrbFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(18px, -22px, 0) scale(1.06); }
}
@keyframes cwSparkleFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: .78; }
  50% { transform: translate3d(12px, -10px, 0) rotate(7deg); opacity: 1; }
}
@keyframes cwLinesDrift {
  from { background-position: 0 0; }
  to { background-position: 180px 0; }
}

/* Responsive */
@media (max-width: 960px) {
  .hero, .order { grid-template-columns: 1fr; }
  .products { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr 1fr; }

  body::after { opacity: .72; }
  .hero::before { width: 250px; height: 250px; right: -10%; }
  .hero::after { width: 210px; height: 210px; left: -12%; }

  body > header .nav {
    height: 68px;
    min-height: 68px;
    padding: 0;
    flex-wrap: nowrap;
    gap: 8px;
  }
  body > header .nav > nav,
  body > header .nav > .nav-actions { display: none; }
  body > header .logo {
    flex: 0 1 auto;
    min-width: 0;
    font-size: 18px;
    line-height: 1;
    white-space: nowrap;
  }
  body > header .logo small { display: none; }
  .cw-mobile-nav { display: flex; align-items: center; gap: 5px; margin-left: auto; min-width: 0; }
}

@media (max-width: 860px) {
  .package-heading { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .product-dialog { width: min(100% - 14px, 720px); max-height: calc(100vh - 14px); border-radius: 22px; }
  .product-dialog-shell { grid-template-columns: 1fr; max-height: calc(100vh - 14px); }
  .product-dialog-media { min-height: auto; grid-template-rows: minmax(300px, 52vh) auto; padding: 12px; }
  .product-dialog-copy { padding: 24px 20px 22px; }
  .product-dialog h2 { font-size: clamp(34px, 10vw, 54px); }
}

@media (max-width: 760px) {
  main::after { opacity: .58; }
  main::before { inset: -5vh -35vw; }
  .hero-card { width: min(100%, 430px); }
  .hero-card::after { left: 20px; right: 20px; bottom: 20px; font-size: 23px; }
}

@media (max-width: 720px) {
  .nav { gap: 10px; }
  .logo { font-size: 20px; }
  .nav-actions { gap: 7px; }
  .account-pill, .cart-pill { padding: 10px 11px; font-size: 12px; }
  .storefront-logout { padding: 8px 9px; }
  .cw-legal-footer .cw-legal-inner { grid-template-columns: 1fr; }
  .cw-legal-footer .cw-legal-contact { grid-column: auto; }
}

@media (max-width: 640px) {
  .products, .info-grid, .form-grid { grid-template-columns: 1fr; }
  .section-title { display: block; }
  .cart-pill { padding: 9px 10px; gap: 7px; }
  .cart-icon { width: 22px; height: 22px; }
  .cart-total { font-size: 16px; }
  .cart-count { min-width: 22px; height: 22px; padding: 0 6px; }
  #inside.home-content-ready .info-grid { grid-template-columns: minmax(0, 1fr); }
  #inside .home-info { max-width: min(100%, 360px); justify-self: center; }
}

@media (max-width: 600px) {
  .nav { height: auto; min-height: 76px; padding: 10px 0; flex-wrap: wrap; }
  .nav-actions { width: 100%; justify-content: flex-end; flex-wrap: nowrap; }
}

@media (max-width: 560px) {
  .package-section { padding-top: 28px; }
  .package-shell { padding: 20px; border-radius: 28px; }
  .package-grid { grid-template-columns: 1fr; }
  .package-card { max-width: 390px; width: 100%; justify-self: center; }
  .package-heading { gap: 14px; margin-bottom: 20px; }
}

@media (max-width: 520px) {
  .product-dialog-footer { align-items: stretch; flex-direction: column; }
  .product-dialog-buy { width: 100%; }
  .product-dialog-price { font-size: 28px; }
  .availability-dialog__body { padding: 22px 18px; }
  .availability-dialog__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .availability-dialog__actions button { width: 100%; }
}

@media (max-width: 470px) {
  .logo small { display: none; }
  .account-pill { max-width: 116px; overflow: hidden; text-overflow: ellipsis; }
  .admin-entry { max-width: none; padding: 10px 9px; }
  .cart-pill { padding: 9px 10px; }
  .storefront-logout { width: 38px; padding: 0; font-size: 0; }
  .storefront-logout::before { content: "↪"; font-size: 18px; }
}

@media (max-width: 430px) {
  body > header .wrap.nav { width: calc(100% - 16px); }
  body > header .logo { max-width: 112px; overflow: hidden; text-overflow: ellipsis; font-size: 16px; }
  .cw-mobile-nav { gap: 3px; }
  .cw-mobile-action { padding: 8px 7px; font-size: 11px; }
  .cw-mobile-more-button { width: 34px; padding: 8px 4px; }
}

@media (max-width: 350px) {
  body > header .logo { max-width: 82px; }
}

@media (prefers-reduced-motion: reduce) {
  body::after,
  main::before,
  main::after,
  .hero::before,
  .hero::after,
  .hero > div:first-child::before,
  .hero-card::before {
    animation: none;
  }
  .package-card { transition: none; }
  .package-card:hover { transform: none; }
  .product-dialog::backdrop { backdrop-filter: none; }
}
