/* ===== Brand tokens ===== */
:root {
  --lp-wheel-pink: #c93d7a;
  --lp-wheel-pink-deep: #9b2d5e;
  --lp-wheel-pink-hover: #b8356f;
  --lp-wheel-coral: #ff7ec8;
  --lp-wheel-peach: #ffd6cf;
  --lp-wheel-cream: #faf6f0;
  --lp-wheel-cream-deep: #f3ebe3;
  --lp-wheel-rose: #b94d6f;
  --lp-wheel-rose-deep: #8f3d58;
  --lp-wheel-gold: #d4a574;
  --lp-wheel-gold-light: #f0d4a8;
  --lp-wheel-ink: #2a2228;
  --lp-wheel-muted: #6b5f66;
  --lp-wheel-sans: 'Manrope', system-ui, -apple-system, sans-serif;
  --lp-wheel-gift-size: 60px;
  --lp-wheel-mobile-cta-h: 64px;
}

/**
 * Wheel of Fortune — premium two-column modal (Laser PRO SPB).
 * v1.0.233: remove pedestal ovals, badge above wheel, typography hierarchy, pointer contrast, sheet deco.
 */

/* ===== Floating gift button ===== */
.lp-wheel {
  position: fixed;
  left: 16px;
  bottom: 18px;
  z-index: calc(var(--z-cookie, 300) - 1);
  pointer-events: none;
}

.lp-wheel__gift {
  pointer-events: auto;
  position: relative;
  width: var(--lp-wheel-gift-size);
  height: var(--lp-wheel-gift-size);
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-wheel-pink), var(--lp-wheel-coral));
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(201, 61, 122, 0.45), 0 2px 6px rgba(31, 31, 31, 0.18);
  transition: transform var(--transition-base, 180ms ease), box-shadow var(--transition-base, 180ms ease);
}

.lp-wheel__gift:hover,
.lp-wheel__gift:focus-visible {
  transform: scale(1.06);
  box-shadow: 0 14px 32px rgba(201, 61, 122, 0.55), 0 0 0 3px rgba(201, 61, 122, 0.35);
  outline: none;
}

.lp-wheel__gift:active {
  transform: scale(0.97);
}

.lp-wheel__gift-icon {
  position: relative;
  z-index: 2;
  display: inline-flex;
}

.lp-wheel__gift-tooltip {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 9999px;
  background: var(--lp-wheel-ink);
  color: #fff;
  font-family: var(--lp-wheel-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(31, 31, 31, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.lp-wheel__gift-tooltip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-right-color: var(--lp-wheel-ink);
}

.lp-wheel__gift:hover .lp-wheel__gift-tooltip,
.lp-wheel__gift:focus-visible .lp-wheel__gift-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(2px);
}

@keyframes lp-wheel-gift-wobble {
  0%, 100% { transform: rotate(-8deg); }
  50%      { transform: rotate(8deg); }
}

@keyframes lp-wheel-gift-bob {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -4px; }
}

.motion-enhanced:not(.reduced-motion) .lp-wheel__gift-icon {
  animation:
    lp-wheel-gift-bob 2.4s ease-in-out infinite,
    lp-wheel-gift-wobble 3.2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes lp-wheel-gift-glow-pulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50%      { opacity: 0.72; transform: scale(1.2); }
}

.lp-wheel__gift-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 61, 122, 0.55) 0%, rgba(201, 61, 122, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.motion-enhanced:not(.reduced-motion) .lp-wheel__gift-glow {
  animation: lp-wheel-gift-glow-pulse 2.6s ease-in-out infinite;
}

.lp-wheel[data-open="true"] .lp-wheel__gift {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
}

/* ===== Modal shell ===== */
.lp-wheel-modal-root[hidden] {
  display: none;
}

.lp-wheel-modal-root {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-cookie, 300) + 12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lp-wheel__modal[hidden] {
  display: none;
}

.lp-wheel__modal {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 280ms ease, visibility 280ms ease;
}

.lp-wheel__modal--visible {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.lp-wheel__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(42, 24, 36, 0.72) 0%, rgba(60, 32, 48, 0.68) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(185, 77, 111, 0.15) 0%, transparent 60%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 280ms ease;
}

.lp-wheel__modal--visible .lp-wheel__backdrop {
  opacity: 1;
}

/* ===== Sheet — wide two-column card ===== */
.lp-wheel__sheet {
  position: relative;
  width: min(100%, 920px);
  max-height: min(92vh, 640px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(145deg, #fffdfb 0%, #fff9f6 45%, #fff5fa 100%);
  border: 1px solid rgba(212, 165, 116, 0.35);
  border-radius: 28px;
  padding: 36px 40px 32px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.85),
    0 32px 80px rgba(185, 77, 111, 0.28),
    0 12px 32px rgba(42, 34, 40, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translateY(18px) scale(0.96);
  opacity: 0;
  transition:
    transform 340ms cubic-bezier(0.32, 0.72, 0, 1),
    opacity 280ms ease;
}

.lp-wheel__modal--visible .lp-wheel__sheet {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Subtle sheet background decorations */
.lp-wheel__sheet-deco {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}

.lp-wheel__deco {
  position: absolute;
  color: var(--lp-wheel-rose);
  opacity: 0.07;
}

.lp-wheel__deco--handpiece {
  left: -6px;
  bottom: 18%;
  transform: rotate(-18deg);
}

.lp-wheel__deco--sparkle {
  top: 14%;
  right: 8%;
  opacity: 0.1;
}

.lp-wheel__deco--petal {
  left: 42%;
  top: 6%;
  opacity: 0.08;
  transform: rotate(12deg);
}

.lp-wheel__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 6;
  border: 0;
  background: rgba(42, 34, 40, 0.06);
  border-radius: 50%;
  cursor: pointer;
  color: var(--lp-wheel-muted);
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.lp-wheel__close:hover,
.lp-wheel__close:focus-visible {
  background: rgba(201, 61, 122, 0.12);
  color: var(--lp-wheel-pink);
  transform: rotate(90deg);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ===== Two-column layout ===== */
.lp-wheel__panel[hidden] {
  display: none;
}

.lp-wheel__panel {
  position: relative;
  z-index: 1;
}

.lp-wheel-modal-root[data-state="win"] .lp-wheel__panel[data-lp-wheel-panel="entry"] {
  display: none;
}

.lp-wheel__layout {
  display: grid;
  grid-template-columns: minmax(360px, 1.15fr) minmax(300px, 1fr);
  gap: 20px 28px;
  align-items: center;
}

.lp-wheel__col--wheel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 460px;
  padding: 0 4px;
}

.lp-wheel__col--form {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-right: 8px;
  padding-top: 4px;
  position: relative;
  z-index: 1;
}

/* ===== Wheel stage ===== */
.lp-wheel__stage {
  position: relative;
  width: min(440px, 100%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-wheel__canvas-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  z-index: 2;
  filter: drop-shadow(0 16px 32px rgba(185, 77, 111, 0.25));
}

.lp-wheel__canvas-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 112%;
  height: 112%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 126, 200, 0.55) 0%, rgba(201, 61, 122, 0.38) 28%, rgba(201, 61, 122, 0.14) 52%, transparent 72%);
  z-index: 0;
  pointer-events: none;
}

@keyframes lp-wheel-wrap-glow-pulse {
  0%, 100% {
    opacity: 0.62;
    transform: translate(-50%, -50%) scale(0.88);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.14);
  }
}

.motion-enhanced:not(.reduced-motion) .lp-wheel__canvas-wrap::before {
  animation: lp-wheel-wrap-glow-pulse 2.8s ease-in-out infinite;
}

.lp-wheel__canvas {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: center center;
}

@keyframes lp-wheel-idle-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.motion-enhanced:not(.reduced-motion) .lp-wheel__canvas-wrap.is-idle .lp-wheel__canvas {
  animation: lp-wheel-idle-spin 30s linear infinite;
  will-change: transform;
}

/* Pointer on RIGHT side — deep rose for contrast against gold rim */
.lp-wheel__pointer {
  position: absolute;
  right: -4px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  z-index: 5;
  width: 0;
  height: 0;
  padding: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-right: 28px solid #9e3d6b;
  filter: drop-shadow(0 2px 8px rgba(62, 20, 40, 0.45));
  pointer-events: none;
}

.lp-wheel__pointer::before {
  content: '';
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px #9e3d6b;
}

.lp-wheel__pointer-gem {
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle, #ff7ec8 0%, #9e3d6b 100%);
  box-shadow: 0 0 8px rgba(158, 61, 107, 0.65);
  z-index: 1;
}

/* Floating ribbon accents around wheel (not under-wheel ovals) */
.lp-wheel__stage-ribbons {
  position: absolute;
  inset: 8% 0 auto;
  height: 42%;
  pointer-events: none;
  z-index: 0;
}

.lp-wheel__ribbon {
  position: absolute;
  width: 28px;
  height: 56px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0.35;
}

.lp-wheel__ribbon--left {
  left: -2%;
  top: 18%;
  transform: rotate(-28deg);
  background: linear-gradient(160deg, rgba(255, 126, 200, 0.55), rgba(201, 61, 122, 0.25));
}

.lp-wheel__ribbon--right {
  right: -2%;
  top: 8%;
  transform: rotate(24deg);
  background: linear-gradient(200deg, rgba(255, 214, 207, 0.7), rgba(201, 61, 122, 0.2));
}

@keyframes lp-wheel-ribbon-float {
  0%, 100% { transform: translateY(0) rotate(-28deg); }
  50%      { transform: translateY(-6px) rotate(-22deg); }
}

@keyframes lp-wheel-ribbon-float-alt {
  0%, 100% { transform: translateY(0) rotate(24deg); }
  50%      { transform: translateY(-5px) rotate(30deg); }
}

.motion-enhanced:not(.reduced-motion) .lp-wheel__ribbon--left {
  animation: lp-wheel-ribbon-float 4.2s ease-in-out infinite;
}

.motion-enhanced:not(.reduced-motion) .lp-wheel__ribbon--right {
  animation: lp-wheel-ribbon-float-alt 3.8s ease-in-out infinite;
}

/* Compact badge pill above wheel */
.lp-wheel__wheel-badge {
  position: relative;
  z-index: 3;
  margin: 0 auto 12px;
  max-width: 100%;
  padding: 6px 14px;
  border-radius: 9999px;
  background: linear-gradient(180deg, #fff 0%, var(--lp-wheel-cream) 100%);
  border: 1px solid rgba(212, 165, 116, 0.45);
  box-shadow: 0 3px 10px rgba(185, 77, 111, 0.1);
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.lp-wheel__wheel-badge-icon {
  flex: 0 0 auto;
  color: var(--lp-wheel-gold);
}

.lp-wheel__wheel-badge span {
  font-family: var(--lp-wheel-sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--lp-wheel-ink);
  text-transform: uppercase;
}

/* ===== Right column — semantic heading hierarchy ===== */
.lp-wheel__col--form .lp-wheel__title {
  margin: 0 0 10px;
  font-family: var(--lp-wheel-sans);
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--lp-wheel-ink);
  text-align: center;
}

.lp-wheel__col--form .lp-wheel__title strong {
  font-weight: 900;
  color: var(--lp-wheel-pink-deep);
}

.lp-wheel__heading-sub {
  margin: 0 0 8px;
  font-family: var(--lp-wheel-sans);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--lp-wheel-ink);
  text-align: center;
}

.lp-wheel__heading-sub strong {
  font-weight: 900;
  color: var(--lp-wheel-pink-deep);
}

.lp-wheel__tagline {
  margin: 0 0 20px;
  font-family: var(--lp-wheel-sans);
  font-size: clamp(13px, 1.8vw, 15px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--lp-wheel-muted);
  text-align: center;
}

.lp-wheel__tagline strong {
  font-weight: 800;
  color: var(--lp-wheel-ink);
}

/* ===== Form ===== */
.lp-wheel__form {
  margin: 0;
}

.lp-wheel__field {
  margin-bottom: 14px;
}

.lp-wheel__phone-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.lp-wheel__phone-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--lp-wheel-muted);
  display: inline-flex;
  pointer-events: none;
  z-index: 2;
}

.lp-wheel__phone {
  display: block;
  width: 100%;
  box-sizing: border-box;
  min-height: 52px;
  padding: 14px 16px 14px 44px;
  font-size: 16px;
  font-family: var(--lp-wheel-sans);
  border-radius: 9999px;
  border: 0;
  background: #ece8ea;
  color: var(--lp-wheel-ink);
  text-align: center;
  letter-spacing: 0.02em;
  transition: box-shadow 180ms ease, background 180ms ease;
}

.lp-wheel__phone::placeholder {
  color: #8a7d84;
  opacity: 1;
}

.lp-wheel__phone:focus {
  outline: none;
  background: #e8e4e6;
  box-shadow: 0 0 0 3px rgba(201, 61, 122, 0.18);
}

.lp-wheel__phone.has-value {
  text-align: center;
}

.lp-wheel__phone.is-invalid {
  box-shadow: 0 0 0 3px rgba(214, 69, 107, 0.22);
}

.lp-wheel__phone.is-valid {
  box-shadow: 0 0 0 3px rgba(42, 193, 99, 0.16);
}

.lp-wheel__field-error {
  margin: 6px 0 0;
  font-size: 12px;
  color: #d6456b;
  text-align: center;
}

.lp-wheel__field-error[hidden] {
  display: none;
}

.lp-wheel__honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

.lp-wheel__honeypot label,
.lp-wheel__honeypot input {
  display: none !important;
}

/* Consent */
.lp-wheel__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 16px;
  padding: 0 2px;
  text-align: left;
  cursor: pointer;
  user-select: none;
}

.lp-wheel__consent input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.lp-wheel__consent-box {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1.5px solid rgba(107, 95, 102, 0.35);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  pointer-events: auto;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.lp-wheel__consent-box svg {
  width: 12px;
  height: 12px;
  color: #fff;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 160ms ease, transform 200ms cubic-bezier(0.34, 1.5, 0.64, 1);
}

.lp-wheel__consent input:checked + .lp-wheel__consent-box {
  background: linear-gradient(135deg, var(--lp-wheel-pink), var(--lp-wheel-pink-deep));
  border-color: var(--lp-wheel-pink);
  box-shadow: 0 2px 8px rgba(201, 61, 122, 0.3);
}

.lp-wheel__consent input:checked + .lp-wheel__consent-box svg {
  opacity: 1;
  transform: scale(1);
}

.lp-wheel__consent input:focus-visible + .lp-wheel__consent-box {
  box-shadow: 0 0 0 3px rgba(201, 61, 122, 0.25);
}

.lp-wheel__consent-text {
  font-size: 12px;
  line-height: 1.45;
  color: var(--lp-wheel-muted);
  font-family: var(--lp-wheel-sans);
}

.lp-wheel__consent-link {
  color: var(--lp-wheel-pink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lp-wheel__consent-link:hover,
.lp-wheel__consent-link:focus-visible {
  color: var(--lp-wheel-pink-hover);
}

/* CTA button */
.lp-wheel__submit,
.lp-wheel__submit:disabled,
.lp-wheel__submit[disabled] {
  visibility: visible !important;
}

.lp-wheel__submit {
  width: 100%;
  min-height: 54px;
  font-size: 15px;
  font-weight: 800;
  font-family: var(--lp-wheel-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #e8438f 0%, #c93d7a 50%, #9b2d5e 100%) !important;
  background-color: var(--lp-wheel-pink);
  color: #fff;
  border: 0;
  border-radius: 9999px;
  box-shadow: 0 10px 28px rgba(201, 61, 122, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.lp-wheel__submit:hover:not(:disabled),
.lp-wheel__submit:focus-visible:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(201, 61, 122, 0.5), 0 0 0 4px rgba(201, 61, 122, 0.2);
  filter: brightness(1.05);
  outline: none;
}

.lp-wheel__submit:active:not(:disabled) {
  transform: translateY(0) scale(0.99);
}

.lp-wheel__submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  filter: grayscale(0.25);
  box-shadow: 0 4px 12px rgba(201, 61, 122, 0.12);
}

.lp-wheel__feedback {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  text-align: center;
  background: rgba(201, 61, 122, 0.08);
  color: var(--lp-wheel-ink);
}

.lp-wheel__feedback[hidden] {
  display: none;
}

/* ===== Win panel ===== */
.lp-wheel__panel[data-lp-wheel-panel="win"] {
  text-align: center;
  padding: 12px 0 4px;
}

.lp-wheel__title--win {
  background-image: linear-gradient(95deg, var(--lp-wheel-gold) 0%, var(--lp-wheel-pink) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--lp-wheel-pink);
  font-family: var(--lp-wheel-sans);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
}

.lp-wheel__panel[data-lp-wheel-panel="win"] .lp-wheel__subtitle {
  margin: 0 auto 18px;
  max-width: 380px;
  color: var(--lp-wheel-muted);
  font-family: var(--lp-wheel-sans);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.lp-wheel__subtitle--win {
  margin-bottom: 22px;
}

.lp-wheel__prize {
  position: relative;
  margin: 6px auto 22px;
  max-width: 380px;
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--lp-wheel-cream) 0%, #fff5fb 50%, var(--lp-wheel-peach) 100%);
  border: 1.5px solid var(--lp-wheel-pink);
  color: var(--lp-wheel-ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 10px 28px rgba(201, 61, 122, 0.2);
}

@keyframes lp-wheel-prize-pop {
  0%   { transform: scale(0.6) rotate(-2deg); opacity: 0; }
  60%  { transform: scale(1.06) rotate(1deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

.motion-enhanced:not(.reduced-motion) .lp-wheel__prize {
  animation: lp-wheel-prize-pop 560ms cubic-bezier(0.34, 1.4, 0.64, 1) both;
}

.lp-wheel__win-icon svg {
  display: none !important;
}

.lp-wheel__win-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  position: relative;
  background: linear-gradient(135deg, #c93d7a 0%, #ff7ec8 55%, #d4a574 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(201, 61, 122, 0.35);
}

.lp-wheel__win-icon::before {
  content: '🎁';
  font-size: 36px;
  line-height: 1;
}

.lp-wheel__win-close {
  display: none !important;
}

/* Confetti */
.lp-wheel__confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 5;
}

/* Reduced motion */
.reduced-motion .lp-wheel__gift-icon,
.reduced-motion .lp-wheel__gift-glow,
.reduced-motion .lp-wheel__canvas-wrap::before,
.reduced-motion .lp-wheel__canvas-wrap.is-idle .lp-wheel__canvas,
.reduced-motion .lp-wheel__ribbon--left,
.reduced-motion .lp-wheel__ribbon--right {
  animation: none !important;
}

.reduced-motion .lp-wheel__modal,
.reduced-motion .lp-wheel-modal-root,
.reduced-motion .lp-wheel__backdrop,
.reduced-motion .lp-wheel__sheet,
.reduced-motion .lp-wheel__prize {
  transition: none !important;
  animation: none !important;
}

.reduced-motion .lp-wheel__confetti-piece {
  animation: none !important;
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .lp-wheel__gift-icon,
  .lp-wheel__gift-glow,
  .lp-wheel__prize,
  .lp-wheel__canvas-wrap::before,
  .lp-wheel__canvas-wrap.is-idle .lp-wheel__canvas,
  .lp-wheel__ribbon--left,
  .lp-wheel__ribbon--right {
    animation: none !important;
  }
  .lp-wheel__modal,
  .lp-wheel-modal-root,
  .lp-wheel__backdrop,
  .lp-wheel__sheet {
    transition: none !important;
  }
}

body.lp-wheel-open {
  overflow: hidden;
}

/* ===== Responsive ===== */
@media (min-width: 769px) {
  .lp-wheel {
    left: 20px;
    bottom: 24px;
    --lp-wheel-gift-size: 64px;
  }
}

@media (max-width: 768px) {
  .lp-wheel {
    left: 14px;
    bottom: calc(var(--lp-wheel-mobile-cta-h) + 14px + env(safe-area-inset-bottom));
    --lp-wheel-gift-size: 54px;
  }

  body:not(.has-mobile-sticky):not(.is-blog-article) .lp-wheel {
    bottom: calc(16px + env(safe-area-inset-bottom));
  }

  .lp-wheel-modal-root,
  .lp-wheel__modal {
    padding: 12px;
    align-items: center;
    justify-content: center;
  }

  .lp-wheel__sheet {
    width: min(100%, 420px);
    max-height: 92dvh;
    border-radius: 24px;
    padding: 24px 20px max(20px, env(safe-area-inset-bottom));
  }

  .lp-wheel__layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lp-wheel__col--wheel {
    min-height: auto;
    order: 1;
  }

  .lp-wheel__col--form {
    order: 2;
    padding-right: 0;
  }

  .lp-wheel__stage {
    width: min(360px, 92vw);
  }

  .lp-wheel__wheel-badge {
    margin-bottom: 10px;
    padding: 5px 12px;
  }

  .lp-wheel__wheel-badge span {
    font-size: 7px;
  }

  .lp-wheel__deco--handpiece {
    width: 52px;
    height: 86px;
    opacity: 0.05;
  }

  .lp-wheel__deco--sparkle,
  .lp-wheel__deco--petal {
    opacity: 0.06;
  }

  .lp-wheel__ribbon {
    width: 22px;
    height: 44px;
  }

  .lp-wheel__gift-tooltip {
    display: none;
  }
}

@media (max-width: 380px) {
  .lp-wheel__stage {
    width: min(320px, 90vw);
  }

  .lp-wheel__prize {
    font-size: 19px;
    padding: 18px 16px;
  }
}
