/* =========================================================
   SugarBead Creations — Production Stylesheet
   Single source of truth for all site styling
   ========================================================= */

:root {
  --hot-pink: #FF5FA0;
  --pink: #FF8FBE;
  --soft-pink: #FFC9DE;
  --pale-pink: #FFE8F1;
  --cream-pink: #FFF4F8;
  --lavender: #C9B1FF;
  --soft-lavender: #E5D9FF;
  --mint: #A8E6D9;
  --butter: #FFF0A8;
  --sky: #BFE4F5;
  --plum: #3A1E47;
  --plum-soft: #6D4D7C;
  --gold: #E8B854;
  --sparkle: #FFD9EC;
  --shadow-pink: 0 8px 24px rgba(255, 95, 160, 0.18);
  --shadow-soft: 0 4px 16px rgba(58, 30, 71, 0.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Quicksand', sans-serif;
  background: var(--cream-pink);
  color: var(--plum);
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: var(--hot-pink); }
img { max-width: 100%; height: auto; display: block; }

/* === SPARKLE === */
.sparkle {
  position: absolute; pointer-events: none;
  width: 14px; height: 14px;
  background: radial-gradient(circle, white 0%, var(--soft-pink) 40%, transparent 70%);
  border-radius: 50%;
  animation: twinkle 3s infinite ease-in-out;
}
.sparkle::before, .sparkle::after {
  content: ''; position: absolute; background: white; border-radius: 2px;
}
.sparkle::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.sparkle::after { width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* === SITE HEADER === */
.site-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 2px dashed var(--soft-pink);
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 50;
}
.brand-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--plum);
}
.brand-mascots {
  display: flex; align-items: center; position: relative;
}
.mascot-bear, .mascot-bunny {
  width: 42px; height: 42px;
  border-radius: 50%;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.mascot-bear {
  background: radial-gradient(circle at 35% 35%, #FFA8D0, var(--pink) 60%, var(--hot-pink));
  margin-right: -8px; z-index: 2;
}
.mascot-bear::before, .mascot-bear::after {
  content: ''; position: absolute;
  width: 18px; height: 18px;
  background: inherit; border-radius: 50%; top: -6px;
}
.mascot-bear::before { left: 0; }
.mascot-bear::after { right: 0; }
.mascot-bunny {
  background: radial-gradient(circle at 35% 35%, #E0CFFF, var(--lavender) 60%, #A88FE8);
  z-index: 1;
}
.mascot-bunny::before, .mascot-bunny::after {
  content: ''; position: absolute;
  width: 8px; height: 22px;
  background: inherit; border-radius: 4px 4px 6px 6px; top: -16px;
}
.mascot-bunny::before { left: 8px; transform: rotate(-8deg); }
.mascot-bunny::after { right: 8px; transform: rotate(8deg); }
.mascot-face {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--plum); font-weight: bold; letter-spacing: 4px;
}
.brand-name {
  font-family: 'Pacifico', cursive;
  font-size: 26px;
  background: linear-gradient(135deg, var(--hot-pink), #D946A0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.5px;
  line-height: 1;
}
.brand-tag {
  font-family: 'Caveat', cursive;
  font-size: 13px;
  color: var(--plum-soft);
  margin-top: -2px;
}
.site-nav {
  display: flex; gap: 22px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 14px;
}
.site-nav a {
  color: var(--plum); text-decoration: none;
  position: relative; padding: 4px 2px;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--hot-pink); }
.site-nav a.active { color: var(--hot-pink); }
.site-nav a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--hot-pink); border-radius: 2px;
  transition: width 0.25s ease;
}
.site-nav a:hover::after, .site-nav a.active::after { width: 100%; }
.site-nav a.featured {
  background: linear-gradient(135deg, var(--hot-pink), var(--pink));
  color: white; padding: 6px 14px;
  border-radius: 999px; box-shadow: var(--shadow-pink);
}
.site-nav a.featured::after { display: none; }
.site-nav a.featured:hover { color: white; transform: translateY(-1px); }

button.cart-icon { font-family: inherit; padding: 0; }
.cart-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: white; border: 2px solid var(--soft-pink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; position: relative;
}
.cart-icon::before { content: '🛍️'; font-size: 16px; }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--hot-pink); color: white;
  border-radius: 50%;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
  font-family: 'Fredoka', sans-serif;
}
.cart-count.empty { display: none; }
.cart-icon.bounce { animation: cartbounce 0.55s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes cartbounce {
  0% { transform: scale(1); }
  30% { transform: scale(1.35) rotate(-12deg); }
  60% { transform: scale(0.92) rotate(6deg); }
  100% { transform: scale(1); }
}

/* Mobile nav hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; font-size: 22px; color: var(--plum); }

/* === BUTTONS === */
.btn {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600; font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  border: none; cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--hot-pink), #D946A0);
  color: white; box-shadow: var(--shadow-pink);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,95,160,0.3); }
.btn-secondary {
  background: white; color: var(--plum);
  border: 2px solid var(--soft-pink);
}
.btn-secondary:hover { background: var(--pale-pink); transform: translateY(-1px); }

/* === HERO === */
.hero {
  position: relative;
  padding: 60px 24px 80px;
  text-align: center;
  background:
    radial-gradient(ellipse at 20% 30%, var(--soft-lavender) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, var(--soft-pink) 0%, transparent 50%),
    linear-gradient(180deg, var(--cream-pink) 0%, var(--pale-pink) 100%);
  overflow: hidden;
}
.hero-eyebrow {
  display: inline-block;
  font-family: 'Caveat', cursive; font-size: 22px;
  color: var(--hot-pink); background: white;
  padding: 4px 18px; border-radius: 999px;
  border: 2px dashed var(--soft-pink);
  margin-bottom: 18px; transform: rotate(-2deg);
}
.hero-title {
  font-family: 'Pacifico', cursive;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.1;
  background: linear-gradient(135deg, var(--hot-pink) 0%, #D946A0 50%, var(--lavender) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 16px;
}
.hero-sub {
  font-family: 'Fredoka', sans-serif; font-weight: 400;
  font-size: 18px; color: var(--plum-soft);
  max-width: 540px; margin: 0 auto 32px;
  line-height: 1.5;
}
.hero-cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-mascots { position: relative; height: 140px; margin-bottom: 8px; }
.big-mascot {
  position: absolute; top: 0;
  width: 110px; height: 110px;
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(58,30,71,0.15);
  display: flex; align-items: center; justify-content: center;
}
.big-mascot.bear {
  left: calc(50% - 90px);
  background: radial-gradient(circle at 35% 30%, #FFB8D6, var(--pink) 50%, #E8589C);
  transform: rotate(-6deg);
  animation: bobL 3.5s infinite ease-in-out;
}
.big-mascot.bear::before, .big-mascot.bear::after {
  content: ''; position: absolute;
  width: 42px; height: 42px;
  background: inherit; border-radius: 50%; top: -14px;
}
.big-mascot.bear::before { left: 4px; }
.big-mascot.bear::after { right: 4px; }
.big-mascot.bunny {
  right: calc(50% - 90px);
  background: radial-gradient(circle at 35% 30%, #E8DAFF, var(--lavender) 50%, #9B7FE8);
  transform: rotate(6deg);
  animation: bobR 4s infinite ease-in-out 0.5s;
}
.big-mascot.bunny::before, .big-mascot.bunny::after {
  content: ''; position: absolute;
  width: 20px; height: 50px;
  background: inherit; border-radius: 10px 10px 14px 14px; top: -42px;
}
.big-mascot.bunny::before { left: 22px; transform: rotate(-10deg); }
.big-mascot.bunny::after { right: 22px; transform: rotate(10deg); }
@keyframes bobL {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-6px); }
}
@keyframes bobR {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-6px); }
}
.mascot-feature { font-size: 26px; z-index: 2; }

.hero-bead {
  position: absolute;
  width: 24px; height: 24px;
  border-radius: 50%;
  box-shadow: inset -3px -3px 8px rgba(0,0,0,0.1), 0 4px 8px rgba(58,30,71,0.1);
  animation: float 6s infinite ease-in-out;
}
.hero-bead.b1 { top: 18%; left: 8%; background: radial-gradient(circle at 30% 30%, white, var(--hot-pink)); }
.hero-bead.b2 { top: 40%; left: 14%; background: radial-gradient(circle at 30% 30%, white, var(--lavender)); animation-delay: 1s; width: 18px; height: 18px; }
.hero-bead.b3 { top: 70%; left: 6%; background: radial-gradient(circle at 30% 30%, white, var(--mint)); animation-delay: 2s; }
.hero-bead.b4 { top: 15%; right: 10%; background: radial-gradient(circle at 30% 30%, white, var(--butter)); animation-delay: 0.5s; }
.hero-bead.b5 { top: 45%; right: 8%; background: radial-gradient(circle at 30% 30%, white, var(--soft-pink)); animation-delay: 1.5s; width: 28px; height: 28px; }
.hero-bead.b6 { top: 75%; right: 14%; background: radial-gradient(circle at 30% 30%, white, var(--sky)); animation-delay: 2.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(15deg); }
}

/* === SECTIONS === */
.section { padding: 64px 24px; }
.section-head { text-align: center; margin-bottom: 40px; }
.section-eyebrow { font-family: 'Caveat', cursive; font-size: 22px; color: var(--hot-pink); }
.section-title {
  font-family: 'Pacifico', cursive;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--plum); margin: 4px 0;
}
.section-sub {
  font-family: 'Fredoka', sans-serif; font-size: 16px;
  color: var(--plum-soft); font-weight: 400;
}

.page-head {
  background: linear-gradient(135deg, var(--soft-lavender), var(--soft-pink));
  padding: 48px 24px 56px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-head h1 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(36px, 5vw, 52px);
  color: var(--plum); margin-bottom: 8px;
}
.page-head p {
  font-family: 'Fredoka', sans-serif;
  font-size: 17px; color: var(--plum-soft);
}

/* === CATEGORIES === */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.cat-card {
  background: white;
  border-radius: 28px;
  padding: 28px 24px;
  text-align: center;
  border: 3px solid var(--pale-pink);
  position: relative; overflow: hidden;
  cursor: pointer; text-decoration: none; color: inherit;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block;
}
.cat-card:hover {
  transform: translateY(-10px) rotate(-1.5deg);
  border-color: var(--soft-pink);
  box-shadow: 0 14px 32px rgba(255,143,190,0.2);
}
.cat-card:nth-child(2):hover { transform: translateY(-10px) rotate(1.5deg); }
.cat-card::before {
  content: ''; position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, var(--sparkle), transparent 70%);
  opacity: 0.6;
}
.cat-icon { width: 100px; height: 100px; margin: 0 auto 18px; position: relative; }
.cat-card:hover .cat-icon > * { animation: wiggle 0.6s ease-in-out; }
@keyframes wiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}
.cat-card h3 {
  font-family: 'Fredoka', sans-serif; font-weight: 600;
  font-size: 22px; color: var(--plum); margin-bottom: 6px;
}
.cat-card p { font-size: 14px; color: var(--plum-soft); margin-bottom: 16px; }
.cat-card .arrow { font-family: 'Fredoka', sans-serif; font-weight: 600; color: var(--hot-pink); font-size: 14px; }

/* Category illustrations */
.illust-pen { position: relative; width: 60px; height: 100px; margin: 0 auto; }
.illust-pen .pen-body { position: absolute; bottom: 0; left: 20px; width: 20px; height: 60px; background: linear-gradient(180deg, var(--hot-pink), #D946A0); border-radius: 4px 4px 2px 2px; }
.illust-pen .pen-tip { position: absolute; bottom: -8px; left: 24px; width: 0; height: 0; border-left: 6px solid transparent; border-right: 6px solid transparent; border-top: 10px solid var(--plum); }
.illust-pen .pen-bead { position: absolute; width: 22px; height: 22px; border-radius: 50%; left: 19px; }
.illust-pen .b-a { bottom: 56px; background: radial-gradient(circle at 30% 30%, white, var(--pink)); }
.illust-pen .b-b { bottom: 72px; background: radial-gradient(circle at 30% 30%, white, var(--lavender)); }
.illust-pen .pen-topper { position: absolute; top: 0; left: 14px; width: 32px; height: 28px; background: radial-gradient(circle at 40% 35%, #FFB8D6, var(--hot-pink)); border-radius: 50% 50% 40% 40%; }
.illust-pen .pen-topper::before, .illust-pen .pen-topper::after { content: ''; position: absolute; width: 12px; height: 12px; background: inherit; border-radius: 50%; top: -4px; }
.illust-pen .pen-topper::before { left: -2px; }
.illust-pen .pen-topper::after { right: -2px; }

.illust-keychain { position: relative; width: 90px; height: 100px; margin: 0 auto; }
.illust-keychain .key-ring { position: absolute; top: 0; left: 35px; width: 20px; height: 20px; border: 3px solid #B8B8C8; border-radius: 50%; }
.illust-keychain .key-chain { position: absolute; top: 18px; left: 43px; width: 4px; height: 12px; background: #B8B8C8; }
.illust-keychain .pompom { position: absolute; top: 30px; left: 10px; width: 70px; height: 70px; background: radial-gradient(circle, #FFD9EC 20%, var(--soft-pink) 60%, var(--pink)); border-radius: 50%; filter: blur(0.3px); }
.illust-keychain .char { position: absolute; top: 36px; left: 28px; width: 36px; height: 36px; background: radial-gradient(circle at 35% 30%, #E8DAFF, var(--lavender)); border-radius: 50%; z-index: 2; }

.illust-charm { position: relative; width: 90px; height: 100px; margin: 0 auto; }
.illust-charm .clip { position: absolute; top: 0; left: 38px; width: 14px; height: 22px; border: 3px solid #D8B850; border-radius: 8px 8px 4px 4px; }
.illust-charm .bag { position: absolute; top: 22px; left: 18px; width: 54px; height: 50px; background: linear-gradient(135deg, #F2C566, #E8A040); border-radius: 8px; box-shadow: var(--shadow-soft); }
.illust-charm .bag::before { content: ''; position: absolute; top: -8px; left: 12px; right: 12px; height: 16px; border: 3px solid #D8B850; border-bottom: none; border-radius: 16px 16px 0 0; }
.illust-charm .bag::after { content: ''; position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 12px; height: 8px; background: #B8902F; border-radius: 2px; }
.illust-charm .tassel { position: absolute; bottom: 0; left: 35px; width: 20px; height: 22px; background: linear-gradient(180deg, var(--soft-pink), var(--hot-pink)); border-radius: 4px 4px 8px 8px; }

/* === BYO CALLOUT === */
.byo-section {
  margin: 40px 24px;
  background: linear-gradient(135deg, var(--soft-lavender) 0%, var(--soft-pink) 100%);
  border-radius: 36px;
  padding: 56px 32px;
  position: relative; overflow: hidden;
  text-align: center;
}
.byo-section::before { content: ''; position: absolute; top: -60px; left: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(255,255,255,0.6), transparent 70%); }
.byo-section::after { content: ''; position: absolute; bottom: -60px; right: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(255,255,255,0.5), transparent 70%); }
.byo-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.byo-eyebrow { display: inline-block; font-family: 'Caveat', cursive; font-size: 24px; color: var(--plum); background: white; padding: 4px 20px; border-radius: 999px; margin-bottom: 14px; transform: rotate(-2deg); }
.byo-title { font-family: 'Pacifico', cursive; font-size: clamp(32px, 5vw, 48px); color: var(--plum); margin-bottom: 14px; }
.byo-desc { font-family: 'Fredoka', sans-serif; font-size: 17px; color: var(--plum-soft); margin-bottom: 28px; line-height: 1.5; }
.byo-steps { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 28px; }
.byo-step { background: rgba(255,255,255,0.7); border-radius: 999px; padding: 8px 18px; display: inline-flex; align-items: center; gap: 8px; font-family: 'Fredoka', sans-serif; font-weight: 500; font-size: 14px; color: var(--plum); }
.byo-step-num { background: var(--hot-pink); color: white; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }

/* === PRODUCT GRID === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.product-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer; position: relative;
  text-decoration: none; color: inherit;
  display: block;
}
.product-card:hover {
  border-color: var(--soft-pink);
  transform: translateY(-4px);
  box-shadow: var(--shadow-pink);
}
.product-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative; overflow: hidden;
}
.product-img.grass {
  background:
    radial-gradient(ellipse at 30% 40%, #6FB35E 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, #5FA34E 0%, transparent 50%),
    linear-gradient(135deg, #7FC56E, #5BA04A);
}
.product-img.grass::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 4%),
    radial-gradient(circle at 60% 70%, rgba(0,0,0,0.06) 0%, transparent 5%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 3%);
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-tag {
  position: absolute; top: 12px; left: 12px;
  background: white; color: var(--hot-pink);
  font-family: 'Fredoka', sans-serif;
  font-weight: 600; font-size: 11px;
  padding: 4px 10px; border-radius: 999px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.product-tag.new { background: var(--hot-pink); color: white; }
.product-tag.soldout { background: var(--plum-soft); color: white; }
.product-info { padding: 16px 18px 20px; }
.product-fandom { font-family: 'Caveat', cursive; font-size: 16px; color: var(--lavender); font-weight: 700; }
.product-name { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 17px; color: var(--plum); margin: 2px 0 8px; }
.product-price { font-family: 'Fredoka', sans-serif; font-weight: 700; color: var(--hot-pink); font-size: 18px; }
.product-price .old { text-decoration: line-through; color: var(--plum-soft); font-weight: 400; font-size: 14px; margin-left: 6px; }

/* Sparkles on hover */
.product-card .spark { position: absolute; color: var(--hot-pink); opacity: 0; pointer-events: none; transition: all 0.55s cubic-bezier(0.34, 1.56, 0.64, 1); z-index: 5; text-shadow: 0 1px 4px rgba(255,255,255,0.8); }
.product-card .spark.s1 { top: 12px; right: 14px; font-size: 16px; }
.product-card .spark.s2 { top: 36px; left: 14px; font-size: 11px; }
.product-card .spark.s3 { bottom: 110px; right: 18px; font-size: 13px; }
.product-card:hover .spark.s1 { opacity: 1; transform: scale(1.4) rotate(20deg); }
.product-card:hover .spark.s2 { opacity: 1; transform: scale(1.3) rotate(-18deg); transition-delay: 0.08s; }
.product-card:hover .spark.s3 { opacity: 1; transform: scale(1.25) rotate(45deg); transition-delay: 0.16s; }

/* Stylized stack inside product cards */
.illust-product { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.stack { position: relative; display: flex; flex-direction: column; align-items: center; filter: drop-shadow(0 6px 12px rgba(0,0,0,0.15)); }
.stack .char-circle {
  width: 56px; height: 56px; border-radius: 50%;
  position: relative;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15), inset 0 -6px 10px rgba(0,0,0,0.08), inset 0 4px 6px rgba(255,255,255,0.4);
  animation: gentlebob 3.2s infinite ease-in-out;
}
.stack .char-circle::before, .stack .char-circle::after {
  content: ''; position: absolute;
  width: 5px; height: 6.5px; background: #2D1B3D;
  border-radius: 50%; top: 42%;
  box-shadow: 0 1px 0 rgba(255,255,255,0.5);
}
.stack .char-circle::before { left: 30%; }
.stack .char-circle::after { right: 30%; }
@keyframes gentlebob {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-3px) rotate(1.5deg); }
}
.stack .b {
  width: 30px; height: 30px; border-radius: 50%;
  margin-top: -2px;
  box-shadow: inset -4px -4px 8px rgba(0,0,0,0.12);
  position: relative; overflow: hidden;
}
.stack .b::before { content: ''; position: absolute; top: 14%; left: 20%; width: 38%; height: 26%; background: rgba(255,255,255,0.75); border-radius: 50%; filter: blur(1px); }
.stack .pen-body { width: 18px; height: 50px; border-radius: 4px 4px 2px 2px; margin-top: -2px; box-shadow: inset 4px 0 6px rgba(255,255,255,0.4), inset -4px 0 8px rgba(0,0,0,0.15), 0 3px 6px rgba(0,0,0,0.12); }
.product-card .stack { transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.product-card:hover .stack { transform: scale(1.1); }

/* === SHOP FILTERS === */
.filter-bar {
  background: white;
  border-radius: 18px;
  padding: 16px;
  margin: 0 auto 24px;
  max-width: 1100px;
  border: 2px solid var(--pale-pink);
}
.filter-row {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap; margin-bottom: 8px;
}
.filter-row:last-child { margin-bottom: 0; }
.filter-label {
  font-family: 'Fredoka', sans-serif; font-weight: 600;
  font-size: 13px; color: var(--plum-soft);
  letter-spacing: 0.5px; text-transform: uppercase;
  margin-right: 4px;
}
.chip {
  font-family: 'Fredoka', sans-serif; font-weight: 500;
  font-size: 13px;
  padding: 6px 14px; border-radius: 999px;
  background: white; border: 2px solid var(--pale-pink);
  color: var(--plum); cursor: pointer; white-space: nowrap;
  transition: all 0.2s;
}
.chip:hover { background: var(--pale-pink); }
.chip.active {
  background: linear-gradient(135deg, var(--hot-pink), var(--pink));
  color: white; border-color: var(--hot-pink);
}
.shop-meta {
  max-width: 1100px; margin: 0 auto 16px;
  font-family: 'Quicksand', sans-serif;
  color: var(--plum-soft); font-size: 14px;
}

/* === PRODUCT DETAIL === */
.product-detail {
  max-width: 1100px; margin: 0 auto; padding: 48px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
@media (max-width: 760px) { .product-detail { grid-template-columns: 1fr; gap: 28px; } }
.detail-img {
  background: linear-gradient(135deg, #7FC56E, #5BA04A);
  border-radius: 28px; height: 460px;
  position: relative; overflow: hidden;
}
.detail-img.grass::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 4%),
    radial-gradient(circle at 60% 70%, rgba(0,0,0,0.06) 0%, transparent 5%);
}
.detail-img .illust-product .stack { transform: scale(1.5); }
.detail-img img { width: 100%; height: 100%; object-fit: cover; }
.detail-info .fandom {
  font-family: 'Caveat', cursive; font-size: 22px; color: var(--lavender);
  font-weight: 700; margin-bottom: 4px;
}
.detail-info h1 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(32px, 4vw, 44px);
  color: var(--plum); margin-bottom: 14px;
}
.detail-price {
  font-family: 'Fredoka', sans-serif; font-weight: 700;
  color: var(--hot-pink); font-size: 32px; margin-bottom: 20px;
}
.detail-desc {
  font-family: 'Quicksand', sans-serif;
  color: var(--plum); font-size: 16px;
  line-height: 1.6; margin-bottom: 24px;
}
.detail-features {
  background: var(--cream-pink);
  border-radius: 16px;
  padding: 18px 22px;
  margin-bottom: 24px;
}
.detail-features h4 {
  font-family: 'Fredoka', sans-serif; font-size: 14px;
  font-weight: 700; color: var(--plum);
  margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.detail-features ul { list-style: none; padding: 0; }
.detail-features li { padding: 4px 0; padding-left: 22px; position: relative; font-size: 14px; color: var(--plum); }
.detail-features li::before { content: '✦'; position: absolute; left: 0; color: var(--hot-pink); }
.detail-cta { display: flex; gap: 12px; align-items: center; }
.detail-cta .btn-primary { flex: 1; justify-content: center; }
.detail-lead { font-family: 'Caveat', cursive; color: var(--plum-soft); font-size: 16px; margin-top: 12px; text-align: center; }

/* === ABOUT === */
.about-strip {
  background: white; margin: 40px 24px;
  border-radius: 32px; padding: 48px 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  align-items: center;
  border: 3px dashed var(--soft-pink);
  max-width: 1100px; margin-left: auto; margin-right: auto;
}
@media (max-width: 720px) { .about-strip { grid-template-columns: 1fr; text-align: center; } }
.about-art {
  position: relative; height: 240px;
  background: linear-gradient(135deg, var(--soft-lavender), var(--soft-pink));
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.about-art .big-mascot { position: relative; left: auto; right: auto; }
.about-art .big-mascot.bunny { margin-left: 12px; }
.about-art::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, white 0%, transparent 12%),
    radial-gradient(circle at 80% 70%, white 0%, transparent 10%),
    radial-gradient(circle at 70% 20%, white 0%, transparent 8%);
  opacity: 0.7;
}
.about-text h3 { font-family: 'Pacifico', cursive; font-size: 32px; color: var(--plum); margin-bottom: 12px; }
.about-text p { font-size: 15px; line-height: 1.6; color: var(--plum-soft); margin-bottom: 16px; }

/* About page long form */
.about-page {
  max-width: 760px; margin: 0 auto; padding: 48px 24px;
}
.about-page h2 {
  font-family: 'Pacifico', cursive; color: var(--plum);
  font-size: 32px; margin: 28px 0 12px;
}
.about-page p {
  font-family: 'Quicksand', sans-serif; color: var(--plum);
  font-size: 16px; line-height: 1.7; margin-bottom: 14px;
}

/* === FAQ === */
.faq-list {
  max-width: 760px; margin: 0 auto; padding: 32px 24px 80px;
}
.faq-item {
  background: white;
  border-radius: 18px;
  margin-bottom: 12px;
  border: 2px solid var(--pale-pink);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: none; border: none;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600; font-size: 16px;
  color: var(--plum);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.faq-q::after {
  content: '+'; font-size: 22px; color: var(--hot-pink); font-weight: 400;
  transition: transform 0.2s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 22px;
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-family: 'Quicksand', sans-serif;
  color: var(--plum); font-size: 14.5px; line-height: 1.6;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 22px 18px;
}

/* === FOOTER === */
.site-footer {
  background: linear-gradient(180deg, var(--pale-pink) 0%, var(--soft-pink) 100%);
  padding: 48px 24px 24px;
  text-align: center;
  border-top: 3px dashed white;
  margin-top: 40px;
}
.footer-brand { font-family: 'Pacifico', cursive; font-size: 32px; color: var(--plum); margin-bottom: 8px; }
.footer-tag { font-family: 'Caveat', cursive; font-size: 18px; color: var(--plum-soft); margin-bottom: 24px; }
.footer-links {
  display: flex; gap: 24px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 24px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 500; font-size: 14px;
}
.footer-links a { color: var(--plum); text-decoration: none; }
.footer-links a:hover { color: var(--hot-pink); }
.footer-social { display: flex; gap: 12px; justify-content: center; margin-bottom: 24px; }
.social-icon {
  width: 40px; height: 40px;
  background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: var(--shadow-soft);
  font-size: 18px;
}
.footer-copy { font-size: 13px; color: var(--plum-soft); font-family: 'Quicksand', sans-serif; }

/* === CART DRAWER === */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(58, 30, 71, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000; display: none;
  opacity: 0; transition: opacity 0.3s ease;
}
.cart-overlay.open { display: block; opacity: 1; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 420px;
  background: var(--cream-pink);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 32px rgba(58, 30, 71, 0.2);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  padding: 20px 24px;
  border-bottom: 2px dashed var(--soft-pink);
  display: flex; justify-content: space-between; align-items: center;
  background: white;
}
.cart-head h3 { font-family: 'Pacifico', cursive; font-size: 24px; color: var(--plum); }
.cart-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--pale-pink); border: none;
  cursor: pointer; font-size: 20px; color: var(--plum);
  display: flex; align-items: center; justify-content: center;
}
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--plum-soft); }
.cart-empty .big-icon { font-size: 64px; margin-bottom: 14px; opacity: 0.5; }
.cart-empty h4 { font-family: 'Pacifico', cursive; color: var(--plum); font-size: 22px; margin-bottom: 6px; }
.cart-empty p { font-family: 'Quicksand', sans-serif; font-size: 14px; }
.cart-item {
  background: white; border-radius: 18px;
  padding: 14px; margin-bottom: 12px;
  display: flex; gap: 12px;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  animation: cartin 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes cartin {
  0% { transform: translateX(40px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}
.cart-item:hover { border-color: var(--soft-pink); }
.cart-item-thumb {
  width: 60px; height: 60px; border-radius: 12px;
  background: linear-gradient(135deg, var(--soft-pink), var(--soft-lavender));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 26px; position: relative;
}
.cart-item-thumb.custom::after {
  content: '✨'; position: absolute;
  top: -4px; right: -4px;
  background: var(--hot-pink); color: white; font-size: 10px;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-family: 'Fredoka', sans-serif; font-weight: 600; color: var(--plum); font-size: 14px; margin-bottom: 2px; }
.cart-item-detail { font-family: 'Quicksand', sans-serif; font-size: 11px; color: var(--plum-soft); margin-bottom: 4px; line-height: 1.3; }
.cart-item-row { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; }
.cart-item-price { font-family: 'Fredoka', sans-serif; font-weight: 700; color: var(--hot-pink); font-size: 15px; }
.cart-item-remove {
  background: none; border: none; color: var(--plum-soft);
  font-size: 12px; cursor: pointer;
  font-family: 'Quicksand', sans-serif; text-decoration: underline;
}
.cart-item-remove:hover { color: var(--hot-pink); }
.cart-foot {
  padding: 20px 24px;
  border-top: 2px dashed var(--soft-pink);
  background: white;
}
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.cart-total .label { font-family: 'Fredoka', sans-serif; color: var(--plum-soft); font-size: 14px; }
.cart-total .val { font-family: 'Pacifico', cursive; color: var(--hot-pink); font-size: 30px; }
.cart-checkout {
  width: 100%;
  background: linear-gradient(135deg, var(--hot-pink), #D946A0);
  color: white;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600; font-size: 15px;
  padding: 16px; border: none; border-radius: 14px;
  cursor: pointer; box-shadow: var(--shadow-pink);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none;
}
.cart-checkout:hover { transform: translateY(-2px); }
.cart-note { text-align: center; font-family: 'Caveat', cursive; color: var(--plum-soft); font-size: 14px; margin-top: 10px; }

/* === ORDER FORM (no-Stripe checkout) === */
.order-form-wrap {
  max-width: 720px; margin: 0 auto; padding: 32px 24px 80px;
}
.cart-summary {
  background: white;
  border-radius: 20px;
  padding: 22px 24px;
  margin-bottom: 24px;
  border: 2px solid var(--pale-pink);
}
.cart-summary h3 {
  font-family: 'Pacifico', cursive; color: var(--plum);
  font-size: 22px; margin-bottom: 14px;
}
.summary-item {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--pale-pink);
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
}
.summary-item:last-of-type { border: none; }
.summary-item .item-name { font-weight: 600; color: var(--plum); font-family: 'Fredoka', sans-serif; }
.summary-item .item-detail { font-size: 12px; color: var(--plum-soft); margin-top: 2px; }
.summary-total {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 2px solid var(--soft-pink);
  display: flex; justify-content: space-between; align-items: baseline;
}
.summary-total .label { font-family: 'Fredoka', sans-serif; color: var(--plum-soft); }
.summary-total .val { font-family: 'Pacifico', cursive; color: var(--hot-pink); font-size: 28px; }

.order-form {
  background: white;
  border-radius: 20px;
  padding: 28px;
  border: 2px solid var(--pale-pink);
}
.order-form h3 {
  font-family: 'Pacifico', cursive; color: var(--plum);
  font-size: 22px; margin-bottom: 4px;
}
.order-form .form-sub {
  font-family: 'Quicksand', sans-serif; color: var(--plum-soft);
  font-size: 14px; margin-bottom: 20px;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600; font-size: 13px;
  color: var(--plum); margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-field input, .form-field textarea {
  width: 100%;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  border: 2px solid var(--pale-pink);
  border-radius: 12px;
  background: var(--cream-pink);
  color: var(--plum);
  transition: border-color 0.2s, background 0.2s;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--hot-pink);
  background: white;
}
.form-field textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-submit {
  width: 100%; margin-top: 8px;
  background: linear-gradient(135deg, var(--hot-pink), #D946A0);
  color: white;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600; font-size: 16px;
  padding: 16px; border: none; border-radius: 14px;
  cursor: pointer; box-shadow: var(--shadow-pink);
  transition: transform 0.2s;
}
.form-submit:hover { transform: translateY(-2px); }
.form-note {
  text-align: center; font-family: 'Caveat', cursive;
  color: var(--plum-soft); font-size: 16px;
  margin-top: 14px;
}

/* === BUILDER === */
.builder-wrap { max-width: 1200px; margin: 0 auto; padding: 32px 20px; }
.builder-head { text-align: center; margin-bottom: 24px; }
.builder-head h2 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(28px, 4vw, 40px);
  background: linear-gradient(135deg, var(--hot-pink), var(--lavender));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.builder-head p { font-family: 'Fredoka', sans-serif; color: var(--plum-soft); font-size: 15px; }

.step-bar {
  display: flex; gap: 6px;
  margin-bottom: 24px;
  background: white; padding: 8px; border-radius: 16px;
  border: 2px solid var(--pale-pink);
  overflow-x: auto;
}
.step-pill {
  flex: 1; min-width: 90px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 500; font-size: 12px;
  padding: 10px 8px; border-radius: 10px;
  text-align: center;
  background: transparent; border: none;
  color: var(--plum-soft); cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.step-pill .num {
  display: inline-block;
  width: 20px; height: 20px;
  background: var(--pale-pink);
  color: var(--plum-soft); border-radius: 50%;
  font-size: 11px; font-weight: 700;
  line-height: 20px; margin-right: 6px;
}
.step-pill.active { background: linear-gradient(135deg, var(--hot-pink), var(--pink)); color: white; }
.step-pill.active .num { background: white; color: var(--hot-pink); }
.step-pill.done .num { background: var(--mint); color: white; }
.step-pill.done .num::before { content: '✓'; }
.step-pill.done .num span { display: none; }

.builder-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
}
@media (max-width: 880px) { .builder-grid { grid-template-columns: 1fr; } }

.builder-options-panel {
  background: white;
  border-radius: 24px;
  padding: 28px;
  border: 2px solid var(--pale-pink);
  min-height: 540px;
}
.step-title { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 20px; color: var(--plum); margin-bottom: 4px; }
.step-desc { font-size: 14px; color: var(--plum-soft); margin-bottom: 20px; }

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
}
.option-card {
  background: white;
  border: 2px solid var(--pale-pink);
  border-radius: 16px;
  padding: 16px 10px;
  text-align: center; cursor: pointer;
  transition: all 0.2s;
  font-family: 'Fredoka', sans-serif;
  font-weight: 500; font-size: 13px;
  color: var(--plum); position: relative;
}
.option-card:hover { border-color: var(--soft-pink); transform: translateY(-2px); }
.option-card.selected {
  border-color: var(--hot-pink);
  background: var(--cream-pink);
  box-shadow: 0 4px 12px rgba(255,95,160,0.15);
}
.option-card.selected::after {
  content: '✓'; position: absolute;
  top: 6px; right: 8px;
  width: 20px; height: 20px;
  background: var(--hot-pink); color: white;
  border-radius: 50%; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.option-icon {
  width: 60px; height: 60px;
  margin: 0 auto 8px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-pink);
  font-size: 28px;
  position: relative;
}
.option-card .label { display: block; margin-top: 4px; }
.option-card .price-add { display: block; font-size: 11px; color: var(--plum-soft); margin-top: 2px; font-weight: 400; }

.filter-chips {
  display: flex; gap: 6px;
  margin-bottom: 14px;
  overflow-x: auto; padding-bottom: 4px;
}

.swatch {
  width: 60px; height: 60px;
  border-radius: 50%;
  margin: 0 auto 6px;
  box-shadow: inset -6px -6px 10px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.06);
  border: 3px solid white;
}

.bead-slot-tabs {
  display: flex; gap: 8px;
  margin-bottom: 16px;
  padding: 4px;
  background: var(--cream-pink); border-radius: 12px;
}
.bead-tab {
  flex: 1;
  padding: 10px 8px;
  background: transparent; border: none;
  border-radius: 8px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 500; font-size: 12px;
  color: var(--plum); cursor: pointer;
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  transition: all 0.2s;
}
.bead-tab.active { background: white; box-shadow: var(--shadow-soft); }
.bead-tab .preview-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--pale-pink);
  border: 2px solid white;
}

.accent-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px;
  background: var(--cream-pink);
  border-radius: 14px;
  margin-bottom: 10px;
}
.accent-info {
  display: flex; flex-direction: column;
  font-family: 'Fredoka', sans-serif;
  color: var(--plum); font-size: 14px; font-weight: 500;
}
.accent-info .a-price { color: var(--plum-soft); font-size: 12px; font-weight: 400; }
.toggle {
  position: relative;
  width: 44px; height: 24px;
  background: var(--soft-pink);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s;
}
.toggle.on { background: linear-gradient(135deg, var(--hot-pink), var(--pink)); }
.toggle::after {
  content: ''; position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.toggle.on::after { transform: translateX(20px); }

.accent-sub {
  padding: 10px 16px 14px;
  background: var(--cream-pink);
  border-radius: 0 0 14px 14px;
  margin-top: -10px;
  margin-bottom: 10px;
  display: none;
}
.accent-sub.show { display: block; }
.color-pick-row { display: flex; gap: 6px; flex-wrap: wrap; }
.mini-swatch {
  width: 28px; height: 28px; border-radius: 50%;
  border: 3px solid white; cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.mini-swatch.selected { box-shadow: 0 0 0 2px var(--hot-pink), 0 2px 4px rgba(0,0,0,0.1); }

.step-nav { display: flex; justify-content: space-between; margin-top: 24px; gap: 12px; }
.step-nav .btn-secondary { flex: 0 0 auto; }
.step-nav .btn-primary { flex: 1; max-width: 200px; }

.preview-panel {
  background: linear-gradient(180deg, var(--cream-pink) 0%, var(--pale-pink) 100%);
  border-radius: 24px;
  padding: 24px;
  border: 2px solid var(--soft-pink);
  position: sticky; top: 100px;
  height: fit-content;
}
.preview-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600; font-size: 15px;
  color: var(--plum-soft);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.preview-stage {
  background:
    radial-gradient(ellipse at 30% 40%, #6FB35E 0%, transparent 55%),
    radial-gradient(ellipse at 70% 60%, #5FA34E 0%, transparent 55%),
    linear-gradient(135deg, #7FC56E, #5BA04A);
  border-radius: 18px;
  height: 320px;
  position: relative; overflow: hidden;
  margin-bottom: 18px;
}
.live-stack {
  position: absolute;
  left: 50%; bottom: 12px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.2));
  transition: all 0.3s;
  animation: livebob 4s infinite ease-in-out;
}
@keyframes livebob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-4px); }
}
.live-stack .live-char {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--pale-pink);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  position: relative;
  margin-bottom: -3px;
  z-index: 5;
}
.live-char:not(.empty) {
  box-shadow: 0 6px 14px rgba(0,0,0,0.18), inset 0 -6px 10px rgba(0,0,0,0.1), inset 0 4px 6px rgba(255,255,255,0.5);
}
.live-stack .live-char.empty {
  border: 3px dashed white;
  font-size: 14px;
  font-family: 'Caveat', cursive;
  color: var(--plum-soft);
  text-align: center;
}
.live-stack .live-bead {
  width: 34px; height: 34px;
  border-radius: 50%;
  margin-bottom: -3px;
  box-shadow: inset -5px -5px 10px rgba(0,0,0,0.18);
  position: relative;
}
.live-bead:not(.empty)::before {
  content: ''; position: absolute;
  top: 16%; left: 22%;
  width: 36%; height: 26%;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  filter: blur(1px);
}
.live-stack .live-bead.empty {
  background: rgba(255,255,255,0.4);
  border: 2px dashed rgba(255,255,255,0.7);
  box-shadow: none;
}
.live-stack .live-pen {
  width: 22px; height: 70px;
  border-radius: 4px 4px 2px 2px;
  margin-top: -3px;
  position: relative;
  background: linear-gradient(180deg, #999, #555);
}
.live-stack .live-pen::after {
  content: ''; position: absolute;
  bottom: -10px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 12px solid var(--plum);
}
.live-stack .live-pen.empty {
  background: rgba(255,255,255,0.3);
  border: 2px dashed rgba(255,255,255,0.7);
}
.live-stack .live-pen.empty::after { display: none; }
.live-stack.keychain-mode .live-pen { display: none; }
.keyring { display: none; }
.live-stack.keychain-mode .keyring {
  display: block;
  width: 28px; height: 28px;
  border: 4px solid #C8C8D0;
  border-radius: 50%;
  margin-bottom: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.live-stack.keychain-mode .keyring::after {
  content: ''; display: block;
  width: 3px; height: 12px;
  background: #C8C8D0;
  margin: 24px auto -6px;
}

.summary-box {
  background: white;
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 14px;
  border: 2px solid var(--pale-pink);
}
.summary-line {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  font-family: 'Fredoka', sans-serif;
  font-size: 13px; color: var(--plum);
  border-bottom: 1px dashed var(--pale-pink);
}
.summary-line:last-child { border: none; }
.summary-line .label { color: var(--plum-soft); }
.summary-line .val { font-weight: 600; max-width: 60%; text-align: right; }
.summary-line .val.empty { color: var(--plum-soft); font-weight: 400; font-style: italic; font-family: 'Caveat', cursive; font-size: 15px; }

.price-line {
  display: flex; justify-content: space-between; align-items: baseline;
  background: white;
  padding: 16px 18px;
  border-radius: 16px;
  border: 2px solid var(--hot-pink);
  margin-bottom: 12px;
}
.price-line .ptitle { font-family: 'Fredoka', sans-serif; font-weight: 500; color: var(--plum-soft); font-size: 13px; }
.price-line .pval { font-family: 'Pacifico', cursive; font-size: 26px; color: var(--hot-pink); }
.lead-time { text-align: center; font-family: 'Caveat', cursive; color: var(--plum-soft); font-size: 15px; margin-bottom: 12px; }
.add-cart-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--hot-pink), #D946A0);
  color: white;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600; font-size: 15px;
  padding: 14px;
  border: none; border-radius: 14px;
  cursor: pointer;
  box-shadow: var(--shadow-pink);
  transition: all 0.2s;
}
.add-cart-btn:hover:not(:disabled) { transform: translateY(-2px); }
.add-cart-btn:disabled { background: var(--soft-pink); cursor: not-allowed; transform: none; opacity: 0.7; }

/* === TOAST === */
.toast {
  position: fixed;
  top: 80px; left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: linear-gradient(135deg, var(--hot-pink), #D946A0);
  color: white;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 500; font-size: 14px;
  box-shadow: var(--shadow-pink);
  z-index: 1100;
  opacity: 0; pointer-events: none;
  transition: all 0.3s ease;
}
.toast.show {
  opacity: 1; transform: translateX(-50%) translateY(0);
  animation: toastdrop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes toastdrop {
  0% { transform: translateX(-50%) translateY(-40px) scale(0.7); opacity: 0; }
  60% { transform: translateX(-50%) translateY(8px) scale(1.06); opacity: 1; }
  100% { transform: translateX(-50%) translateY(0) scale(1); opacity: 1; }
}

/* === MOBILE === */
@media (max-width: 640px) {
  .site-nav { display: none; }
  .nav-toggle { display: block; }
  .site-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; right: 0; left: 0;
    background: white; padding: 20px 24px;
    gap: 16px;
    border-top: 2px dashed var(--soft-pink);
    box-shadow: 0 8px 16px rgba(58,30,71,0.1);
  }
  .hero { padding: 40px 18px 60px; }
  .section { padding: 40px 16px; }
  .byo-section, .about-strip { margin: 24px 16px; padding: 32px 20px; }
  .preview-panel { position: static; }
  .product-detail { padding: 24px 18px; }
  .page-head { padding: 32px 18px 40px; }
}

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* === SUCCESS PAGE === */
.success-wrap {
  max-width: 540px; margin: 0 auto;
  padding: 80px 24px; text-align: center;
}
.success-wrap .big-icon {
  font-size: 80px; margin-bottom: 20px;
  animation: bounce 1s ease-in-out;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-20px); }
  60% { transform: translateY(-10px); }
}
.success-wrap h1 {
  font-family: 'Pacifico', cursive;
  font-size: 40px; color: var(--plum);
  margin-bottom: 16px;
}
.success-wrap p {
  font-family: 'Quicksand', sans-serif;
  color: var(--plum); font-size: 16px;
  line-height: 1.6; margin-bottom: 14px;
}
