/* Create Song Form Styles - Romantic Rose Theme */

/* ============================================
   Page Section Wrapper
   ============================================ */
.create-song-section {
    background: var(--stone-50);
    min-height: 100vh;
    padding: 2rem 0 4rem 0;
    position: relative;
}

.create-song-section > .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   Container & Header
   ============================================ */
.create-song-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 80px);
    position: relative;
}

/* Close Button */
.create-song-close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--stone-500);
    text-decoration: none;
    transition: color 0.2s ease;
    z-index: 1000;
}

.create-song-close:hover {
    color: var(--stone-700);
}

.create-song-close svg {
    width: 24px;
    height: 24px;
    stroke-width: 3.5;
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-header h1 {
    font-size: 1rem;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    color: var(--stone-800);
    margin-bottom: 0.75rem;
}

.step-indicator {
    color: var(--stone-600);
    padding: 0.75rem 1.5rem;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    font-family: 'DM Sans', sans-serif;
    background: var(--stone-100);
    border-radius: 20px;
    border: 2px solid var(--stone-200);
}

/* Step Checkboxes */
.step-checkboxes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
}

.step-checkbox {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--stone-300);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.step-checkbox .checkbox-inner {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
}

.step-checkbox.active {
    border-color: var(--rose-500);
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.15);
}

.step-checkbox.active .checkbox-inner {
    background: var(--rose-500);
}

.step-checkbox.completed {
    border-color: var(--rose-500);
    background: var(--rose-500);
}

.step-checkbox.completed .checkbox-inner {
    width: 10px;
    height: 6px;
    border-radius: 0;
    background: transparent;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    margin-bottom: 2px;
}

/* ============================================
   Form Container
   ============================================ */
.song-form {
    border-radius: 16px;
    overflow: hidden;
}

.form-step {
    display: none;
    padding: 2rem 3rem 2.5rem 3rem;
    max-width: 700px;
    margin: 0 auto;
}

.form-step.active {
    display: block;
}

.form-step h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--stone-900);
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--stone-200);
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -2px;
}

.step-description {
    text-align: center;
    color: var(--stone-600);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-family: 'DM Sans', sans-serif;
}

.suggestions {
    text-align: center;
    color: var(--stone-600);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
    padding: 1rem;
    background: var(--stone-50);
    border-radius: 8px;
    border: 1px solid var(--stone-200);
}

/* ============================================
   Form Groups & Labels
   ============================================ */
.form-group {
    margin-bottom: 1.25rem;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--stone-800);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-family: 'DM Sans', sans-serif;
}

.field-description {
    font-size: 0.9rem;
    color: var(--stone-500);
    margin-bottom: 0.5rem;
    font-weight: normal;
}

/* ============================================
   Input Fields - Romantic Rose Style
   ============================================ */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--stone-200);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'DM Sans', sans-serif;
    background: white;
    color: var(--stone-800);
    position: relative;
}

.modern-input,
.modern-textarea {
    border: 2px solid var(--stone-200);
    background: white;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.06s ease;
    box-shadow: var(--shadow-sm);
    color: var(--stone-800);
}

.modern-input:hover,
.modern-textarea:hover {
    border-color: var(--rose-300);
    box-shadow: var(--shadow-md);
}

.modern-input:focus,
.modern-textarea:focus {
    outline: none;
    border-color: var(--rose-500);
    box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12), var(--shadow-lg);
    transform: translateY(-1px);
}

.modern-input::placeholder,
.modern-textarea::placeholder {
    color: var(--stone-400);
}

/* Modern Select Dropdown */
.modern-select {
    width: 100%;
    border: 2px solid var(--stone-200);
    background: white;
    border-radius: 8px;
    padding: 1rem 2.5rem 1rem 1.25rem;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.06s ease;
    box-shadow: var(--shadow-sm);
    color: var(--stone-800);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2378716c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
}

.modern-select:hover {
    border-color: var(--rose-300);
    box-shadow: var(--shadow-md);
}

.modern-select:focus {
    outline: none;
    border-color: var(--rose-500);
    box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12), var(--shadow-lg);
    transform: translateY(-1px);
}

.modern-select option {
    padding: 0.75rem 1rem;
    font-family: 'DM Sans', sans-serif;
}

.modern-select optgroup {
    font-weight: 600;
    color: var(--stone-500);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0;
}

.modern-select option:disabled {
    color: var(--stone-400);
}

/* Grey placeholder text when no option selected */
.modern-select:invalid {
    color: var(--stone-400);
}

.modern-select:invalid option:not(:disabled) {
    color: var(--stone-800);
}

/* Relationship other field */
.relationship-other-field {
    margin-top: 0;
}

.form-group input[type="text"]:hover,
.form-group input[type="email"]:hover,
.form-group textarea:hover {
    border-color: var(--rose-300);
    background: white;
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--rose-600);
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.15);
}

.form-group input.success,
.form-group textarea.success {
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rose-500);
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.15);
    background: white;
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   Validation Messages
   ============================================ */
.validation-message-container {
    height: 24px;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.field-error {
    color: var(--rose-600);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    opacity: 0;
    animation: slideInUp 0.3s ease forwards;
}

.field-success {
    color: #22c55e;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    opacity: 0;
    animation: slideInUp 0.3s ease forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.validation-icon {
    font-size: 0.75rem;
}

.selection-error {
    color: var(--rose-600);
    font-size: 0.875rem;
    height: 24px;
    margin-top: 0.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    opacity: 0;
    animation: slideInUp 0.3s ease forwards;
}

/* ============================================
   Checkbox Styles - Romantic Rose
   ============================================ */
.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: var(--stone-600);
    padding: 0.75rem 0;
    user-select: none;
    position: relative;
    font-family: 'DM Sans', sans-serif;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    background: white;
    border: 2px solid var(--stone-300);
    border-radius: 4px;
    margin-right: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-container:hover .checkmark {
    border-color: var(--rose-500);
    transform: scale(1.05);
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background-color: var(--rose-500);
    border-color: var(--rose-500);
}

.checkbox-container input[type="checkbox"]:checked + .checkmark:after {
    content: "";
    position: absolute;
    display: block;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input[type="checkbox"]:focus + .checkmark {
    box-shadow: 0 0 0 2px rgba(244, 63, 94, 0.2);
}

/* ============================================
   Radio Button Styles - Romantic Rose
   ============================================ */

/* Native radio inputs (not wrapped in custom container) */
.form-group input[type="radio"],
.radio-group input[type="radio"]:not(.radio-container input) {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid var(--stone-300);
    border-radius: 50%;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.form-group input[type="radio"]:hover,
.radio-group input[type="radio"]:not(.radio-container input):hover {
    border-color: var(--rose-500);
    box-shadow: var(--shadow-sm);
}

.form-group input[type="radio"]:checked,
.radio-group input[type="radio"]:not(.radio-container input):checked {
    border-color: var(--rose-500);
    background: white;
}

.form-group input[type="radio"]:checked::after,
.radio-group input[type="radio"]:not(.radio-container input):checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--rose-500);
    border-radius: 50%;
}

.form-group input[type="radio"]:focus,
.radio-group input[type="radio"]:not(.radio-container input):focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.2);
}

.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.radio-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: var(--stone-600);
    padding: 0.75rem 0;
    user-select: none;
    position: relative;
    font-family: 'DM Sans', sans-serif;
}

.radio-container input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radio-checkmark {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: white;
    border: 2px solid var(--stone-300);
    border-radius: 50%;
    margin-right: 1rem;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.radio-container:hover .radio-checkmark {
    border-color: var(--rose-500);
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.radio-container input[type="radio"]:checked + .radio-checkmark {
    background: white;
    border-color: var(--rose-500);
    box-shadow: 0 2px 8px rgba(244, 63, 94, 0.2);
}

.radio-container input[type="radio"]:checked + .radio-checkmark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--rose-500);
    border-radius: 50%;
}

.radio-container input[type="radio"]:focus + .radio-checkmark {
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.2);
}

/* ============================================
   Selection Buttons - Romantic Rose Tags
   ============================================ */
.language-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.language-btn {
    padding: 1rem;
    border: 2px solid var(--stone-200);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--stone-700);
    font-size: 1.1rem;
    font-family: 'DM Sans', sans-serif;
}

.language-btn:hover {
    border-color: var(--rose-400);
    color: var(--rose-500);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.language-btn.selected {
    background: var(--gradient-primary);
    border-color: var(--rose-500);
    color: white;
    box-shadow: var(--shadow-lg);
}

.language-btn.error {
    border-color: var(--rose-600);
    background: rgba(225, 29, 72, 0.1);
}

/* Genre Grid - Romantic Rose Tags */
.genre-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.genre-btn {
    padding: 0.875rem 1rem;
    border: 2px solid var(--rose-200);
    background: var(--rose-50);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--stone-700);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
}

.genre-btn:hover {
    border-color: var(--rose-400);
    background: var(--rose-100);
    color: var(--rose-600);
    transform: scale(1.03);
}

.genre-btn.selected {
    background: var(--gradient-primary);
    border-color: var(--rose-600);
    color: white;
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.25);
}

.genre-btn.error {
    border-color: var(--rose-600);
    background: rgba(225, 29, 72, 0.1);
}

.genre-btn.genre-hidden {
    display: none;
}

.show-more-genres-btn {
    padding: 0.875rem 1rem;
    border: 2px dashed var(--stone-300);
    background: var(--stone-50);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--stone-500);
    text-align: center;
    font-family: 'DM Sans', sans-serif;
}

.show-more-genres-btn:hover {
    border-color: var(--rose-400);
    color: var(--rose-500);
    background: var(--rose-50);
}

.show-more-genres-btn.hidden {
    display: none;
}

/* Subgenre Group Label */
.subgenre-group > label {
    display: block;
    font-weight: 600;
    color: var(--stone-800);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
}

/* Subgenre Grid - Full width stacked cards */
.subgenre-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.subgenre-option {
    display: flex;
    width: 100%;
}

.subgenre-btn {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 1rem 1.25rem;
    border: 1px solid var(--stone-200);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: left;
}

.subgenre-btn strong {
    display: block;
    color: var(--stone-800);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
}

.subgenre-btn p {
    color: var(--stone-500);
    font-size: 0.85rem;
    line-height: 1.4;
    font-family: 'DM Sans', sans-serif;
    margin: 0;
}

.subgenre-btn:hover {
    border-color: var(--stone-300);
    background: var(--stone-50);
}

.subgenre-btn.selected {
    border-color: var(--rose-500);
    background: var(--rose-500);
    color: white;
}

.subgenre-btn.selected strong,
.subgenre-btn.selected p {
    color: white;
}

/* Style Grid - Romantic Rose Tags */
.style-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.style-btn {
    padding: 0.875rem 1rem;
    border: 2px solid var(--rose-200);
    background: var(--rose-50);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--stone-700);
    font-family: 'DM Sans', sans-serif;
}

.style-btn:hover {
    border-color: var(--rose-400);
    background: var(--rose-100);
    color: var(--rose-600);
    transform: scale(1.03);
}

.style-btn.selected {
    background: var(--gradient-primary);
    border-color: var(--rose-600);
    color: white;
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.25);
}

.style-btn.error {
    border-color: var(--rose-600);
    background: rgba(225, 29, 72, 0.1);
}

/* Vocalist Grid - Romantic Rose Tags */
.vocalist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.vocalist-btn {
    padding: 0.875rem 1rem;
    border: 2px solid var(--rose-200);
    background: var(--rose-50);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--stone-700);
    font-family: 'DM Sans', sans-serif;
}

.vocalist-btn:hover {
    border-color: var(--rose-400);
    background: var(--rose-100);
    color: var(--rose-600);
    transform: scale(1.03);
}

.vocalist-btn.selected {
    background: var(--gradient-primary);
    border-color: var(--rose-600);
    color: white;
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.25);
}

.vocalist-btn.error {
    border-color: var(--rose-600);
    background: rgba(225, 29, 72, 0.1);
}

/* Occasion Grid - Romantic Rose Chips */
.occasion-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.occasion-btn {
    padding: 0.75rem 1.25rem;
    border: 2px solid var(--stone-200);
    background: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--stone-700);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    white-space: nowrap;
}

.occasion-btn:hover {
    border-color: var(--stone-400);
    background: var(--stone-50);
    transform: scale(1.03);
}

.occasion-btn.selected {
    background: var(--stone-800);
    border-color: var(--stone-800);
    color: white;
    box-shadow: 0 4px 12px rgba(41, 37, 36, 0.25);
}

.occasion-btn.error {
    border-color: var(--rose-600);
    background: rgba(225, 29, 72, 0.1);
}

/* Other occasion input field */
.occasion-other-field {
    max-width: 400px;
    margin: 1rem auto 0;
}

/* Toggle Switch - Modern iOS Style */
.toggle-group {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.toggle-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem 1.5rem;
    background: var(--stone-50);
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 320px;
}

.toggle-container:hover {
    background: var(--stone-100);
}

.toggle-label {
    font-weight: 500;
    color: var(--stone-700);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
}

.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--stone-300);
    transition: all 0.3s ease;
    border-radius: 28px;
}

.toggle-slider::before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--rose-500);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(24px);
}

.toggle-switch input:focus + .toggle-slider {
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.2);
}

.help-text {
    font-size: 0.9rem;
    color: var(--stone-500);
    margin-top: 1rem;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
}

/* Details Step - Topic Selection */
.details-divider {
    height: 1px;
    background: var(--stone-200);
    margin: 2rem 0;
}

.details-topics-section {
    text-align: center;
}

.details-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--stone-800);
    margin-bottom: 0.5rem;
}

.details-section-subtitle {
    font-size: 0.95rem;
    color: var(--stone-500);
    margin-bottom: 1.5rem;
    font-family: 'DM Sans', sans-serif;
}

.details-topic-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.detail-topic-btn {
    padding: 0.625rem 1.125rem;
    border: 2px solid var(--stone-200);
    background: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--stone-700);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    white-space: nowrap;
}

.detail-topic-btn:hover {
    border-color: var(--stone-400);
    background: var(--stone-50);
    transform: scale(1.03);
}

.detail-topic-btn.selected {
    background: var(--stone-800);
    border-color: var(--stone-800);
    color: white;
    box-shadow: 0 4px 12px rgba(41, 37, 36, 0.25);
}

/* Active Topic Textboxes Container */
.active-topics-container {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1rem;
}

.active-topic-item {
    background: white;
    border-radius: 12px;
    padding: 0;
}

.active-topic-label {
    display: block;
    font-weight: 600;
    color: var(--stone-800);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.active-topic-textarea {
    width: 100%;
    border: 1px solid var(--stone-200);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    resize: vertical;
    min-height: 80px;
    font-family: 'DM Sans', sans-serif;
    color: var(--stone-700);
    transition: border-color 0.2s ease;
}

.active-topic-textarea:focus {
    outline: none;
    border-color: var(--rose-400);
}

.active-topic-textarea::placeholder {
    color: var(--stone-400);
}

.active-topic-remove {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: none;
    border: none;
    color: var(--stone-400);
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
    font-family: 'DM Sans', sans-serif;
}

.active-topic-remove:hover {
    color: var(--rose-500);
}

.active-topic-remove svg {
    width: 14px;
    height: 14px;
}

/* ============================================
   Guide Button - Romantic Rose Style
   ============================================ */
.guide-btn {
    background: linear-gradient(135deg, var(--rose-400) 0%, var(--rose-500) 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 2rem auto 0;
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 4px 0 var(--rose-600), var(--shadow-md);
}

.guide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--rose-600), var(--shadow-lg);
    background: linear-gradient(135deg, var(--rose-500) 0%, var(--rose-600) 100%);
}

/* ============================================
   Navigation Buttons - Romantic Rose Style
   ============================================ */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 0;
    gap: 1rem;
}

.modern-form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
    gap: 1rem;
}

/* Previous button - subtle white/gray pill style */
.btn-prev,
.modern-btn-prev {
    background: white;
    border: 1px solid var(--stone-200);
    color: var(--stone-500);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.btn-prev:hover,
.modern-btn-prev:hover {
    border-color: var(--stone-300);
    color: var(--stone-600);
    background: var(--stone-50);
}

/* Next button - rose pill style */
.btn-next,
.btn-review,
.modern-btn-cart {
    background: var(--rose-500);
    color: white;
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'DM Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(244, 63, 94, 0.25);
}

/* Arrow icon for next buttons */
.modern-btn-cart::after {
    content: '→';
    font-size: 1rem;
    margin-left: 0.125rem;
    transition: transform 0.2s ease;
}

.modern-btn-cart:hover::after {
    transform: translateX(3px);
}

.btn-next:hover,
.btn-review:hover,
.modern-btn-cart:hover {
    background: var(--rose-600);
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.35);
    transform: translateY(-1px);
}

.btn-next:active,
.btn-review:active,
.modern-btn-cart:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(244, 63, 94, 0.25);
}

/* Single button navigation */
.form-navigation .btn-next:only-child,
.form-navigation .modern-btn-cart:only-child {
    margin-left: auto;
}

/* ============================================
   Review Section - Romantic Rose Style
   ============================================ */
.modern-review-container {
    margin: 0 auto;
}

.modern-review-subtitle {
    text-align: center;
    color: var(--stone-600);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
}

.modern-review-section {
    background: var(--stone-50);
    border: 1px solid var(--stone-200);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.modern-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: white;
    border-bottom: 1px solid var(--stone-200);
}

.modern-review-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--stone-800);
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.modern-edit-btn {
    background: none;
    border: 2px solid var(--rose-500);
    color: var(--rose-500);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.modern-edit-btn:hover {
    border-color: var(--rose-500);
    color: white;
    background: var(--rose-500);
}

.modern-review-content {
    padding: 1.5rem;
}

.modern-review-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.modern-review-item:last-child {
    margin-bottom: 0;
}

.modern-review-full {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
}

.modern-review-label {
    color: var(--stone-500);
    font-size: 0.875rem;
    font-weight: 600;
    min-width: 140px;
    flex-shrink: 0;
    font-family: 'DM Sans', sans-serif;
}

.modern-review-value {
    color: var(--stone-800);
    font-size: 0.875rem;
    flex: 1;
    word-break: break-word;
    font-family: 'DM Sans', sans-serif;
}

.modern-review-text {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--stone-200);
    line-height: 1.5;
    font-size: 0.875rem;
    color: var(--stone-700);
    white-space: pre-wrap;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
}

.modern-correct-badge {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
    flex-shrink: 0;
    font-family: 'DM Sans', sans-serif;
}

/* ============================================
   Order Options - Step 7 Romantic Rose Style
   ============================================ */
.modern-order-container {
    max-width: 700px;
    margin: 0 auto;
}

.modern-option-section {
    margin-bottom: 3rem;
}

.modern-option-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--stone-800);
    margin-bottom: 1rem;
    text-align: left;
    font-family: 'Playfair Display', serif;
}

/* Song Length Cards - Romantic Rose Style */
.modern-length-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.modern-length-card {
    position: relative;
    border-radius: 12px;
    border: 2px solid var(--stone-200);
    background: var(--stone-50);
    cursor: pointer;
    transition: all 0.2s ease;
}

.modern-length-card input[type="radio"] {
    display: none;
}

.modern-card-label {
    display: block;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.modern-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--stone-800);
    margin-bottom: 0.25rem;
    font-family: 'Playfair Display', serif;
}

.modern-card-subtitle {
    font-size: 0.875rem;
    color: var(--stone-500);
    margin-bottom: 0.125rem;
    font-family: 'DM Sans', sans-serif;
}

.modern-card-detail {
    font-size: 0.875rem;
    color: var(--stone-500);
    font-family: 'DM Sans', sans-serif;
}

.modern-recommended {
    background: linear-gradient(135deg, var(--rose-100) 0%, var(--rose-50) 100%);
    border-color: var(--rose-300);
    color: var(--stone-800);
}

.modern-recommended .modern-card-title,
.modern-recommended .modern-card-subtitle,
.modern-recommended .modern-card-detail {
    color: var(--stone-800);
}

.modern-crown {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: var(--amber-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 2px solid var(--amber-500);
}

.modern-price-tag {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: rgba(0, 0, 0, 0.05);
    color: var(--stone-700);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--stone-200);
    font-family: 'DM Sans', sans-serif;
}

.modern-vaak-gekozen {
    position: absolute;
    top: -24px;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 12px;
    font-weight: 700;
    background: var(--gradient-primary);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 13px;
    min-width: 135px;
    font-family: 'DM Sans', sans-serif;
    box-shadow: var(--shadow-sm);
}

.modern-selected .modern-price-tag {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.modern-recommended .modern-price-tag {
    background: rgba(244, 63, 94, 0.1);
    color: var(--rose-600);
    border-color: var(--rose-200);
}

.modern-length-card:hover {
    border-color: var(--rose-400);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.modern-length-card.modern-selected:not(.modern-recommended) {
    background: var(--gradient-primary);
    border-color: var(--rose-600);
    color: white;
}

.modern-length-card.modern-selected:not(.modern-recommended) .modern-card-title,
.modern-length-card.modern-selected:not(.modern-recommended) .modern-card-subtitle,
.modern-length-card.modern-selected:not(.modern-recommended) .modern-card-detail {
    color: white;
}

/* White card styling for when kort is selected */
.modern-white-card {
    background: var(--stone-50) !important;
    border-color: var(--stone-200) !important;
    color: var(--stone-800) !important;
}

.modern-white-card .modern-card-title,
.modern-white-card .modern-card-subtitle,
.modern-white-card .modern-card-detail {
    color: var(--stone-800) !important;
}

.modern-white-card .modern-price-tag {
    background: rgba(0, 0, 0, 0.05) !important;
    color: var(--stone-700) !important;
    border-color: var(--stone-200) !important;
}

/* Delivery Cards - Romantic Rose Style */
.modern-delivery-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.modern-delivery-card {
    position: relative;
    border-radius: 12px;
    border: 2px solid var(--stone-200);
    background: var(--stone-50);
    cursor: pointer;
    transition: all 0.2s ease;
}

.modern-delivery-card input[type="radio"] {
    display: none;
}

.modern-delivery-card .modern-card-label {
    padding: 1.25rem;
}

.modern-delivery-date {
    font-size: 0.75rem;
    color: var(--stone-500);
    line-height: 1.2;
    margin-top: 0.25rem;
    font-family: 'DM Sans', sans-serif;
}

.modern-selected {
    background: var(--gradient-primary);
    border-color: var(--rose-600);
    color: white;
}

.modern-selected .modern-card-title,
.modern-selected .modern-delivery-date {
    color: white;
}

.modern-star {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    background: var(--amber-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    border: 2px solid var(--amber-500);
}

.modern-delivery-card:hover {
    border-color: var(--rose-400);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.modern-delivery-card.modern-selected:not(.modern-recommended) {
    background: var(--gradient-primary);
    border-color: var(--rose-600);
    color: white;
}

.modern-delivery-card.modern-selected:not(.modern-recommended) .modern-card-title,
.modern-delivery-card.modern-selected:not(.modern-recommended) .modern-delivery-date {
    color: white;
}

/* Upgrade and Delivery Notes - Romantic Rose Style */
.modern-upgrade-note,
.modern-delivery-note {
    background: white;
    border: 1px solid var(--stone-200);
    border-radius: 12px;
    padding: 1.25rem;
    font-size: 0.875rem;
    box-shadow: var(--shadow-sm);
}

.modern-upgrade-note strong,
.modern-delivery-note strong {
    color: var(--stone-800);
    display: block;
    margin-bottom: 0.25rem;
    font-family: 'Playfair Display', serif;
}

.modern-upgrade-note p,
.modern-delivery-note p {
    color: var(--stone-600);
    margin: 0;
    line-height: 1.5;
    font-family: 'DM Sans', sans-serif;
}

/* Add-on Items - Romantic Rose Style */
.modern-addon-item {
    display: flex;
    align-items: flex-start;
    background: var(--stone-50);
    border: 2px solid var(--stone-200);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
}

.modern-addon-item:hover {
    border-color: var(--rose-300);
    box-shadow: var(--shadow-md);
}

.modern-addon-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    text-align: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--rose-300);
}

.modern-addon-content {
    flex: 1;
}

/* Streaming icons container - vertical stack, no background */
.streaming-icons-container.modern-addon-icon {
    background: none !important;
    border: none !important;
    flex-direction: column !important;
    width: auto !important;
    height: auto !important;
    padding: 0.5rem !important;
    gap: 0.5rem !important;
}

.modern-addon-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--stone-800);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.modern-addon-content p {
    color: var(--stone-600);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    font-family: 'DM Sans', sans-serif;
}

.modern-addon-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--rose-500);
    font-family: 'DM Sans', sans-serif;
}

.modern-add-btn {
    background: linear-gradient(135deg, var(--rose-400) 0%, var(--rose-500) 100%);
    color: white;
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 1rem;
    flex-shrink: 0;
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 2px 0 var(--rose-600);
}

.modern-add-btn:hover {
    background: linear-gradient(135deg, var(--rose-500) 0%, var(--rose-600) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 0 var(--rose-600), var(--shadow-md);
}

/* Add button when addon is selected */
.modern-addon-item.addon-selected {
    border-color: var(--rose-400);
    background: var(--rose-50);
}

.modern-addon-item.addon-selected .modern-add-btn {
    background: var(--stone-600);
    color: white;
    box-shadow: 0 2px 0 var(--stone-700);
}

/* ============================================
   Lyrics Guide Overlay - Romantic Rose Modal
   ============================================ */
.lyrics-guide-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.lyrics-guide-overlay.active {
    display: flex;
}

.lyrics-guide-modal {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid var(--stone-200);
}

.lyrics-guide-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--stone-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--stone-50);
    border-radius: 16px 16px 0 0;
}

.lyrics-guide-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--stone-800);
    font-family: 'Playfair Display', serif;
}

.close-overlay {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--stone-500);
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-overlay:hover {
    background: var(--stone-200);
    color: var(--stone-700);
}

.lyrics-guide-content {
    padding: 2rem;
}

.lyrics-guide-content > p {
    color: var(--stone-600);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: 'DM Sans', sans-serif;
}

.add-topic-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--stone-800);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.topic-dropdown {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--stone-200);
    border-radius: 8px;
    background: white;
    font-size: 1rem;
    color: var(--stone-800);
    cursor: pointer;
    transition: border-color 0.2s ease;
    font-family: 'DM Sans', sans-serif;
}

.topic-dropdown:focus {
    outline: none;
    border-color: var(--rose-500);
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.15);
}

.selected-topics {
    margin: 2rem 0;
}

.topic-input-group {
    background: var(--stone-50);
    border: 1px solid var(--stone-200);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.topic-input-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.topic-input-title {
    font-weight: 600;
    color: var(--stone-800);
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
}

.delete-topic-btn {
    background: none;
    border: none;
    color: var(--rose-500);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.delete-topic-btn:hover {
    background: rgba(244, 63, 94, 0.1);
}

.topic-input {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--stone-200);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--stone-800);
    background: white;
    resize: vertical;
    min-height: 80px;
    font-family: 'DM Sans', sans-serif;
}

.topic-input:focus {
    outline: none;
    border-color: var(--rose-500);
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.15);
}

.topic-input::placeholder {
    color: var(--stone-400);
    font-style: italic;
}

.lyrics-guide-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--stone-200);
}

.confirm-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 0.75rem;
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 4px 0 var(--rose-700), var(--shadow-md);
}

.confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--rose-700), var(--shadow-lg);
}

.footer-note {
    color: var(--stone-500);
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
    font-family: 'Playfair Display', Georgia, serif;
}

/* ============================================
   Close Confirmation Modal (Flow A)
   ============================================ */
.close-confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1001;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.close-confirm-overlay.active {
    display: flex;
}

.close-confirm-modal {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 440px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid var(--stone-200);
    animation: modalSlideIn 0.25s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-confirm-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--stone-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--stone-50);
    border-radius: 16px 16px 0 0;
}

.close-confirm-header h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--stone-800);
    font-family: 'Playfair Display', serif;
}

.close-confirm-content {
    padding: 1.5rem;
}

.close-confirm-content > p {
    color: var(--stone-600);
    line-height: 1.6;
    margin: 0 0 1rem 0;
    font-family: 'DM Sans', sans-serif;
}

.close-confirm-warning {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid var(--amber-400);
    border-radius: 8px;
    color: var(--stone-700);
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
}

.close-confirm-warning svg {
    flex-shrink: 0;
    color: var(--amber-500);
    margin-top: 2px;
}

.close-confirm-footer {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.close-confirm-cancel {
    background: white;
    color: var(--stone-600);
    border: 2px solid var(--stone-300);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'DM Sans', sans-serif;
}

.close-confirm-cancel:hover {
    background: var(--stone-100);
    border-color: var(--stone-400);
}

.close-confirm-proceed {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 3px 0 var(--rose-700), var(--shadow-sm);
}

.close-confirm-proceed:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 0 var(--rose-700), var(--shadow-md);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .create-song-container {
        padding: 1rem 0.5rem;
        padding-top: 80px;
    }

    .song-form {
        background: transparent;
        border: none;
        box-shadow: none;
        border-radius: 0;
        overflow: visible;
    }

    .form-header {
        margin-bottom: 1rem;
    }

    .form-header h1 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .step-indicator {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .form-step {
        padding: 1rem 0.75rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .genre-grid,
    .style-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vocalist-grid {
        grid-template-columns: 1fr;
    }

    .subgenre-grid {
        grid-template-columns: 1fr;
    }

    .language-grid {
        grid-template-columns: 1fr;
    }

    .radio-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .form-navigation,
    .modern-form-navigation {
        flex-direction: row;
        gap: 0.75rem;
    }

    .btn-prev,
    .modern-btn-prev,
    .btn-next,
    .btn-review,
    .modern-btn-cart {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        flex: 1;
    }

    .modern-length-options {
        grid-template-columns: 1fr;
    }

    .modern-vaak-gekozen {
        top: -18px;
    }

    .modern-delivery-options {
        grid-template-columns: 1fr;
    }

    .modern-addon-item {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        padding: 1rem;
        gap: 0.75rem;
    }

    .modern-addon-icon {
        margin-right: 0;
        margin-bottom: 0;
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .streaming-icons-container.modern-addon-icon {
        flex-direction: row !important;
        gap: 0.25rem !important;
        padding: 0 !important;
        width: auto !important;
    }

    .streaming-icons-container.modern-addon-icon img {
        width: 20px;
        height: 20px;
    }

    .modern-addon-content {
        flex: 1;
        min-width: 0;
    }

    .modern-addon-content h4 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }

    .modern-addon-content p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .modern-addon-price {
        font-size: 0.85rem;
    }

    .modern-add-btn {
        margin-left: auto;
        margin-top: 0;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        align-self: center;
    }

    .modern-review-item {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
    }

    .modern-review-label {
        min-width: auto;
        font-weight: 600;
    }

    .modern-correct-badge {
        margin-left: 0;
        margin-top: 0.25rem;
        align-self: flex-start;
    }

    /* Occasion grid responsive */
    .occasion-grid {
        gap: 0.5rem;
    }

    .occasion-btn {
        padding: 0.625rem 1rem;
        font-size: 0.9rem;
    }

    .toggle-container {
        padding: 0.875rem 1.25rem;
    }

    /* Close confirmation modal responsive */
    .close-confirm-modal {
        width: 95%;
        max-width: none;
        margin: 1rem;
    }

    .close-confirm-header {
        padding: 1rem 1.25rem;
    }

    .close-confirm-header h2 {
        font-size: 1.1rem;
    }

    .close-confirm-content {
        padding: 1.25rem;
    }

    .close-confirm-footer {
        padding: 1rem 1.25rem 1.25rem;
        flex-direction: column;
    }

    .close-confirm-cancel,
    .close-confirm-proceed {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .genre-grid,
    .style-grid {
        grid-template-columns: 1fr;
    }

    .occasion-btn,
    .detail-topic-btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.85rem;
    }

    .details-topic-grid {
        gap: 0.5rem;
    }

    .detail-topic-input-content {
        padding: 1.5rem;
    }

    .toggle-container {
        min-width: unset;
        width: 100%;
        max-width: 320px;
    }

    .form-step h2 {
        font-size: 1.5rem;
    }

    .step-indicator {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .btn-prev,
    .modern-btn-prev,
    .btn-next,
    .btn-review,
    .modern-btn-cart {
        padding: 0.625rem 0.75rem;
        font-size: 0.8rem;
    }
}

/* ============================================
   Reduced Motion Preference
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .btn-next::before,
    .btn-review::before,
    .modern-btn-cart::before,
    .guide-btn {
        transition: none;
    }

    .genre-btn:hover,
    .style-btn:hover,
    .vocalist-btn:hover,
    .language-btn:hover,
    .occasion-btn:hover,
    .detail-topic-btn:hover {
        transform: none;
    }

    .field-error,
    .field-success {
        animation: none;
        opacity: 1;
    }
}

/* ============================================
   Name Pronunciation Step Styles
   ============================================ */
.pronunciation-container {
    margin-bottom: 2rem;
}

.pronunciation-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pronunciation-pair {
    background: var(--stone-50);
    border: 2px solid var(--stone-200);
    border-radius: 12px;
    padding: 1.25rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pronunciation-pair:hover {
    border-color: var(--rose-300);
    box-shadow: var(--shadow-md);
}

.pronunciation-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
}

.pronunciation-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pronunciation-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--stone-700);
    font-family: 'DM Sans', sans-serif;
}

.pronunciation-remove-btn {
    background: none;
    border: 2px solid var(--rose-300);
    color: var(--rose-500);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
}

.pronunciation-remove-btn:hover {
    background: var(--rose-500);
    color: white;
    border-color: var(--rose-500);
}

.add-pronunciation-row {
    text-align: center;
}

.add-pronunciation-btn {
    background: var(--stone-100);
    border: 2px dashed var(--rose-300);
    color: var(--rose-500);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.add-pronunciation-btn:hover {
    background: var(--rose-50);
    border-color: var(--rose-400);
    color: var(--rose-600);
    transform: translateY(-2px);
}

/* Skip button styling */
.modern-btn-skip {
    background: none;
    border: 2px solid var(--stone-300);
    color: var(--stone-600);
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.modern-btn-skip:hover {
    border-color: var(--stone-400);
    color: var(--stone-700);
    background: var(--stone-100);
}

/* Review pronunciation display */
.pronunciation-phonetic-display {
    font-style: italic;
    color: var(--rose-600);
    font-weight: 500;
}

/* Responsive adjustments for pronunciation step */
@media (max-width: 768px) {
    .pronunciation-inputs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pronunciation-remove-btn {
        justify-self: end;
        margin-top: 0.5rem;
    }
}

/* ============================================
   Step 1 - Modern Relationship Card Picker
   ============================================ */

/* Step 1 & 2 wider container for card layout */
#step-1,
#step-2 {
    max-width: 800px;
}

/* Step 2 - Occasion Selection (Minimal Pills) */
.step2-occasion-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.step2-occasion-pill {
    cursor: pointer;
    position: relative;
}

.step2-radio-hidden {
    position: absolute !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
}

.step2-pill-content {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.25rem;
    background: white;
    border: 1px solid var(--stone-300);
    border-radius: 50px;
    transition: all 0.15s ease;
    color: var(--stone-700);
}

.step2-pill-content svg {
    flex-shrink: 0;
}

.step2-pill-content span {
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
}

.step2-occasion-pill:hover .step2-pill-content {
    border-color: var(--stone-400);
}

.step2-radio-hidden:checked + .step2-pill-content {
    background: var(--rose-500);
    border-color: var(--rose-500);
    color: white;
}

.step2-radio-hidden:checked + .step2-pill-content svg {
    stroke: white;
}

/* Step 2 Toggle Row */
.step2-toggle-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--stone-100);
    border-radius: 50px;
    cursor: pointer;
    max-width: 400px;
    margin: 0 auto 2rem;
}

.step2-toggle-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--stone-700);
    font-family: 'DM Sans', sans-serif;
}

.step2-toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.step2-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.step2-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--stone-300);
    transition: 0.2s;
    border-radius: 24px;
}

.step2-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.2s;
    border-radius: 50%;
}

.step2-toggle-switch input:checked + .step2-toggle-slider {
    background-color: var(--rose-500);
}

.step2-toggle-switch input:checked + .step2-toggle-slider:before {
    transform: translateX(20px);
}

/* Progress Header */
.step1-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.step1-progress-step {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--rose-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'DM Sans', sans-serif;
}

.step1-progress-percent {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--stone-400);
    font-family: 'DM Sans', sans-serif;
}

.step1-progress-bar {
    height: 3px;
    background: var(--stone-200);
    border-radius: 2px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.step1-progress-fill {
    height: 100%;
    background: var(--rose-500);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Name group with reduced margin */
.step1-name-group {
    margin-bottom: 0;
}

.step1-name-group .step1-validation {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 0.25rem;
}

.step1-name-group {
    position: relative;
}

/* Hide default validation for step1 name - keep input full width */
.step1-name-group .validation-message-container {
    display: none;
}

/* Labels */
.step1-label {
    display: block;
    font-weight: 600;
    color: var(--stone-500);
    margin-bottom: 0.75rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'DM Sans', sans-serif;
}

/* Name Input with Icon */
.step1-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.step1-name-input {
    padding-right: 3rem;
    border-radius: 50px;
    background: var(--stone-100);
    border: 1px solid var(--stone-200);
}

.step1-name-input:focus {
    background: white;
    border-color: var(--rose-400);
}

.step1-input-icon {
    position: absolute;
    right: 1rem;
    color: var(--stone-400);
    pointer-events: none;
}

/* Toggle Row - Full width with background */
.step1-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--stone-100);
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    margin: 1.25rem 0 1.5rem 0;
    cursor: pointer;
    user-select: none;
}

.step1-toggle-label {
    font-weight: 500;
    color: var(--stone-700);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
}

.step1-toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

.step1-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.step1-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--stone-300);
    transition: all 0.3s ease;
    border-radius: 28px;
}

.step1-toggle-slider::before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.step1-toggle-switch input:checked + .step1-toggle-slider {
    background-color: var(--rose-500);
}

.step1-toggle-switch input:checked + .step1-toggle-slider::before {
    transform: translateX(24px);
}

.step1-toggle-switch input:focus + .step1-toggle-slider {
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.2);
}

/* Relationship Section */
.step1-relationship-section {
    margin-top: 0.5rem;
}

/* Category Styling */
.step1-category {
    margin-bottom: 3rem;
}

.step1-category-header {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--rose-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.625rem;
    margin-left: 0.25rem;
    font-family: 'DM Sans', sans-serif;
}

.step1-category-header svg {
    color: var(--rose-400);
}

/* Relation Grid - 3 columns on desktop, responsive */
.step1-relation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem; /* Equal horizontal and vertical gap */
}

/* Relation Cards */
.step1-relation-card {
    cursor: pointer;
    position: relative;
}

.step1-radio-hidden,
.form-group .step1-radio-hidden,
input[type="radio"].step1-radio-hidden {
    position: absolute !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
    top: 0;
    left: 0;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.step1-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.75rem 0.5rem;
    height: 72px;
    background: white;
    border: 1px solid var(--stone-200);
    border-radius: 12px;
    transition: all 0.2s ease;
    color: var(--stone-500);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.step1-card-content svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.step1-card-content span {
    font-size: 0.8rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    text-align: center;
    line-height: 1.2;
}

/* Hover State */
.step1-relation-card:hover .step1-card-content {
    background: var(--stone-50);
    border-color: var(--stone-300);
}

/* Selected State */
.step1-radio-hidden:checked + .step1-card-content {
    background: var(--rose-500);
    border-color: var(--rose-500);
    color: white;
    box-shadow: 0 2px 8px rgba(244, 63, 94, 0.3);
}

.step1-radio-hidden:checked + .step1-card-content svg {
    color: white;
}

/* Focus State for Accessibility - subtle */
.step1-radio-hidden:focus + .step1-card-content {
    outline: none;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .step1-relation-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.625rem; /* Equal gaps */
    }

    .step1-card-content {
        height: 68px;
        padding: 0.625rem 0.375rem;
    }

    .step1-card-content svg {
        width: 20px;
        height: 20px;
    }

    .step1-card-content span {
        font-size: 0.75rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .step1-relation-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem; /* Equal gaps */
    }

    .step1-card-content {
        height: 64px;
        padding: 0.5rem 0.25rem;
        border-radius: 10px;
    }

    .step1-card-content svg {
        width: 18px;
        height: 18px;
    }

    .step1-card-content span {
        font-size: 0.7rem;
    }

    .step1-category-header {
        font-size: 0.6rem;
    }

    .step1-toggle-row {
        padding: 0.75rem 1rem;
    }

    .step1-toggle-label {
        font-size: 0.875rem;
    }
}

/* ============================================
   Step 3 - Modern Characteristics Card Picker
   ============================================ */

/* Step 3 wider container */
#step-3 {
    max-width: 800px;
}

/* Progress Header for Step 3 */
.step3-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.step3-progress-step {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--rose-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'DM Sans', sans-serif;
}

.step3-progress-percent {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--stone-400);
    font-family: 'DM Sans', sans-serif;
}

.step3-progress-bar {
    height: 3px;
    background: var(--stone-200);
    border-radius: 2px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.step3-progress-fill {
    height: 100%;
    background: var(--rose-500);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Section spacing */
.step3-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--stone-200);
}

.step3-section:last-of-type {
    border-bottom: none;
    margin-bottom: 1.5rem;
}

/* Labels */
.step3-label {
    display: block;
    font-weight: 600;
    color: var(--stone-800);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
}

/* Hidden Radio Buttons for Step 3 */
.step3-radio-hidden,
.form-group .step3-radio-hidden,
input[type="radio"].step3-radio-hidden {
    position: absolute !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
    top: 0;
    left: 0;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

/* Language Grid - centered flexbox */
.step3-language-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.step3-option-card {
    cursor: pointer;
    position: relative;
}

.step3-card-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: white;
    border: 1px solid var(--stone-300);
    border-radius: 50px;
    transition: all 0.15s ease;
    color: var(--stone-700);
}

.step3-card-content span {
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
}

.step3-option-card:hover .step3-card-content {
    border-color: var(--stone-400);
}

.step3-radio-hidden:checked + .step3-card-content {
    background: var(--rose-500);
    border-color: var(--rose-500);
    color: white;
}

.step3-radio-hidden:focus + .step3-card-content {
    outline: none;
}

/* Genre Grid - centered flexbox pills */
.step3-genre-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.step3-genre-card {
    cursor: pointer;
    position: relative;
}

.step3-genre-card.genre-hidden {
    display: none;
}

.step3-genre-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: white;
    border: 1px solid var(--stone-300);
    border-radius: 50px;
    transition: all 0.15s ease;
    color: var(--stone-700);
}

.step3-genre-content span {
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
}

.step3-genre-card:hover .step3-genre-content {
    border-color: var(--stone-400);
}

.step3-radio-hidden:checked + .step3-genre-content {
    background: var(--rose-500);
    border-color: var(--rose-500);
    color: white;
}

.step3-radio-hidden:focus + .step3-genre-content {
    outline: none;
}

/* Show More Button - link style */
.step3-show-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: 0.75rem auto 0;
    padding: 0.5rem 1.25rem;
    background: white;
    border: 1px solid var(--stone-300);
    border-radius: 50px;
    color: var(--stone-700);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.15s ease;
}

.step3-show-more-btn:hover {
    border-color: var(--stone-400);
}

.step3-show-more-btn.hidden {
    display: none;
}

.step3-genre-grid + .step3-show-more-btn {
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

/* Custom Genre Input */
.step3-custom-genre {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--stone-200);
}

/* Style Grid - centered flexbox pills */
.step3-style-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.step3-style-card {
    cursor: pointer;
    position: relative;
}

.step3-style-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: white;
    border: 1px solid var(--stone-300);
    border-radius: 50px;
    transition: all 0.15s ease;
    color: var(--stone-700);
}

.step3-style-content span {
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
}

.step3-style-card:hover .step3-style-content {
    border-color: var(--stone-400);
}

.step3-radio-hidden:checked + .step3-style-content {
    background: var(--rose-500);
    border-color: var(--rose-500);
    color: white;
}

.step3-radio-hidden:focus + .step3-style-content {
    outline: none;
}

/* Vocalist Grid - centered flexbox pills */
.step3-vocalist-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.step3-vocalist-card {
    cursor: pointer;
    position: relative;
}

.step3-vocalist-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: white;
    border: 1px solid var(--stone-300);
    border-radius: 50px;
    transition: all 0.15s ease;
    color: var(--stone-700);
}

.step3-vocalist-content span {
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
}

.step3-vocalist-card:hover .step3-vocalist-content {
    border-color: var(--stone-400);
}

.step3-radio-hidden:checked + .step3-vocalist-content {
    background: var(--rose-500);
    border-color: var(--rose-500);
    color: white;
}

.step3-radio-hidden:focus + .step3-vocalist-content {
    outline: none;
}

/* Hint text */
.step3-hint {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--stone-500);
    font-family: 'DM Sans', sans-serif;
    text-align: center;
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .step3-card-content,
    .step3-genre-content,
    .step3-style-content,
    .step3-vocalist-content {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }

    .step3-card-content span,
    .step3-genre-content span,
    .step3-style-content span,
    .step3-vocalist-content span {
        font-size: 0.7rem;
        word-break: break-word;
        hyphens: auto;
    }
}

/* ============================================
   Step 4 - Song Details
   ============================================ */

/* Step 4 wider container */
#step-4 {
    max-width: 800px;
}

/* Progress Header for Step 4 */
.step4-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.step4-progress-step {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--rose-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'DM Sans', sans-serif;
}

.step4-progress-percent {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--stone-400);
    font-family: 'DM Sans', sans-serif;
}

.step4-progress-bar {
    height: 3px;
    background: var(--stone-200);
    border-radius: 2px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.step4-progress-fill {
    height: 100%;
    background: var(--rose-500);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Section spacing */
.step4-section {
    margin-bottom: 0.5rem;
}

/* Labels */
.step4-label {
    display: block;
    font-weight: 600;
    color: var(--stone-500);
    margin-bottom: 0.75rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'DM Sans', sans-serif;
}

.step4-hint {
    font-size: 0.85rem;
    color: var(--stone-500);
    margin-bottom: 0.75rem;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.5;
}

/* Input styling */
.step4-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    background: white;
    border: 2px solid var(--stone-200);
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    color: var(--stone-800);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.step4-input::placeholder {
    color: var(--stone-400);
    font-weight: 400;
    font-style: italic;
}

.step4-input:hover {
    border-color: var(--stone-300);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.step4-input:focus {
    background: white;
    border-color: var(--rose-400);
    box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
    outline: none;
}

/* Textarea styling */
.step4-textarea {
    width: 100%;
}

/* Topics Section */
.step4-topics-section {
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: var(--stone-50);
    border-radius: 12px;
    border: 1px solid var(--stone-200);
}

/* Topic Grid */
.step4-topic-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Topic button pills */
.step4-topic-grid .detail-topic-btn,
.details-topic-grid .detail-topic-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--stone-200);
    border-radius: 50px;
    color: var(--stone-600);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.step4-topic-grid .detail-topic-btn:hover,
.details-topic-grid .detail-topic-btn:hover {
    background: var(--rose-50);
    border-color: var(--rose-300);
    color: var(--rose-600);
}

/* Textarea section */
.step4-textarea-section {
    margin-top: 1.5rem;
}

.step4-textarea {
    border-radius: 12px;
    resize: vertical;
    min-height: 120px;
}

/* Responsive */
@media (max-width: 480px) {
    .step4-topics-section {
        padding: 1rem;
    }

    .step4-topic-grid .detail-topic-btn,
    .details-topic-grid .detail-topic-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
}

/* Pronunciation section (inline in step 4) */
.step4-pronunciation-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--stone-200);
}

.step4-pronunciation-container {
    background: var(--stone-50);
    border: 1px solid var(--stone-200);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 0.5rem;
}

.step4-add-row {
    display: flex;
    justify-content: flex-start;
}

.step4-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    background: transparent;
    border: 1px dashed var(--rose-300);
    border-radius: 8px;
    color: var(--rose-500);
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.step4-add-btn:hover {
    background: var(--rose-50);
    border-color: var(--rose-400);
}

.step4-add-btn svg {
    color: var(--rose-500);
}

/* ============================================
   Step 5 - Contact Info (Who Makes)
   ============================================ */

#step-5 {
    max-width: 800px;
}

/* Progress Header for Step 5 (uses step5-* classes from old pronunciation step) */
.step5-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.step5-progress-step {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--rose-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'DM Sans', sans-serif;
}

.step5-progress-percent {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--stone-400);
    font-family: 'DM Sans', sans-serif;
}

.step5-progress-bar {
    height: 3px;
    background: var(--stone-200);
    border-radius: 2px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.step5-progress-fill {
    height: 100%;
    background: var(--rose-500);
    border-radius: 2px;
}

.step5-description {
    text-align: center;
    color: var(--stone-600);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
}

.step5-pronunciation-container {
    background: linear-gradient(135deg, var(--rose-50) 0%, var(--stone-50) 100%);
    border: 2px dashed var(--rose-200);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.step5-pronunciation-container::before {
    content: "🎤";
    display: block;
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* Hide the emoji when there are pronunciation items */
.step5-pronunciation-container:has(.pronunciation-pair)::before {
    display: none;
}

.step5-pronunciation-container:has(.pronunciation-pair) {
    text-align: left;
    padding: 1.5rem;
    background: var(--stone-50);
    border: 1px solid var(--stone-200);
}

.step5-add-row {
    display: flex;
    justify-content: center;
}

.step5-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--rose-500) 0%, var(--rose-600) 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.3);
}

.step5-add-btn:hover {
    background: linear-gradient(135deg, var(--rose-600) 0%, var(--rose-700) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 63, 94, 0.4);
}

.step5-add-btn svg {
    color: white;
}

.step5-hint {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: var(--amber-50, #fffbeb);
    border: 1px solid var(--amber-200, #fde68a);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    color: var(--stone-700);
    font-family: 'DM Sans', sans-serif;
    margin-top: 1.5rem;
    text-align: left;
}

.step5-hint::before {
    content: "💡";
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Step 6 fields are still used for styling in new Step 5 */

/* Progress Header for Step 6 */
.step6-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.step6-progress-step {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--rose-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'DM Sans', sans-serif;
}

.step6-progress-percent {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--stone-400);
    font-family: 'DM Sans', sans-serif;
}

.step6-progress-bar {
    height: 3px;
    background: var(--stone-200);
    border-radius: 2px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.step6-progress-fill {
    height: 100%;
    background: var(--rose-500);
    border-radius: 2px;
}

.step6-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.step6-field {
    margin-bottom: 1.25rem;
}

.step6-label {
    display: block;
    font-weight: 600;
    color: var(--stone-500);
    margin-bottom: 0.75rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'DM Sans', sans-serif;
}

.step6-hint {
    font-size: 0.85rem;
    color: var(--stone-500);
    margin-bottom: 0.5rem;
    font-family: 'DM Sans', sans-serif;
}

.step6-input {
    width: 100%;
    border-radius: 50px;
    background: white;
    border: 1px solid var(--stone-200);
}

.step6-input:focus {
    background: white;
    border-color: var(--rose-400);
}

/* Checkbox styling */
.step6-checkbox-row {
    margin: 1.5rem 0;
}

.step6-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    padding: 0.875rem 1.25rem;
    background: var(--stone-50);
    border-radius: 12px;
    border: 1px solid var(--stone-200);
    transition: all 0.2s ease;
}

.step6-checkbox:hover {
    border-color: var(--rose-200);
}

.step6-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.step6-checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--stone-300);
    border-radius: 6px;
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.step6-checkbox input:checked ~ .step6-checkmark {
    background: var(--rose-500);
    border-color: var(--rose-500);
}

.step6-checkbox input:checked ~ .step6-checkmark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.step6-checkbox-text {
    font-size: 0.95rem;
    color: var(--stone-600);
    font-family: 'DM Sans', sans-serif;
}

@media (max-width: 480px) {
    .step6-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ============================================
   Step 6 - Review (Progress Header)
   ============================================ */

#step-6 {
    max-width: 800px;
}

/* Confirmation Header (for Review and Order screens) */
.confirmation-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.confirmation-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--rose-100) 0%, var(--rose-50) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.confirmation-icon svg {
    color: var(--rose-500);
}

.confirmation-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--rose-500);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
}

.step7-progress-percent {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--stone-400);
    font-family: 'DM Sans', sans-serif;
}

.step7-progress-bar {
    height: 3px;
    background: var(--stone-200);
    border-radius: 2px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.step7-progress-fill {
    height: 100%;
    background: var(--rose-500);
    border-radius: 2px;
}

/* ============================================
   Step 7 - Confirm Order (Progress Header)
   ============================================ */

#step-7 {
    max-width: 800px;
}

.step8-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.step8-progress-step {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--rose-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'DM Sans', sans-serif;
}

.step8-progress-percent {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--stone-400);
    font-family: 'DM Sans', sans-serif;
}

.step8-progress-bar {
    height: 3px;
    background: var(--stone-200);
    border-radius: 2px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.step8-progress-fill {
    height: 100%;
    background: var(--rose-500);
    border-radius: 2px;
}

/* ============================================
   Step 6 - Order Summary (Simplified)
   ============================================ */

.finalize-header {
    text-align: center;
    margin-top: -2rem;
    margin-bottom: 2rem;
}

.finalize-header-content {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.finalize-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--stone-800);
}

.finalize-checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #22c55e;
    border-radius: 50%;
    color: white;
}

.finalize-checkmark svg {
    width: 14px;
    height: 14px;
}

.finalize-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--stone-400);
    margin: 0;
}

.order-summary-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.order-summary-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--stone-900);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.order-summary-collage {
    margin-bottom: 2rem;
}

.order-summary-collage img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.order-summary-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--stone-800);
    text-align: left;
    margin-bottom: 1.25rem;
}

.order-summary-items {
    text-align: left;
    margin-bottom: 1.5rem;
}

.order-summary-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--stone-100);
}

.order-summary-item:last-child {
    border-bottom: none;
}

.order-summary-main {
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
}

.order-summary-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-500);
    margin-top: 2px;
}

.order-summary-icon svg {
    width: 20px;
    height: 20px;
}

.order-summary-content {
    flex: 1;
    font-family: 'DM Sans', sans-serif;
}

.order-summary-content strong {
    font-weight: 600;
    color: var(--stone-800);
    font-size: 0.95rem;
}

.order-summary-content span {
    color: var(--stone-500);
    font-size: 0.9rem;
}

.order-summary-content p {
    color: var(--stone-500);
    font-size: 0.9rem;
    margin: 0.25rem 0 0 0;
    line-height: 1.5;
}

.order-summary-total {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--stone-200);
    margin-bottom: 1.5rem;
}

.order-summary-total span:first-child {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--stone-600);
}

.order-summary-total span:last-child {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--stone-900);
}

@media (max-width: 480px) {
    .order-summary-title {
        font-size: 1.5rem;
    }

    .order-summary-content strong {
        font-size: 0.9rem;
    }

    .order-summary-content span,
    .order-summary-content p {
        font-size: 0.85rem;
    }
}

/* ============================================
   Step 7 - Song Length Selection (Simplified)
   ============================================ */

.step7-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    color: var(--stone-900);
    text-align: center;
    margin-bottom: 2rem;
}

.step7-length-container {
    max-width: 600px;
    margin: 0 auto;
}

.step7-length-options {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.step7-length-card {
    cursor: pointer;
    flex: 1;
    max-width: 160px;
}

.step7-length-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.step7-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1.25rem 1rem;
    background: white;
    border: 1px solid var(--stone-200);
    border-radius: 8px;
    transition: all 0.15s ease;
}

.step7-length-card input:checked + .step7-card-content {
    background: var(--stone-900);
    border-color: var(--stone-900);
    color: white;
}

.step7-card-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.step7-card-duration {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--stone-500);
}

.step7-length-card input:checked + .step7-card-content .step7-card-duration {
    color: var(--stone-300);
}

.step7-card-verses {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--stone-400);
}

.step7-length-card input:checked + .step7-card-content .step7-card-verses {
    color: var(--stone-400);
}

.step7-popular-note {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--stone-500);
    text-align: center;
    margin-bottom: 1.5rem;
}

.step7-upgrade-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    padding: 0.875rem 1.5rem;
    background: var(--stone-100);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--stone-600);
    margin-bottom: 2rem;
}

.step7-upgrade-bar strong {
    color: var(--stone-800);
}

@media (max-width: 480px) {
    .step7-title {
        font-size: 1.5rem;
    }

    .step7-length-options {
        flex-direction: column;
        align-items: center;
    }

    .step7-length-card {
        max-width: 100%;
        width: 100%;
    }

    .step7-card-content {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 1.25rem;
    }
}

/* ============================================
   Step 8 - Delivery Date Selection
   ============================================ */

.step8-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    color: var(--stone-900);
    text-align: center;
    margin-bottom: 2rem;
}

.step8-delivery-container {
    max-width: 600px;
    margin: 0 auto;
}

.step8-delivery-options {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.step8-delivery-card {
    cursor: pointer;
    flex: 1;
    max-width: 140px;
}

.step8-delivery-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.step8-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    padding: 1rem 0.75rem;
    background: white;
    border: 1px solid var(--stone-200);
    border-radius: 8px;
    transition: all 0.15s ease;
}

.step8-delivery-card input:checked + .step8-card-content {
    background: var(--stone-900);
    border-color: var(--stone-900);
    color: white;
}

.step8-card-day {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.step8-card-date {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--stone-500);
}

.step8-delivery-card input:checked + .step8-card-content .step8-card-date {
    color: var(--stone-300);
}

.step8-card-speed {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--stone-400);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.step8-delivery-card input:checked + .step8-card-content .step8-card-speed {
    color: var(--stone-400);
}

.step8-delivery-note {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--stone-500);
    text-align: center;
    margin-bottom: 1.5rem;
}

.step8-delivery-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    padding: 0.875rem 1.5rem;
    background: var(--stone-100);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--stone-600);
    margin-bottom: 2rem;
}

.step8-delivery-bar strong {
    color: var(--stone-800);
}

@media (max-width: 480px) {
    .step8-title {
        font-size: 1.5rem;
    }

    .step8-delivery-options {
        flex-direction: column;
        align-items: center;
    }

    .step8-delivery-card {
        max-width: 100%;
        width: 100%;
    }

    .step8-card-content {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 1.25rem;
    }
}

/* ============================================
   Step 9 - Add-ons Selection
   ============================================ */

.step9-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    color: var(--stone-900);
    text-align: center;
    margin-bottom: 0.5rem;
}

.step9-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--stone-500);
    text-align: center;
    margin-bottom: 2rem;
}

.step9-addons-container {
    max-width: 500px;
    margin: 0 auto;
    margin-top: 1.5rem;
}

.step9-addon-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-top: 1px solid var(--stone-200);
    border-bottom: 1px solid var(--stone-200);
    position: relative;
}

.step9-best-verkocht {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(244, 63, 94, 0.3);
}

.step9-addon-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.step9-addon-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--stone-900);
    margin-bottom: 0.75rem;
}

.step9-addon-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--stone-500);
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.step9-addon-price {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--stone-800);
    margin-bottom: 1rem;
}

.step9-addon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    background: var(--stone-900);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
}

.step9-addon-btn:hover {
    background: var(--stone-800);
}

.step9-addon-btn.added {
    background: var(--rose-500);
}

.step9-addon-btn.added:hover {
    background: var(--rose-600);
}

.step9-addon-card.selected {
    background: var(--rose-50);
    border-color: var(--rose-200);
}

@media (max-width: 480px) {
    .step9-title {
        font-size: 1.5rem;
    }

    .step9-addon-card {
        padding: 1.5rem 1rem;
    }
}

/* ============================================
   Soundwave Art Add-on Card - Rose Theme
   ============================================ */

.step9-addon-soundwave {
    margin-top: 2rem;
    border-top: 1px solid var(--stone-200);
    padding-top: 2rem;
}

.step9-new-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

/* Preview Image Container */
.step9-soundwave-preview {
    width: 270px;
    height: 235px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    box-shadow:
        0 4px 16px rgba(244, 63, 94, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step9-soundwave-preview:hover {
    transform: scale(1.02);
    box-shadow:
        0 8px 24px rgba(244, 63, 94, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.08);
}

.step9-soundwave-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step9-soundwave-preview {
    position: relative;
    cursor: pointer;
}

.soundwave-zoom-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-500);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    opacity: 0.9;
}

.step9-soundwave-preview:hover .soundwave-zoom-icon {
    opacity: 1;
    transform: scale(1.1);
    background: var(--rose-500);
    color: white;
}

/* Soundwave Lightbox */
.soundwave-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.soundwave-lightbox.active {
    display: flex;
    opacity: 1;
}

.soundwave-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.soundwave-lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.soundwave-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.soundwave-lightbox-close:hover {
    background: var(--rose-500);
    transform: scale(1.1);
}

/* Color Selector */
.step9-color-selector {
    margin: 1.5rem 0;
}

.step9-color-label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--stone-600);
    margin-bottom: 0.75rem;
}

.step9-color-swatches {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.step9-color-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.step9-color-swatch input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.swatch-inner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--stone-200);
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Color variants */
.swatch-black {
    background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
}

.swatch-white {
    background: linear-gradient(135deg, #ffffff 0%, #fafaf9 100%);
    border-color: var(--stone-300);
}

.swatch-red {
    background: linear-gradient(135deg, var(--rose-500) 0%, var(--rose-600) 100%);
}

/* Selected state */
.step9-color-swatch input[type="radio"]:checked + .swatch-inner {
    border-color: var(--rose-500);
    transform: scale(1.1);
    box-shadow:
        0 0 0 3px rgba(244, 63, 94, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.15);
}

.step9-color-swatch:hover .swatch-inner {
    transform: scale(1.05);
}

.swatch-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: var(--stone-500);
    font-weight: 500;
}

.step9-color-swatch input[type="radio"]:checked ~ .swatch-label {
    color: var(--rose-600);
    font-weight: 600;
}

/* Selected card state */
.step9-addon-soundwave.selected {
    background: var(--rose-50);
    border-color: var(--rose-200);
}

/* Mobile responsive */
@media (max-width: 480px) {
    .step9-soundwave-preview {
        width: 220px;
        height: 190px;
    }

    .swatch-inner {
        width: 36px;
        height: 36px;
    }

    .step9-color-swatches {
        gap: 0.75rem;
    }
}
