/* ---------------------------------------------------------------------------
   Lumivite - widget styles.
   Loaded by the public widget pages and by the builder preview, so what the
   customer designs is pixel for pixel what a visitor sees.
   No framework here on purpose: public widget pages stay tiny and fast
   inside a Canva iframe.
   --------------------------------------------------------------------------- */

.lv-widget {
  --w-bg: #ffffff;
  --w-text: #1a1626;
  --w-accent: #c9a96e;
  --w-radius: 18px;
  --w-font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --w-size: 44px;

  font-family: var(--w-font);
  color: var(--w-text);
  background: var(--w-bg);
  border-radius: var(--w-radius);
  padding: 22px 18px;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
}

.lv-widget *,
.lv-widget *::before,
.lv-widget *::after { box-sizing: border-box; }

.lv-widget--transparent { background: transparent; }

.lv-align-left   { text-align: left; }
.lv-align-center { text-align: center; }
.lv-align-right  { text-align: right; }

.lv-title {
  margin: 0 0 16px;
  font-size: clamp(15px, 4vw, 20px);
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--w-text);
  word-break: break-word;
}

.lv-title:empty { display: none; }

/* --- Countdown ------------------------------------------------------------- */

.lv-units {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.lv-align-center .lv-units { justify-content: center; }
.lv-align-right  .lv-units { justify-content: flex-end; }
.lv-align-left   .lv-units { justify-content: flex-start; }

.lv-unit { text-align: center; min-width: 62px; }

.lv-num {
  display: block;
  font-size: var(--w-size);
  font-weight: 700;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
}

.lv-label {
  display: block;
  margin-top: 6px;
  font-size: clamp(9px, 2.6vw, 11px);
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .68;
  font-weight: 600;
}

.lv-done {
  font-size: clamp(18px, 5vw, 26px);
  font-weight: 700;
  color: var(--w-accent);
  margin: 8px 0 0;
  word-break: break-word;
}

/* Cards */
.lv-cd--cards .lv-unit {
  background: rgba(124, 58, 237, .08);
  background: color-mix(in srgb, var(--w-accent) 9%, transparent);
  border: 1px solid rgba(124, 58, 237, .22);
  border: 1px solid color-mix(in srgb, var(--w-accent) 22%, transparent);
  border-radius: calc(var(--w-radius) * .7);
  padding: 14px 12px;
  min-width: 82px;
}
.lv-cd--cards .lv-num { color: var(--w-accent); }

/* Minimal */
.lv-cd--minimal .lv-unit { padding: 0 6px; min-width: 70px; }
.lv-cd--minimal .lv-num { color: var(--w-text); }
.lv-cd--minimal .lv-unit + .lv-unit {
  border-left: 1px solid rgba(0, 0, 0, .12);
  border-left: 1px solid color-mix(in srgb, var(--w-text) 14%, transparent);
}

/* Circular */
.lv-cd--circular .lv-unit { min-width: 0; }
.lv-cd--circular .lv-num {
  width: calc(var(--w-size) * 2.05);
  height: calc(var(--w-size) * 2.05);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border: 3px solid var(--w-accent);
  color: var(--w-accent);
  font-size: calc(var(--w-size) * .72);
  background: rgba(124, 58, 237, .06);
  background: color-mix(in srgb, var(--w-accent) 7%, transparent);
}

/* Digital */
.lv-cd--digital .lv-units { gap: 6px; align-items: flex-start; }
.lv-cd--digital .lv-unit {
  background: #14111d;
  background: color-mix(in srgb, var(--w-text) 92%, #000);
  border-radius: calc(var(--w-radius) * .45);
  padding: 12px 10px;
  min-width: 76px;
}
.lv-cd--digital .lv-num {
  color: var(--w-accent);
  font-family: "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace;
  letter-spacing: .04em;
}
.lv-cd--digital .lv-label { color: #fff; opacity: .6; }

/* --- Music player ---------------------------------------------------------- */

.lv-music { display: block; }

.lv-music__head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.lv-align-center .lv-music__head { flex-direction: column; text-align: center; gap: 10px; }
.lv-align-right .lv-music__head { flex-direction: row-reverse; }

.lv-music__art {
  width: 54px; height: 54px; flex: none;
  border-radius: calc(var(--w-radius) * .6);
  display: grid; place-items: center;
  background: rgba(124, 58, 237, .13);
  background: color-mix(in srgb, var(--w-accent) 14%, transparent);
  color: var(--w-accent);
}
.lv-music__art svg { width: 26px; height: 26px; }

.lv-music__text { min-width: 0; }

.lv-music__title {
  margin: 0;
  font-size: clamp(15px, 4vw, 19px);
  font-weight: 600;
  word-break: break-word;
}
.lv-music__sub {
  margin: 4px 0 0;
  font-size: 13px;
  opacity: .72;
  word-break: break-word;
}
.lv-music__sub:empty { display: none; }

.lv-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  cursor: pointer;
  background: var(--w-accent);
  color: #fff;
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 999px;
  width: 100%;
  max-width: 320px;
  transition: filter .15s ease, transform .12s ease;
  -webkit-appearance: none;
  appearance: none;
}
.lv-align-center .lv-play { margin: 0 auto; }
.lv-align-right .lv-play { margin-left: auto; }
.lv-play:hover { filter: brightness(1.08); }
.lv-play:active { transform: translateY(1px); }
.lv-play:focus-visible { outline: 3px solid rgba(124, 58, 237, .45); outline-offset: 3px; }
.lv-play svg { width: 18px; height: 18px; fill: currentColor; flex: none; }

.lv-hint {
  margin: 10px 0 0;
  font-size: 12px;
  opacity: .62;
}

.lv-embed {
  position: relative;
  width: 100%;
  margin-top: 4px;
  border-radius: calc(var(--w-radius) * .7);
  overflow: hidden;
  background: rgba(0, 0, 0, .05);
  background: color-mix(in srgb, var(--w-text) 6%, transparent);
}
.lv-embed iframe {
  display: block;
  width: 100%;
  border: 0;
}
.lv-embed--video { aspect-ratio: 16 / 9; }
.lv-embed--video iframe { height: 100%; position: absolute; inset: 0; }

.lv-brand {
  margin: 10px 0 0;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .55;
  font-weight: 600;
}

.lv-music--dark { color: #f5f3ff; }
.lv-music--dark .lv-music__sub,
.lv-music--dark .lv-brand { color: #ded9f0; }

.lv-music--compact .lv-music__art { width: 44px; height: 44px; }
.lv-music--compact .lv-play { padding: 10px 20px; font-size: 14px; }
.lv-music--compact .lv-music__head { margin-bottom: 10px; }

.lv-note {
  font-size: 13px;
  opacity: .7;
  margin: 0;
}

@media (max-width: 420px) {
  .lv-widget { padding: 18px 14px; }
  .lv-unit { min-width: 56px; }
  .lv-cd--cards .lv-unit { min-width: 68px; padding: 11px 8px; }
  .lv-cd--digital .lv-unit { min-width: 64px; }
}

@media (prefers-reduced-motion: reduce) {
  .lv-play, .lv-play-btn { transition: none; }
  .lv-playing .lv-vinyl-disk, .lv-playing .lv-reel { animation: none; }
  .lv-playing .lv-bar { animation: none; }
  .lv-playing .lv-bear-head-group, .lv-bear-notes span { animation: none; }
}

/* --- New Player Themes ---------------------------------------------------- */
.lv-music { display: flex; flex-direction: column; align-items: center; justify-content: center; }

/* Theme UI Wrapper */
.lv-theme-ui {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
}

/* Play Button Shared */
.lv-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  background: var(--w-accent);
  color: #fff;
  transition: transform .15s ease, filter .15s ease;
}
.lv-play-btn:hover { filter: brightness(1.08); }
.lv-play-btn:active { transform: scale(0.95); }
.lv-play-btn svg { width: 24px; height: 24px; fill: currentColor; }
.lv-music__slot .lv-play-btn {
  padding: 12px 24px; border-radius: 999px; gap: 8px; font-weight: 600; font-size: 15px; width: 100%; max-width: 320px;
}
.lv-music__slot .lv-play-btn svg { width: 18px; height: 18px; }

/* Vinyl Theme */
.lv-music--vinyl .lv-theme-ui { padding: 20px; }
.lv-vinyl-disk {
  --disk: var(--w-disk, #111111);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      circle,
      var(--disk) 0px,
      var(--disk) 3px,
      color-mix(in srgb, var(--disk) 84%, #000000) 4px,
      color-mix(in srgb, var(--disk) 84%, #000000) 5px,
      color-mix(in srgb, var(--disk) 90%, #ffffff) 6px,
      var(--disk) 7px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(0,0,0,0.3);
  border: 1px solid color-mix(in srgb, var(--disk) 78%, #000000);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.lv-vinyl-center {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--w-accent, #c9a96e);
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.12);
}
.lv-playing .lv-vinyl-disk {
  animation: lv-spin 3s linear infinite;
}
@keyframes lv-spin { 100% { transform: rotate(360deg); } }

.lv-music--vinyl .lv-play-btn {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--w-accent);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* Minimal Theme */
.lv-music--minimal .lv-theme-ui { padding: 10px; }
.lv-music--minimal .lv-play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.lv-music--minimal .lv-play-btn svg { width: 32px; height: 32px; }
.lv-music--minimal .lv-play-btn:hover { transform: scale(1.05); }

/* Equalizer (Soundwave) Theme */
.lv-music--equalizer .lv-theme-ui {
  background: var(--w-accent);
  border-radius: 40px;
  padding: 12px 24px 12px 14px;
  gap: 16px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}
.lv-music--equalizer .lv-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--w-accent);
}
.lv-soundwaves {
  display: flex;
  gap: 5px;
  align-items: center;
  height: 30px;
}
.lv-bar {
  width: 5px;
  height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 3px;
  transition: height 0.2s ease;
}
.lv-playing .lv-bar {
  background: #fff;
  animation: lv-wave 1.2s ease-in-out infinite alternate;
}
.lv-playing .lv-bar:nth-child(1) { animation-duration: 0.8s; }
.lv-playing .lv-bar:nth-child(2) { animation-duration: 1.1s; animation-delay: 0.2s; }
.lv-playing .lv-bar:nth-child(3) { animation-duration: 0.9s; animation-delay: 0.4s; }
.lv-playing .lv-bar:nth-child(4) { animation-duration: 1.0s; animation-delay: 0.1s; }
.lv-playing .lv-bar:nth-child(5) { animation-duration: 1.2s; animation-delay: 0.3s; }
@keyframes lv-wave { 0% { height: 8px; } 100% { height: 30px; } }

/* Bear with Vinyl Theme */
.lv-music--bear .lv-theme-ui,
.lv-music--envelope .lv-theme-ui {
  padding: 10px;
}

.lv-bear-stage {
  position: relative;
  width: 160px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lv-bear-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.14));
}

.lv-bear-head-group {
  transform-origin: 80px 70px;
  transition: transform 0.3s ease;
}

/* Head bounce animation when playing */
.lv-playing .lv-bear-head-group {
  animation: lv-bear-bounce 0.9s ease-in-out infinite alternate;
}
@keyframes lv-bear-bounce {
  0%   { transform: rotate(-3deg) translateY(0); }
  50%  { transform: rotate(0deg) translateY(2px); }
  100% { transform: rotate(3deg) translateY(0); }
}

/* Disk wrapper inside Bear's lap */
.lv-bear-disk-wrap {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* The Vinyl Disk held by the Bear */
.lv-bear-disk {
  width: 70px !important;
  height: 70px !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.32);
}

.lv-bear-disk .lv-vinyl-center {
  width: 26px;
  height: 26px;
  border-width: 2.5px;
}

/* Spin animation for bear's vinyl disk */
.lv-playing .lv-bear-disk {
  animation: lv-spin 3s linear infinite;
}

/* Play button in center of disk */
.lv-music--bear .lv-play-btn,
.lv-music--envelope .lv-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--w-accent, #c9a96e);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  z-index: 4;
}
.lv-music--bear .lv-play-btn:active,
.lv-music--envelope .lv-play-btn:active {
  transform: translate(-50%, -50%) scale(0.92) !important;
}
.lv-music--bear .lv-play-btn svg,
.lv-music--envelope .lv-play-btn svg {
  width: 14px;
  height: 14px;
}

/* Icon toggles based on playback state */
.lv-play-btn .lv-icon-pause { display: none !important; }
.lv-play-btn .lv-icon-play { display: block !important; }
.lv-playing .lv-play-btn .lv-icon-pause { display: block !important; }
.lv-playing .lv-play-btn .lv-icon-play { display: none !important; }

/* Bear Paws gripping the vinyl record */
.lv-bear-paw {
  position: absolute;
  width: 20px;
  height: 24px;
  background: #a46d42;
  border-radius: 10px;
  z-index: 3;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
.lv-bear-paw::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 11px;
  height: 9px;
  background: #dfbe98;
  border-radius: 5px;
}
.lv-bear-paw--left {
  bottom: 30px;
  left: 36px;
  transform: rotate(34deg);
}
.lv-bear-paw--right {
  bottom: 30px;
  right: 36px;
  transform: rotate(-34deg);
}

/* Floating musical notes when playing */
.lv-bear-notes {
  position: absolute;
  top: -12px;
  right: 6px;
  pointer-events: none;
  display: none;
  font-size: 16px;
  color: var(--w-accent, #c9a96e);
}
.lv-playing .lv-bear-notes {
  display: block;
}
.lv-bear-notes span {
  display: inline-block;
  opacity: 0;
  animation: lv-note-float 1.8s ease-in-out infinite;
}
.lv-bear-notes span:nth-child(1) { animation-delay: 0s; }
.lv-bear-notes span:nth-child(2) { animation-delay: 0.6s; margin-left: 6px; }
.lv-bear-notes span:nth-child(3) { animation-delay: 1.2s; margin-left: 4px; }

@keyframes lv-note-float {
  0%   { opacity: 0; transform: translateY(0) scale(0.7); }
  50%  { opacity: 0.9; transform: translateY(-16px) scale(1.1) rotate(12deg); }
  100% { opacity: 0; transform: translateY(-32px) scale(0.8) rotate(-10deg); }
}

/* Discoball Theme */
.lv-music--discoball .lv-theme-ui { padding: 20px; position: relative; }
.lv-discoball-body {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, #fcfcfc, #888);
  box-shadow: inset -10px -10px 30px rgba(0,0,0,0.5), 0 10px 20px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}
/* Disco ball grid pattern */
.lv-discoball-body::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 10px 10px;
  border-radius: 50%;
}
.lv-playing .lv-discoball-body::before {
  animation: lv-spin 4s linear infinite;
}
.lv-music--discoball .lv-play-btn {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  border: 4px solid #fff;
}

/* Note Theme */
.lv-music--note .lv-theme-ui { padding: 10px; }
.lv-music--note .lv-play-btn {
  width: 80px; height: 80px;
  border-radius: 20px;
  background: #fff;
  color: #111;
  border: 3px solid #111;
  font-size: 36px;
  box-shadow: 4px 4px 0 #111;
  transition: transform 0.1s, box-shadow 0.1s;
  position: relative;
}
.lv-music--note .lv-play-btn:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 #111;
}
.lv-music--note .lv-note-icon {
  line-height: 1;
  display: block;
}
.lv-music--note .lv-play-btn svg {
  width: 36px; height: 36px; fill: #111;
}

/* In Note theme: hide default SVGs so ONLY the note icon is visible */
.lv-music--note .lv-play-btn .lv-icon-play,
.lv-music--note .lv-play-btn .lv-icon-pause {
  display: none !important;
}

/* When playing in note theme: hide note icon and show pause icon */
.lv-music--note.lv-playing .lv-play-btn .lv-note-icon {
  display: none !important;
}
.lv-music--note.lv-playing .lv-play-btn .lv-icon-pause {
  display: block !important;
}

/* --- RSVP & Custom Form -------------------------------------------------- */

.lv-form {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: left;
}

.lv-form.lv-align-center .lv-form__title,
.lv-form.lv-align-center .lv-form__desc {
  text-align: center;
}

.lv-form__shell {
  width: 100%;
  box-sizing: border-box;
}

.lv-form__title {
  margin: 0 0 8px;
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 700;
  color: var(--w-text);
  line-height: 1.25;
}

.lv-form__desc {
  margin: 0 0 24px;
  font-size: 15px;
  opacity: 0.85;
  color: var(--w-text);
  line-height: 1.55;
  white-space: pre-line;
}

.lv-form__fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Card Style Variants */
.lv-form--cards .lv-form__group {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 18px;
}
.lv-widget:not(.lv-widget--transparent) .lv-form--cards .lv-form__group {
  background: rgba(0, 0, 0, 0.025);
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.lv-form--minimal .lv-form__group {
  padding: 0;
  border: none;
  background: none;
}

.lv-form--glass .lv-form__group {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
}

.lv-form--bordered .lv-form__group {
  border: 1.5px solid var(--w-accent);
  border-radius: 10px;
  padding: 16px 18px;
  background: transparent;
}

/* Question Group */
.lv-form__group {
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.lv-form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  color: var(--w-text);
  line-height: 1.4;
}

.lv-form__required {
  color: #ef4444;
  font-weight: 700;
}

/* Inputs & Form Controls */
.lv-form__input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--w-text);
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(125, 125, 125, 0.25);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.lv-widget:not(.lv-widget--transparent) .lv-form__input {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.15);
}

.lv-form__input:focus {
  border-color: var(--w-accent) !important;
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.25);
}

.lv-form__input--invalid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18) !important;
}

.lv-form__textarea {
  min-height: 86px;
  resize: vertical;
}

.lv-form__select {
  cursor: pointer;
  appearance: auto;
}

/* Choices (Radio & Checkbox) */
.lv-form__choice-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lv-form__choice-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(125, 125, 125, 0.2);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  user-select: none;
  transition: all 0.15s ease;
  font-size: 14.5px;
  color: var(--w-text);
}

.lv-form__choice-item:hover {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--w-accent);
}

.lv-form__choice-item input[type="radio"],
.lv-form__choice-item input[type="checkbox"] {
  accent-color: var(--w-accent);
  width: 17px;
  height: 17px;
  cursor: pointer;
  margin: 0;
}

/* Error messages */
.lv-form__error {
  color: #ef4444;
  font-size: 12.5px;
  margin-top: 6px;
  font-weight: 500;
}

/* Submit Button */
.lv-form__submit-btn {
  margin-top: 10px;
  width: 100%;
  padding: 14px 22px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #ffffff;
  background: var(--w-accent, #c9a96e);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.lv-form__submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.lv-form__submit-btn:active:not(:disabled) {
  transform: translateY(0);
}

.lv-form__submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Success State */
.lv-form__success {
  text-align: center;
  padding: 36px 20px;
  animation: lv-fadeIn 0.3s ease;
}

@keyframes lv-fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.lv-form__success-icon {
  width: 58px;
  height: 58px;
  line-height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.18);
  color: var(--w-accent, #c9a96e);
  font-size: 28px;
  font-weight: 700;
  border: 2px solid var(--w-accent, #c9a96e);
}

.lv-form__success-msg {
  font-size: 18px;
  font-weight: 600;
  color: var(--w-text);
  line-height: 1.5;
  margin-bottom: 22px;
}

.lv-form__reset-btn {
  background: transparent;
  color: var(--w-text);
  border: 1px solid rgba(125, 125, 125, 0.35);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13.5px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
  opacity: 0.8;
}

.lv-form__reset-btn:hover {
  opacity: 1;
  border-color: var(--w-accent);
  color: var(--w-accent);
}

/* Poll Component */
.lv-form__poll-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lv-form__poll-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(125, 125, 125, 0.2);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.2s ease;
}

.lv-form__poll-item:hover {
  border-color: var(--w-accent);
  background: rgba(201, 169, 110, 0.08);
}

.lv-form__poll-item input[type="radio"] {
  accent-color: var(--w-accent);
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
}

.lv-form__poll-icon {
  font-size: 14px;
  color: var(--w-accent);
  font-weight: bold;
}

.lv-form__poll-label {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--w-text);
  flex-grow: 1;
}

/* Mood Meter Component */
.lv-form__mood-grid {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  max-width: 360px;
}

.lv-form__mood-item {
  position: relative;
  cursor: pointer;
  margin: 0;
}

.lv-form__mood-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.lv-form__mood-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(125, 125, 125, 0.2);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s, border-color 0.2s, box-shadow 0.2s;
  user-select: none;
}

.lv-form__mood-item:hover .lv-form__mood-emoji {
  transform: scale(1.18);
  border-color: var(--w-accent);
}

.lv-form__mood-item input[type="radio"]:checked + .lv-form__mood-emoji {
  transform: scale(1.22);
  border-color: var(--w-accent);
  background: rgba(201, 169, 110, 0.2);
  box-shadow: 0 0 16px rgba(201, 169, 110, 0.35);
}

/* Linear Scale Component */
.lv-form__scale-grid {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  padding: 4px 0;
}

.lv-form__scale-item {
  position: relative;
  cursor: pointer;
  margin: 0;
}

.lv-form__scale-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.lv-form__scale-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(125, 125, 125, 0.2);
  color: var(--w-text);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.15s ease;
  user-select: none;
}

.lv-form__scale-item:hover span {
  border-color: var(--w-accent);
  background: rgba(201, 169, 110, 0.1);
  transform: translateY(-2px);
}

.lv-form__scale-item input[type="radio"]:checked + span {
  background: var(--w-accent);
  color: #ffffff;
  border-color: var(--w-accent);
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.3);
  transform: translateY(-2px);
}

/* Star Rating Component */
.lv-form__rating-grid {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 6px 0;
}

.lv-form__star-btn {
  background: none;
  border: none;
  font-size: 32px;
  color: rgba(125, 125, 125, 0.35);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.15s, transform 0.15s;
  user-select: none;
}

.lv-form__star-btn:hover,
.lv-form__star-btn--active {
  color: var(--w-accent, #c9a96e);
}

.lv-form__star-btn:hover {
  transform: scale(1.2);
}
