    /* ════════════════════════════
       FLOATING VINYL  —  inside card top-right
       Wrapper is fixed, disc spins inside, slash overlay on pause
    ════════════════════════════ */
    /* ── Floating icons container (vinyl + RSVP) ── */
    .floating-icons-wrapper {
      position: sticky;
      top: 14px;
      float: right;
      margin-right: 14px;
      margin-top: 18px;
      margin-bottom: -92px;   /* compensate: 38+10+38+6 so content doesn't shift */
      z-index: 100;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .vinyl-wrapper {
      width: 38px;
      height: 38px;
      cursor: pointer;
      border-radius: 50%;
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
      transition: box-shadow 0.3s ease;
      position: relative;
    }

    .vinyl-wrapper:hover {
      box-shadow: 0 4px 18px rgba(0,0,0,0.4);
    }

    /* ── RSVP icon ── */
    .rsvp-wrapper {
      width: 38px;
      height: 38px;
      cursor: pointer;
      border-radius: 50%;
      background: linear-gradient(135deg, #8b1a2b 0%, #6e0d18 100%);
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: box-shadow 0.3s ease;
      position: relative;
      animation: rsvp-attention 2.5s ease-in-out infinite;
    }
    .rsvp-wrapper:hover {
      box-shadow: 0 4px 18px rgba(0,0,0,0.4);
      animation: none;
      transform: scale(1.08);
    }
    .rsvp-wrapper svg {
      width: 20px;
      height: 20px;
    }

    @keyframes rsvp-attention {
      0%, 100% { transform: scale(1); box-shadow: 0 2px 10px rgba(0,0,0,0.3); }
      10% { transform: scale(1.15); box-shadow: 0 4px 18px rgba(139, 26, 43, 0.5); }
      20% { transform: scale(0.95); }
      30% { transform: scale(1.08); box-shadow: 0 3px 14px rgba(139, 26, 43, 0.4); }
      40% { transform: scale(1); }
    }

    .floating-vinyl {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      overflow: hidden;
    }

    .floating-vinyl svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    /* Spinning */
    .floating-vinyl.playing {
      animation: vinyl-spin 3s linear infinite;
    }

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

    /* Diagonal slash overlay — shown when paused */
    .vinyl-slash {
      position: absolute;
      inset: 0;
      border-radius: 50%;     /* match vinyl circle shape */
      overflow: hidden;        /* clip slash line inside circle */
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .vinyl-wrapper.paused .vinyl-slash {
      opacity: 1;
    }

    .vinyl-slash::after {
      content: '';
      position: absolute;
      top: 50%;
      left: -10%;
      width: 120%;
      height: 2.5px;
      background: rgba(255,255,255,0.9);
      transform: translateY(-50%) rotate(-45deg);
      transform-origin: center;
      border-radius: 2px;     /* soft rounded ends */
      box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    }

    /* ════════════════════════════
       WISHES BAR — floating bottom
    ════════════════════════════ */
    .wishes-bar {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 468px;
      max-width: 80vw;
      z-index: 9990;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.6s ease;
    }
    .wishes-bar.is-visible { opacity: 1; }
    /* at-bottom: whole bar at full strength */
    .wishes-bar.at-bottom { opacity: 1; }
    .wishes-bar > * { pointer-events: auto; }

    /* ── Ticker toggle button (left) ── */
    .wishes-ticker-toggle {
      width: 36px;
      height: 36px;
      flex-shrink: 0;
      border: none;
      border-radius: 50%;
      background: rgba(110, 13, 24, 0.55);
      color: #f0e0c8;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.25s, box-shadow 0.3s, opacity 0.35s;
      opacity: 0.6;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    }
    .wishes-ticker-toggle:hover { opacity: 0.8; }
    .wishes-ticker-toggle.is-active { opacity: 0.75; background: rgba(110, 13, 24, 0.65); }
    /* Full opacity when at bottom boundary */
    .wishes-bar.at-bottom .wishes-ticker-toggle { opacity: 0.85; background: rgba(110, 13, 24, 0.7); }
    /* Full opacity when typing — must come last to always win */
    .wishes-bar.is-typing .wishes-ticker-toggle { opacity: 1 !important; background: rgba(110, 13, 24, 0.8) !important; box-shadow: 0 3px 12px rgba(110, 13, 24, 0.3) !important; }
    .wishes-ticker-toggle svg { width: 18px; height: 18px; }

    /* ── Input row ── */
    .wishes-input-row {
      flex: 1;
      display: flex;
      gap: 6px;
      align-items: center;
      max-width: 30%;
      transition: max-width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .wishes-bar.is-typing .wishes-input-row {
      max-width: 100%;
    }
    .wishes-input-row input {
      flex: 1;
      padding: 7px 13px;
      border: 1px solid rgba(180, 170, 158, 0.35);
      border-radius: 20px;
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      color: #1a1a1a;
      background: rgba(255, 255, 255, 0.72);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      outline: none;
      opacity: 0.7;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
      transition: opacity 0.35s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    }
    .wishes-input-row input:focus {
      opacity: 1;
      border-color: rgba(184, 48, 72, 0.45);
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 8px 32px rgba(0, 0, 0, 0.05);
    }
    /* Full opacity at bottom boundary */
    .wishes-bar.at-bottom .wishes-input-row input { opacity: 0.88; background: rgba(255,255,255,0.82); }
    .wishes-input-row input::placeholder { color: #bbb; font-size: 11px; }

    /* Send button — hidden by default, appears when typing */
    .wishes-send-btn {
      width: 0;
      height: 36px;
      flex-shrink: 0;
      border: none;
      border-radius: 50%;
      background: linear-gradient(145deg, #9b2030 0%, #6e0d18 100%);
      color: #f0e0c8;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      overflow: hidden;
      padding: 0;
      transition: width 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease, transform 0.15s, box-shadow 0.3s;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
    /* Show when typing */
    .wishes-bar.is-typing .wishes-send-btn {
      width: 36px;
      opacity: 1;
      box-shadow: 0 3px 10px rgba(110, 13, 24, 0.28), 0 6px 20px rgba(0, 0, 0, 0.08);
    }
    .wishes-send-btn:hover { opacity: 0.85; }
    .wishes-send-btn:active { transform: scale(0.90); }
    .wishes-send-btn:disabled { opacity: 0.2; cursor: not-allowed; }
    .wishes-send-btn svg { width: 18px; height: 18px; min-width: 18px; }

    /* ── Suggestion chips (above input, shown on focus) ── */
    .wishes-suggestions {
      position: absolute;
      bottom: 44px;
      left: 40px;
      right: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      padding: 0;
      opacity: 0;
      transform: translateY(6px);
      pointer-events: none;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .wishes-bar.is-typing .wishes-suggestions {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .wishes-chip {
      display: inline-block;
      padding: 5px 12px;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(184, 48, 72, 0.15);
      border-radius: 16px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 12px;
      font-style: italic;
      color: #6e0d18;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
      white-space: nowrap;
      box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
    }
    .wishes-chip:hover {
      background: rgba(255, 255, 255, 0.92);
      border-color: rgba(184, 48, 72, 0.35);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    }
    .wishes-chip:active {
      transform: scale(0.96);
    }

    /* ── Ticker panel (left, floats above toggle) — always faded ── */
    .wishes-ticker {
      position: absolute;
      bottom: 44px;
      left: -46px;
      width: 286px;
      max-height: 260px;
      background: rgba(250, 249, 247, 0.5);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 14px;
      border: 1px solid rgba(0, 0, 0, 0.04);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      overflow: hidden;
      opacity: 0;
      transform: translateY(10px);
      pointer-events: none;
      transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .wishes-ticker.is-open {
      opacity: 0.65;
      transform: translateY(0);
      pointer-events: auto;
    }
    .wishes-ticker:hover {
      opacity: 0.85;
    }
    .wishes-ticker-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 12px 7px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    .wishes-ticker-title {
      font-family: 'Dancing Script', cursive;
      font-size: 16px;
      font-weight: 600;
      color: #6e0d18;
    }
    .wishes-ticker-close {
      background: none;
      border: none;
      color: #999;
      cursor: pointer;
      padding: 2px 4px;
      font-size: 16px;
      line-height: 1;
      transition: color 0.2s;
    }
    .wishes-ticker-close:hover { color: #333; }
    .wishes-ticker-track {
      padding: 6px 12px;
      max-height: 210px;
      overflow-y: auto;
      overflow-x: hidden;
    }
    .wishes-ticker-track::-webkit-scrollbar { width: 2px; }
    .wishes-ticker-track::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.10); border-radius: 2px; }
    .wishes-ticker-item {
      padding: 6px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }
    .wishes-ticker-item:last-child { border-bottom: none; }
    .wticker-name {
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      font-weight: 600;
      color: #6e0d18;
      display: block;
      margin-bottom: 1px;
    }
    .wticker-msg {
      font-family: 'Cormorant Garamond', serif;
      font-size: 13px;
      font-style: italic;
      color: #444;
      line-height: 1.35;
    }

    /* ── Name popup (mini modal after clicking send) ── */
    .wishes-name-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.35);
      z-index: 99997;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
      padding: 20px;
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(3px);
    }
    .wishes-name-overlay.is-open {
      opacity: 1;
      visibility: visible;
    }
    .wishes-name-modal {
      background: #faf9f7;
      border-radius: 14px;
      padding: 28px 24px 24px;
      max-width: 320px;
      width: 100%;
      position: relative;
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
      transform: translateY(16px) scale(0.95);
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .wishes-name-overlay.is-open .wishes-name-modal {
      transform: translateY(0) scale(1);
    }
    .wishes-name-modal-close {
      position: absolute;
      top: 8px;
      left: 10px;
      background: none;
      border: none;
      font-size: 22px;
      color: #1a1a1a;
      cursor: pointer;
      opacity: 0.4;
      transition: opacity 0.2s;
      padding: 2px 6px;
      line-height: 1;
    }
    .wishes-name-modal-close:hover { opacity: 1; }
    .wishes-name-modal h3 {
      font-family: 'Dancing Script', cursive;
      font-size: 22px;
      font-weight: 600;
      color: #1a1a1a;
      text-align: center;
      margin-bottom: 6px;
    }
    .wishes-name-modal p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 14px;
      font-style: italic;
      color: #666;
      text-align: center;
      margin-bottom: 16px;
      line-height: 1.5;
    }
    .wishes-name-modal input {
      width: 100%;
      padding: 12px 14px;
      border: 1.5px solid #d4c8bc;
      border-radius: 10px;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      color: #1a1a1a;
      background: #fff;
      outline: none;
      transition: border-color 0.25s, box-shadow 0.25s;
      margin-bottom: 12px;
    }
    .wishes-name-modal input:focus {
      border-color: #b83048;
      box-shadow: 0 0 0 3px rgba(184, 48, 72, 0.1);
    }
    .wishes-name-modal button[type="submit"] {
      width: 100%;
      padding: 12px;
      background: linear-gradient(135deg, #8b1a2b 0%, #6e0d18 100%);
      color: #f0e0c8;
      border: none;
      border-radius: 10px;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.04em;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.1s;
    }
    .wishes-name-modal button[type="submit"]:hover { opacity: 0.9; }
    .wishes-name-modal button[type="submit"]:active { transform: scale(0.98); }
    .wishes-name-modal button[type="submit"]:disabled { opacity: 0.5; cursor: not-allowed; }
    .wishes-name-feedback {
      text-align: center;
      margin-top: 10px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 14px;
      font-style: italic;
    }
    .wishes-name-feedback.success { color: #2d8a4e; }
    .wishes-name-feedback.error { color: #c0302e; }

    /* ════════════════════════════
       RSVP MODAL
    ════════════════════════════ */
    .rsvp-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      z-index: 99998;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.35s ease, visibility 0.35s ease;
      padding: 20px;
      -webkit-backdrop-filter: blur(4px);
      backdrop-filter: blur(4px);
    }
    .rsvp-overlay.is-open {
      opacity: 1;
      visibility: visible;
    }
    .rsvp-modal {
      background: #faf9f7;
      border-radius: 16px;
      padding: 36px 28px 32px;
      max-width: 360px;
      width: 100%;
      position: relative;
      box-shadow: 0 20px 60px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.1);
      transform: translateY(24px) scale(0.94);
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .rsvp-overlay.is-open .rsvp-modal {
      transform: translateY(0) scale(1);
    }
    .rsvp-close {
      position: absolute;
      top: 10px;
      left: 12px;
      background: none;
      border: none;
      font-size: 26px;
      color: #1a1a1a;
      cursor: pointer;
      line-height: 1;
      padding: 4px 8px;
      opacity: 0.5;
      transition: opacity 0.2s ease;
    }
    .rsvp-close:hover { opacity: 1; }
    .rsvp-header {
      text-align: center;
      margin-bottom: 22px;
    }
    .rsvp-heart-icon {
      width: 36px;
      height: 36px;
      margin: 0 auto 10px;
    }
    .rsvp-title {
      font-family: 'Dancing Script', cursive;
      font-size: 26px;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 8px;
    }
    .rsvp-desc {
      font-family: 'Cormorant Garamond', serif;
      font-size: 15px;
      font-style: italic;
      color: #666;
      line-height: 1.6;
    }
    .rsvp-form {
      display: flex;
      flex-direction: column;
    }
    .rsvp-input {
      width: 100%;
      padding: 13px 16px;
      border: 1.5px solid #d4c8bc;
      border-radius: 10px;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      color: #1a1a1a;
      background: #fff;
      outline: none;
      transition: border-color 0.25s ease, box-shadow 0.25s ease;
      margin-bottom: 14px;
    }
    .rsvp-input:focus {
      border-color: #b83048;
      box-shadow: 0 0 0 3px rgba(184, 48, 72, 0.1);
    }
    .rsvp-input::placeholder {
      color: #aaa;
    }
    .rsvp-submit {
      width: 100%;
      padding: 13px;
      background: linear-gradient(135deg, #8b1a2b 0%, #6e0d18 100%);
      color: #f0e0c8;
      border: none;
      border-radius: 10px;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.06em;
      cursor: pointer;
      transition: opacity 0.2s ease, transform 0.1s ease;
    }
    .rsvp-submit:hover { opacity: 0.9; }
    .rsvp-submit:active { transform: scale(0.98); }
    .rsvp-submit:disabled {
      opacity: 0.55;
      cursor: not-allowed;
    }
    .rsvp-feedback {
      text-align: center;
      margin-top: 14px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 15px;
      font-style: italic;
      line-height: 1.5;
    }
    .rsvp-feedback.success { color: #2d8a4e; }
    .rsvp-feedback.error   { color: #c0302e; }
