/* ===========================================================
   CHERI VIBES — Kawaii Japan Edit — Design tokens
   =========================================================== */
:root {
  --page-bg:      #FFF7FB;
  --cream:        #FFFFFF;
  --cream-deep:   #FFE9F2;
  --rose:         #FF8FB1;
  --rose-deep:    #FF5C8A;
  --rose-pale:    #FFEEF5;
  --mauve:        #FFC1D9;
  --header-bg:    #FFEEF5;
  --header-accent: #FF2D87;
  --header-text:  #9B2C4E;
  --ink:          #6B3F4E;
  --ink-soft:     #A9788A;
  --white:        #FFFFFF;
  --line:         #FFD1E3;
  --frame-border: #FFB6D2;

  --font-display: 'Baloo 2', 'Poppins', cursive;
  --font-body:    'Nunito', -apple-system, sans-serif;

  --radius:       20px;
  --shadow-card:  0 6px 20px rgba(255, 140, 180, 0.18);
  --shadow-hover: 0 14px 32px rgba(255, 92, 138, 0.28);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--page-bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ===========================================================
   SITE FRAME — full-width page wrapper (no floating card look)
   =========================================================== */
.site-frame {
  max-width: 1400px;
  margin: 0 auto;
  background: var(--cream);
}

/* ===========================================================
   HEADER
   =========================================================== */
.site-header {
  position: relative;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 6vw 14px;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.35) 0 1.5px, transparent 1.5px 20px),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.35) 0 1.5px, transparent 1.5px 20px),
    radial-gradient(ellipse 900px 260px at center, var(--header-bg) 0%, var(--rose) 100%);
  text-align: center;
  box-shadow: 0 4px 16px rgba(255, 140, 180, 0.12);
}

/* Scattered header decorations (flowers/sparkles) */
.header-deco {
  position: absolute;
  font-size: 1.2rem;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 1px 2px rgba(155, 44, 78, 0.15));
  animation: sparkle-float 3.5s ease-in-out infinite;
}
.header-deco.d1 { top: 18%; left: 5%; animation-delay: 0s; }
.header-deco.d2 { top: 62%; left: 2.5%; font-size: 0.95rem; animation-delay: 0.8s; }
.header-deco.d3 { top: 18%; right: 5%; animation-delay: 1.6s; }
.header-deco.d4 { top: 62%; right: 2.5%; font-size: 1rem; animation-delay: 2.3s; }

@media (max-width: 640px) {
  .header-deco { display: none; }
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--header-text);
}

.logo .accent { color: var(--header-accent); }

.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  padding: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav .nav-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--header-text);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.main-nav .nav-icon { font-size: 1.05rem; line-height: 1; }

.main-nav .nav-item:hover:not(.active) {
  background: rgba(255, 255, 255, 0.55);
}

.main-nav .nav-item.active {
  background: var(--header-accent);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 45, 135, 0.35);
}

.nav-toggle { display: none; }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  padding: 48px 6vw 36px;
  text-align: center;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--rose-deep);
  margin-bottom: 14px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '♡';
  font-size: 0.9rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 720px;
  margin: 0 auto 16px;
  color: var(--rose-deep);
  text-shadow: 2px 2px 0 var(--white), 4px 4px 0 var(--mauve);
}

.hero h1 em {
  font-style: normal;
  color: var(--rose);
}

.hero p.sub {
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 480px;
  margin: 0 auto;
}

/* Compact hero used on homepage above the featured grid */
.hero-compact {
  padding: 40px 6vw 6px;
  position: relative;
}

.hero-compact .hero-eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
}

.hero-sticker {
  display: block;
  width: fit-content;
  margin: 0 auto 14px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--rose-deep);
  background: var(--rose-pale);
  border: 2px solid var(--white);
  outline: 2px solid var(--rose);
  border-radius: 999px;
  padding: 6px 20px;
  transform: rotate(-6deg);
  box-shadow: var(--shadow-card);
  animation: sticker-float 3.5s ease-in-out infinite;
}

@keyframes sticker-float {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50%      { transform: rotate(-6deg) translateY(-8px); }
}

.hero-sticker:hover {
  transform: rotate(-6deg) scale(1.08);
}

.hero-sticker:active {
  transform: rotate(-6deg) scale(0.95);
}

.partner-banner-pulse {
  animation: partner-banner-pulse-anim 0.85s ease;
}

@keyframes partner-banner-pulse-anim {
  0%   { box-shadow: 0 0 0 0 rgba(255, 92, 138, 0.5); }
  60%  { box-shadow: 0 0 0 16px rgba(255, 92, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 92, 138, 0); }
}

.hero-compact .hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  font-weight: 700;
  position: relative;
  display: inline-block;
  color: var(--rose-deep);
  text-shadow: 1.5px 1.5px 0 var(--white), 3px 3px 0 var(--mauve);
}

.hero-compact .hero-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose), var(--mauve));
}

/* Floating sparkle decorations */
.sparkle {
  position: absolute;
  font-size: 1.3rem;
  animation: sparkle-float 3.5s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}
.sparkle.s1 { top: 10%;  left: 6%;  animation-delay: 0s; }
.sparkle.s2 { top: 60%;  left: 3%;  font-size: 1rem; animation-delay: 0.8s; }
.sparkle.s3 { top: 15%;  right: 7%; animation-delay: 1.6s; }
.sparkle.s4 { top: 65%;  right: 4%; font-size: 1rem; animation-delay: 2.3s; }

@keyframes sparkle-float {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.85; }
  50%      { transform: translateY(-10px) rotate(12deg); opacity: 1; }
}

/* ===========================================================
   GRID LAYOUT (homepage featured products)
   =========================================================== */
.grid-section {
  padding: 36px 6vw 60px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px 22px;
}

@media (max-width: 1080px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===========================================================
   SECTION ROWS (scrollable cards)
   =========================================================== */
.row-section {
  padding: 38px 0 18px;
}

.row-heading {
  padding: 0 6vw;
  margin-bottom: 18px;
}

.row-heading h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rose-deep);
}

.scroll-row-wrap {
  position: relative;
}

.scroll-row {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 4px 6vw 16px;
  scrollbar-width: none;
}
.scroll-row::-webkit-scrollbar { display: none; }

.scroll-btn {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  z-index: 5;
  transition: background 0.2s ease, transform 0.2s ease;
}
.scroll-btn:hover { background: var(--rose-deep); color: var(--white); border-color: var(--rose-deep); }
.scroll-btn.prev { left: 1.4vw; }
.scroll-btn.next { right: 1.4vw; }

/* ===========================================================
   PRODUCT CARD
   =========================================================== */
.watch-card-wrap {
  flex: 0 0 220px;
  scroll-snap-align: start;
  position: relative;
}

.watch-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.watch-card-wrap:hover .watch-card {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--rose);
}

.watch-card .img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  background: var(--cream-deep);
  overflow: hidden;
}

/* Single image — normal behaviour */
.watch-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.watch-card-wrap:hover .img-wrap img {
  transform: scale(1.06);
}

/* Slider — multiple images */
.watch-card .img-wrap.has-slider img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  transform: none;
}

.watch-card .img-wrap.has-slider img.active {
  opacity: 1;
}

/* Disable scale on hover for slider cards to avoid fighting opacity */
.watch-card-wrap:hover .img-wrap.has-slider img {
  transform: none;
}

/* Dot indicators */
.slide-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}

.slide-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transition: background 0.3s ease, transform 0.3s ease;
}

.slide-dots .dot.active {
  background: var(--white);
  transform: scale(1.3);
}

.watch-card .card-body {
  padding: 16px 18px 20px;
}

.watch-card .card-title {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
  height: 2.6em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.card-cta {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.2s ease, gap 0.2s ease;
}

.watch-card:hover .card-cta {
  color: var(--rose-deep);
  gap: 10px;
}

.cta-text {
  border-bottom: 1px solid var(--rose-deep);
  padding-bottom: 2px;
}

.source-badge {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--rose-deep);
  background: var(--rose-pale);
  padding: 2px 8px;
  border-radius: 999px;
}

/* ===========================================================
   WISHLIST PAGE — style rows
   =========================================================== */
.wishlist-page main {
  display: block;
  padding-top: 36px;
}

.coming-soon-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  text-align: center;
}

.coming-soon-text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--rose-deep);
  letter-spacing: 0.02em;
  text-shadow: 2px 2px 0 var(--white), 4px 4px 0 var(--mauve);
}

/* ===========================================================
   BUTTONS
   =========================================================== */
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid var(--rose-deep);
}

.btn-filled {
  background: var(--rose-deep);
  color: var(--white);
}
.btn-filled:hover {
  background: var(--rose);
  border-color: var(--rose);
}

.btn-outline {
  background: transparent;
  color: var(--rose-deep);
}
.btn-outline:hover {
  background: var(--rose-deep);
  color: var(--white);
}

/* ===========================================================
   PARTNER BANNER — wide horizontal partnership card
   =========================================================== */
.partner-banner-section {
  padding: 0 6vw;
}

.partner-banner {
  display: flex;
  align-items: center;
  gap: 26px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 22px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.partner-banner:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--rose);
}

.partner-banner-logo {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  object-fit: contain;
}

.partner-banner-divider {
  width: 2px;
  align-self: stretch;
  background: var(--line);
  flex: 0 0 auto;
}

.partner-banner-text {
  flex: 1 1 auto;
  min-width: 0;
}

.partner-banner-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.partner-banner-sep {
  color: var(--rose);
  margin: 0 4px;
}

.partner-banner-offer {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--rose-deep);
  margin-bottom: 2px;
}

.partner-banner-code {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.partner-banner-code span {
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.5px;
}

@media (max-width: 640px) {
  .partner-banner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 14px;
    padding: 20px 22px;
  }
  .partner-banner-divider { display: none; }
}

/* ===========================================================
   NEWSLETTER
   =========================================================== */
.newsletter {
  margin: 50px 6vw 0;
  padding: 44px 6vw;
  background: var(--rose-pale);
  border-radius: var(--radius);
  border: 2px dashed var(--rose);
  text-align: center;
}

.newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  font-weight: 700;
  color: var(--rose-deep);
  margin-bottom: 8px;
}

.newsletter p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  max-width: 420px;
  margin: 0 auto 22px;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1 1 180px;
  padding: 13px 18px;
  border: 2px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  background: var(--white);
  color: var(--ink);
}

.newsletter-form input::placeholder { color: var(--ink-soft); }

.newsletter-form input:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 2px;
}

.newsletter-form button {
  flex: 0 0 auto;
}

.newsletter-note {
  font-size: 0.74rem;
  color: var(--ink-soft);
  margin-top: 14px;
}

.newsletter-success {
  font-size: 0.9rem;
  color: var(--rose-deep);
  font-weight: 700;
  display: none;
}

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer {
  margin-top: 60px;
  padding: 40px 6vw 28px;
  background: var(--cream-deep);
  border-top: 3px dashed var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand .logo {
  display: block;
  margin-bottom: 10px;
  color: var(--header-text);
  font-size: 1.4rem;
}

.footer-brand p {
  color: var(--ink-soft);
  font-size: 0.85rem;
  max-width: 280px;
}

.footer-tagline {
  font-style: italic;
  color: var(--rose-deep) !important;
}

.footer-links {
  display: flex;
  gap: 40px;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 10px;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--rose-deep); }

.footer-bottom {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* ===========================================================
   STATIC PAGES (about / contact)
   =========================================================== */
.static-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 6vw 60px;
}

@media (max-width: 640px) {
  .static-page,
  .coming-soon-page {
    padding-bottom: 110px; /* clears the fixed Spin the Wheel launcher */
  }
}

.static-page h1 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--rose-deep);
}

.static-page p {
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 0.96rem;
}

.static-page strong { color: var(--ink); }

/* ===========================================================
   CONTACT FORM
   =========================================================== */
.contact-form {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 520px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-field label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.contact-field input,
.contact-field textarea {
  padding: 13px 16px;
  border: 2px solid var(--line);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--ink);
  resize: none;
  transition: border-color 0.2s ease;
}

.contact-field input:focus-visible,
.contact-field textarea:focus-visible {
  outline: none;
  border-color: var(--rose-deep);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: var(--ink-soft);
}

.contact-success {
  display: none;
  margin-top: 24px;
  font-size: 1rem;
  color: var(--rose-deep);
  font-weight: 700;
}

/* ===========================================================
   ADD-TO-WHEEL BUTTON (on each card)
   =========================================================== */
.add-to-wheel-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--rose-pale);
  background: rgba(255, 255, 255, 0.92);
  color: var(--rose-deep);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 140, 180, 0.25);
  z-index: 3;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.add-to-wheel-btn:hover {
  background: var(--rose);
  color: var(--white);
  transform: scale(1.08);
}

.add-to-wheel-btn.added {
  background: var(--rose-deep);
  color: var(--white);
}

.add-to-wheel-btn.shake {
  animation: wheel-shake 0.4s ease;
}

@keyframes wheel-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* ===========================================================
   SPIN THE WHEEL — launcher
   =========================================================== */
.wheel-launcher {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 80;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--white);
  background: var(--rose);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 8px 24px rgba(255, 92, 138, 0.4);
  transition: transform 0.2s ease;
}

.wheel-launcher:hover { transform: scale(1.08) rotate(-8deg); }

.wheel-launcher-icon { font-size: 1.6rem; }

.wheel-launcher-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--rose-deep);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

/* ===========================================================
   SPIN THE WHEEL — modal
   =========================================================== */
.wheel-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
}

.wheel-modal.open { display: flex; }

body.wheel-modal-locked { overflow: hidden; }

.wheel-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(178, 58, 92, 0.45);
  backdrop-filter: blur(2px);
}

.wheel-modal-panel {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  border: 3px solid var(--rose-pale);
  padding: 36px 32px;
  width: min(640px, 92vw);
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(255, 92, 138, 0.35);
}

.wheel-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--cream-deep);
  color: var(--ink);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.wheel-modal-close:hover { background: var(--rose); color: var(--white); }

.wheel-modal-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 6px;
  padding-right: 30px;
  color: var(--rose-deep);
}

.wheel-modal-sub {
  color: var(--ink-soft);
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.wheel-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.wheel-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}

.wheel-svg {
  width: 100%;
  height: 100%;
}

.wheel-pointer {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 18px solid var(--rose-deep);
  z-index: 4;
}

.wheel-empty-state {
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  background: var(--rose-pale);
  border-radius: 50%;
  aspect-ratio: 1;
  width: 100%;
}

.wheel-empty-state p {
  font-size: 0.84rem;
  color: var(--ink-soft);
  max-width: 180px;
}

.wheel-picks-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wheel-picks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 260px;
  overflow-y: auto;
}

.wheel-pick-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 12px;
  background: var(--cream-deep);
}

.wheel-pick-item img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  flex: 0 0 auto;
}

.wheel-pick-item span {
  flex: 1;
  font-size: 0.82rem;
  line-height: 1.3;
}

.wheel-pick-remove {
  border: none;
  background: none;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.8rem;
  padding: 4px;
  flex: 0 0 auto;
}
.wheel-pick-remove:hover { color: var(--rose-deep); }
.wheel-pick-remove:disabled { opacity: 0.35; cursor: not-allowed; }

.wheel-pick-empty {
  font-size: 0.84rem;
  color: var(--ink-soft);
  padding: 10px 4px;
}

.wheel-spin-btn {
  width: 100%;
}
.wheel-spin-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.wheel-spin-btn:disabled:hover {
  background: var(--rose-deep);
  color: var(--white);
}

.wheel-result {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-top: 26px;
  padding: 24px 20px;
  background: var(--rose-pale);
  border-radius: 16px;
  border: 2px solid var(--rose);
}

.wheel-result.visible {
  display: flex;
  animation: result-pop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes result-pop {
  0%   { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1);    opacity: 1; }
}

.wheel-result-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 700;
}

.wheel-result-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 860px) {
  .main-nav .nav-item {
    padding: 8px 14px;
    font-size: 0.66rem;
  }
  .main-nav .nav-icon { font-size: 1.1rem; }
}

@media (max-width: 720px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 14px; }
  .scroll-btn { display: none; }
  .wheel-layout { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .watch-card-wrap { flex: 0 0 168px; }
  .watch-card .img-wrap { height: 168px; }
  .hero { padding: 36px 6vw 24px; }
  .wheel-launcher { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .wheel-modal-panel { padding: 28px 20px; }
}

/* ===========================================================
   CURSOR TRAIL — floating emoji behind the mouse pointer
   =========================================================== */
.cursor-trail-emoji {
  position: fixed;
  z-index: 9999;
  font-size: 15px;
  pointer-events: none;
  user-select: none;
  transform: translate(-50%, -50%);
  animation: cursor-trail-fade 0.6s ease-out forwards;
  will-change: transform, opacity;
}

@keyframes cursor-trail-fade {
  0%   { opacity: 0.9; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0;   transform: translate(-50%, -80%) scale(0.4); }
}
