:root {
    --primary: #ff6b9d;
    --primary-dark: #e84a7f;
    --primary-light: #ffb4cc;
    --secondary: #c44569;
    --accent: #ff9500;
    --bg-dark: #1a1a2e;
    --bg-gradient: linear-gradient(135deg, #ffeef4 0%, #f8e1f4 50%, #e8d5f9 100%);
    --card-bg: rgba(255, 255, 255, 0.65);
    --card-border: rgba(255, 107, 157, 0.2);
    --text-dark: #2d3436;
    --text-muted: #636e72;
    --shadow-glow: 0 8px 32px rgba(255, 107, 157, 0.2);
    --radius: 24px;
    --radius-sm: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-gradient);
    min-height: 100vh;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ===== Animated Background ===== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 50%);
    animation: pulse-bg 8s ease-in-out infinite;
}

@keyframes pulse-bg {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.floating-heart {
    position: absolute;
    font-size: 24px;
    opacity: 0.15;
    animation: float-up 15s infinite ease-in-out;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.15;
    }

    90% {
        opacity: 0.15;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}



/* ===== Header ===== */
.header {
    position: relative;
    text-align: center;
    padding: 120px 20px 60px;
    z-index: 1;
}

.header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    font-size: 3rem;
    margin-bottom: 24px;
    animation: heartbeat 2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 28px;
}

.demo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.demo-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.5);
}

/* Header Features */
.header-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
    border: 1px solid rgba(255, 107, 157, 0.2);
}

.feature-badge i {
    color: #27ae60;
}

/* Step Cards */
.step-card {
    position: relative;
}

.step-badge {
    position: absolute;
    top: -12px;
    left: 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

/* ===== Container ===== */
.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* ===== Order Layout Grid ===== */
.order-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
    align-items: start;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.order-form-column {
    min-width: 0;
    width: 100%;
}

.order-preview-column {
    position: relative;
    width: 320px;
    transition: opacity 0.4s ease, transform 0.4s ease, width 0.4s ease;
}

/* Önizleme gizlendiğinde grid ayarı */
.preview-hidden .order-layout {
    grid-template-columns: 1fr 0px;
    gap: 0;
}

.preview-hidden .order-preview-column {
    width: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateX(40px);
    pointer-events: none;
}

.preview-hidden .order-form-column {
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .order-layout {
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 30px;
    }

    .order-preview-column {
        width: 280px;
    }
}

@media (max-width: 900px) {
    .container {
        max-width: 700px;
    }

    .order-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .order-preview-column.preview-desktop {
        display: none !important;
    }

    /* Mobilde toggle butonunu göster */
    .preview-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .preview-mobile-container.show {
        display: block !important;
    }
}

/* ===== Progress Steps ===== */
.progress-steps {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 157, 0.15);
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.progress-step.active {
    background: rgba(255, 107, 157, 0.2);
    border-color: var(--primary);
}

.progress-step.completed {
    background: rgba(46, 204, 113, 0.15);
    border-color: #2ecc71;
    color: #27ae60;
}

.step-number {
    width: 24px;
    height: 24px;
    background: rgba(255, 107, 157, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
}

.progress-step.active .step-number {
    background: var(--primary);
    color: white;
}

.progress-step.completed .step-number {
    background: #2ecc71;
    color: white;
}

/* ===== Form Cards ===== */
.form-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 36px;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.form-card:hover {
    border-color: rgba(255, 107, 157, 0.35);
    box-shadow: 0 8px 40px rgba(255, 107, 157, 0.12);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.card-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
}

.card-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ===== Form Elements ===== */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.form-group label .required {
    color: var(--primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 107, 157, 0.15);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.15);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23636e72' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
}

.form-group select option {
    background: white;
    color: var(--text-dark);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group small {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.input-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.input-hint i {
    color: var(--accent);
}

.input-hint.success-hint {
    color: #27ae60;
    background: rgba(46, 204, 113, 0.08);
    padding: 8px 12px;
    border-radius: 8px;
}

.input-hint.success-hint i {
    color: #27ae60;
}

/* Photo Upload Box */
.photo-upload-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.photo-upload-box {
    position: relative;
    border: 2px dashed rgba(255, 107, 157, 0.35);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.5);
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.photo-upload-box:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.photo-upload-box input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.upload-placeholder i {
    font-size: 2.5rem;
    color: rgba(255, 107, 157, 0.5);
}

.upload-placeholder span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

.upload-placeholder small {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.photo-preview {
    max-width: 100%;
    max-height: 200px;
    border-radius: 12px;
    object-fit: cover;
}

.photo-upload-box.has-file .upload-placeholder {
    display: none;
}

/* Eski grid stili - memory-item ile değiştirildi */

/* Love Note Section */
.love-note-section .textarea-wrapper {
    position: relative;
}

.love-note-section textarea {
    min-height: 180px;
    padding-bottom: 40px;
}

.char-counter {
    position: absolute;
    bottom: 12px;
    right: 16px;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 6px;
}

/* ===== Theme Selection ===== */
.theme-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.theme-option {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.theme-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 25px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border: 3px solid rgba(255, 107, 157, 0.15);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.theme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.theme-option:hover .theme-card {
    border-color: rgba(255, 107, 157, 0.5);
    background: linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.9));
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.2);
}

.theme-option input:checked+.theme-card {
    border-color: var(--primary);
    background: linear-gradient(145deg, rgba(255, 107, 157, 0.15), rgba(255, 255, 255, 0.95));
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.3);
    transform: scale(1.02);
}

.theme-option input:checked+.theme-card::before {
    opacity: 1;
}

.theme-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.theme-name {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.theme-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    display: block;
    line-height: 1.4;
}

.theme-check {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
}

.theme-option input:checked~.theme-check {
    opacity: 1;
    transform: scale(1);
}

/* ===== Premium Features ===== */
.premium-features {
    display: grid;
    gap: 16px;
}

.feature-checkbox {
    display: block;
    cursor: pointer;
}

.feature-checkbox input {
    position: absolute;
    opacity: 0;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    transition: all 0.3s ease;
}

.feature-checkbox:hover .feature-card {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.feature-checkbox input:checked+.feature-card {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.15);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 157, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.feature-checkbox input:checked+.feature-card .feature-icon {
    background: var(--primary);
    color: white;
}

.feature-info {
    flex: 1;
}

.feature-title {
    font-weight: 600;
    color: var(--text-dark);
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.feature-price {
    font-weight: 600;
    color: var(--accent);
    background: rgba(255, 149, 0, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* ===== Pricing Summary ===== */
.price-summary {
    background: white;
    border-radius: var(--radius-sm);
    padding: 24px;
    margin-top: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.summary-row.total {
    border-top: 2px dashed #eee;
    margin-top: 16px;
    padding-top: 16px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.summary-row.total .amount {
    color: var(--primary);
}

/* ===== Buttons ===== */
.submit-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ===== File Upload ===== */
.file-upload-wrapper {
    position: relative;
    height: 150px;
    border: 2px dashed rgba(255, 107, 157, 0.3);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.file-upload-wrapper:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.8);
}

.file-upload-input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-icon {
    font-size: 2.5rem;
    color: rgba(255, 107, 157, 0.5);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.upload-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.file-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.file-upload-wrapper.has-file .upload-icon,
.file-upload-wrapper.has-file .upload-text {
    display: none;
}

.file-upload-wrapper.has-file .file-preview {
    display: block;
}

/* ===== Footer ===== */
.footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

/* ===== Card Icon ===== */
.card-icon i {
    color: white;
}

/* ===== Premium Grid ===== */
.premium-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.premium-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(255, 107, 157, 0.15);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.premium-item:hover {
    border-color: rgba(255, 107, 157, 0.4);
    background: rgba(255, 255, 255, 0.85);
    transform: translateX(4px);
}

.premium-item.selected {
    border-color: var(--primary);
    background: rgba(255, 107, 157, 0.08);
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.15);
}

.premium-checkbox {
    position: relative;
    flex-shrink: 0;
}

.premium-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.premium-checkbox .checkmark {
    width: 28px;
    height: 28px;
    background: rgba(255, 107, 157, 0.1);
    border: 2px solid rgba(255, 107, 157, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.premium-checkbox .checkmark i {
    color: white;
    font-size: 0.8rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.premium-item.selected .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.premium-item.selected .checkmark i {
    opacity: 1;
    transform: scale(1);
}

.premium-content {
    flex: 1;
}

.premium-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.premium-title .icon {
    font-size: 1.3rem;
}

.premium-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.premium-price {
    flex-shrink: 0;
    font-weight: 700;
    color: var(--accent);
    background: rgba(255, 149, 0, 0.1);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.95rem;
}

/* ===== Price Summary (in form) ===== */
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row.total {
    border-top: 2px dashed rgba(255, 107, 157, 0.2);
    border-bottom: none;
    margin-top: 8px;
    padding-top: 16px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
}

/* ===== Info Card ===== */
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.08) 0%, rgba(196, 69, 105, 0.08) 100%);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 107, 157, 0.1);
}

.info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: white;
    font-size: 1.5rem;
}

.info-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.info-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===== Submit Section ===== */
.submit-section {
    text-align: center;
    margin-top: 40px;
}

.btn-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 500px;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: 60px;
    font-size: 1.15rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.35);
}

.btn-order:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 107, 157, 0.45);
}

.btn-order:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-order i {
    font-size: 1rem;
}

.btn-order span:last-child {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.95rem;
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.secure-badge i {
    color: #27ae60;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .header {
        padding: 100px 20px 40px;
    }

    .header h1 {
        font-size: 1.8rem;
    }

    .header p {
        font-size: 1rem;
    }

    .form-card {
        padding: 24px;
        margin-bottom: 20px;
        border-radius: 20px;
    }

    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .theme-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 400px;
    }

    .theme-card {
        padding: 28px 20px;
    }

    .theme-icon {
        font-size: 3rem;
    }

    .theme-name {
        font-size: 1rem;
    }

    .premium-item {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .premium-checkbox {
        display: flex;
        justify-content: center;
    }

    .premium-price {
        margin-top: 12px;
        display: block;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .btn-order {
        padding: 18px 30px;
        font-size: 1rem;
    }

    .btn-order span:last-child {
        padding: 4px 10px;
        font-size: 0.85rem;
    }

    .submit-btn {
        padding: 16px;
        font-size: 1rem;
    }

    .progress-steps {
        gap: 8px;
    }

    .progress-step {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 90px 15px 30px;
    }

    .header-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .header h1 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 15px 40px;
    }

    .form-card {
        padding: 20px;
    }

    .card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .theme-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 100%;
    }

    .theme-card {
        padding: 25px 18px;
        border-radius: 16px;
    }

    .theme-icon {
        font-size: 2.8rem;
    }

    .theme-check {
        width: 24px;
        height: 24px;
        top: 12px;
        right: 12px;
    }

    .theme-name {
        font-size: 0.7rem;
    }

    .navbar {
        padding: 12px 16px;
    }

    .nav-logo {
        font-size: 1.2rem;
    }
}

/* ===== Premium Sections (New Style) ===== */
.premium-section {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 149, 0, 0.15);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin-bottom: 20px;
}

.premium-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.premium-section h3 .icon {
    font-size: 1.3rem;
}

.premium-section .premium-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.premium-section .form-group {
    margin-bottom: 0;
}

.premium-section .form-row {
    margin-bottom: 16px;
}

.premium-section .form-row .form-group {
    margin-bottom: 0;
}

.premium-section textarea {
    min-height: 80px;
}

/* ===== AI Helpers ===== */
.ai-helper-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.25);
}

.ai-helper-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.35);
    filter: brightness(1.08);
}

.ai-helper-btn i {
    font-size: 1rem;
}

.ai-info-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px dashed #6366f1;
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #4f46e5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ai-info-box i {
    font-size: 1.2rem;
    margin-top: 2px;
}

/* AI Modal */
.ai-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ai-modal.show {
    display: flex;
}

.ai-modal-content {
    background: white;
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    padding: 35px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    animation: aiModalScale 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes aiModalScale {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.ai-modal-header {
    text-align: center;
    margin-bottom: 28px;
}

.ai-modal-header .ai-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 12px 25px rgba(99, 102, 241, 0.35);
}

.ai-modal-header h2 {
    font-size: 1.6rem;
    color: #1e293b;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.ai-modal-header p {
    color: #64748b;
    font-size: 0.95rem;
    margin-top: 6px;
}

.ai-question-step {
    display: none;
}

.ai-question-step.active {
    display: block;
}

.ai-question-step label {
    display: block;
    font-weight: 600;
    color: #334155;
    margin-bottom: 14px;
    font-size: 1rem;
}

.ai-input-group {
    margin-bottom: 20px;
}

.ai-input-group textarea {
    width: 100%;
    min-height: 90px;
    padding: 14px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    resize: vertical;
    transition: all 0.2s ease;
}

.ai-input-group textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.ai-select-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ai-select-option {
    padding: 14px 12px;
    border: 2px solid #f1f5f9;
    border-radius: 14px;
    text-align: center;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.25s ease;
    background: #fafafa;
}

.ai-select-option:hover {
    border-color: #c7d2fe;
    background: #f0f4ff;
}

.ai-select-option.selected {
    border-color: #6366f1;
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    color: #4f46e5;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.ai-modal-footer {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid #f1f5f9;
}

.ai-btn-next,
.ai-btn-prev,
.ai-btn-generate {
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    flex: 1;
    border: none;
}

.ai-btn-next,
.ai-btn-generate {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: white;
}

.ai-btn-prev {
    background: #f1f5f9;
    color: #64748b;
}

.ai-btn-next:hover,
.ai-btn-generate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.ai-btn-prev:hover {
    background: #e2e8f0;
}

/* AI Loading State */
.ai-loading-overlay {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.ai-loading-overlay.active {
    display: flex;
}

.ai-loading-overlay h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.ai-loading-overlay p {
    color: #64748b;
    font-size: 0.9rem;
}

.ai-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid #6366f1;
    border-radius: 50%;
    animation: aiSpin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes aiSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.ai-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    transition: all 0.25s ease;
    font-size: 1rem;
}

.ai-modal-close:hover {
    background: #e2e8f0;
    color: #1e293b;
    transform: rotate(90deg);
}

@media (max-width: 550px) {
    .ai-modal-content {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .ai-select-grid {
        grid-template-columns: 1fr;
    }

    .ai-modal-header .ai-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
}

/* Dynamic Builders */
.dynamic-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.dynamic-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5));
    padding: 20px;
    border-radius: 16px;
    border: 2px solid rgba(255, 107, 157, 0.15);
    position: relative;
    animation: fadeIn 0.3s ease;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.dynamic-item:hover {
    border-color: rgba(255, 107, 157, 0.35);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.12);
}

.dynamic-item .btn-remove {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff4757, #ff6b7a);
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.25s ease;
    box-shadow: 0 3px 10px rgba(255, 71, 87, 0.4);
}

.dynamic-item .btn-remove:hover {
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.5);
}

/* Reason Item Özel Stilleri */
.dynamic-item.reason-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    padding-right: 25px;
}

.dynamic-item.reason-item .reason-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 3px 10px rgba(255, 107, 157, 0.35);
}

.dynamic-item.reason-item input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid rgba(255, 107, 157, 0.15);
    border-radius: 12px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.dynamic-item.reason-item input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.12);
    outline: none;
    background: white;
}

.dynamic-item.reason-item input::placeholder {
    color: #bbb;
}

.btn-add-item {
    width: 100%;
    padding: 16px;
    border: 2px dashed rgba(255, 107, 157, 0.35);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.3));
    color: var(--primary);
    border-radius: 14px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-add-item:hover {
    background: linear-gradient(145deg, rgba(255, 107, 157, 0.12), rgba(255, 107, 157, 0.05));
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.15);
}

.btn-add-item i {
    font-size: 1.1rem;
}

/* Optional Hint - Opsiyonel alan açıklaması */
.optional-hint {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    font-size: 0.88rem;
    color: #4a5568;
    line-height: 1.5;
}

.optional-hint i {
    color: #3b82f6;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.optional-hint strong {
    color: #3b82f6;
    font-weight: 600;
}

@media (max-width: 480px) {
    .optional-hint {
        padding: 10px 14px;
        font-size: 0.82rem;
        gap: 6px;
    }

    .optional-hint i {
        font-size: 0.9rem;
    }
}

.timeline-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    align-items: center;
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 12px 0;
}

.quiz-extra-row {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.quiz-extra-row select,
.quiz-extra-row input {
    flex: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobilde Dynamic Items */
@media (max-width: 480px) {
    .dynamic-item {
        padding: 16px;
    }

    .dynamic-item.reason-item {
        padding: 14px 16px;
        gap: 12px;
    }

    .dynamic-item.reason-item .reason-number {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .dynamic-item.reason-item input {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .btn-add-item {
        padding: 14px;
        font-size: 0.9rem;
    }
}

/* Emoji Picker */
.emoji-picker-wrapper {
    position: relative;
    flex-shrink: 0;
}

.emoji-picker-btn {
    width: 44px;
    height: 44px;
    font-size: 20px;
    border: 2px solid var(--primary);
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.emoji-picker-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.emoji-picker-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 8px;
    z-index: 100;
    width: 200px;
    flex-wrap: wrap;
    gap: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.emoji-picker-dropdown.show {
    display: flex;
}

.emoji-option {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.15s;
}

.emoji-option:hover {
    background: var(--light-pink);
    transform: scale(1.2);
}

/* ===== Müzik Yükleme Bölümü ===== */
.music-section .premium-desc {
    margin-bottom: 20px;
}

.music-upload-box {
    position: relative;
    border: 2px dashed rgba(255, 107, 157, 0.35);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.5);
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.music-upload-box:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.8);
}

.music-upload-box input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.music-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px;
    background: rgba(46, 204, 113, 0.08);
    border-radius: 12px;
    margin-top: 15px;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.music-preview-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #27ae60;
    font-weight: 600;
}

.music-preview-info i {
    font-size: 1.2rem;
}

.music-preview audio {
    width: 100%;
}

/* ===== Options Grid (Modüller) ===== */
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(255, 107, 157, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-item:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.8);
}

.option-item input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: var(--primary);
    cursor: pointer;
}

.option-item label {
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 !important;
}

.option-item input[type="checkbox"]:checked+label,
.option-item:has(input:checked) label {
    color: var(--primary);
}

.option-item:has(input:checked) {
    border-color: var(--primary);
    background: rgba(255, 107, 157, 0.08);
}

@media (max-width: 600px) {
    .music-upload-tabs {
        flex-direction: column;
    }

    .music-preview {
        flex-direction: column;
        text-align: center;
    }

    .music-preview audio {
        max-width: 100%;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }
}

/* Galeri Anı Öğeleri */
.memories-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.memory-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 6px;
    border: 2px solid rgba(255, 107, 157, 0.15);
    transition: all 0.2s ease;
}

.memory-item:hover {
    border-color: rgba(255, 107, 157, 0.4);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.15);
}

.memory-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
}

.memory-caption-input {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid rgba(255, 107, 157, 0.25);
    border-radius: 5px;
    font-size: 0.75rem;
    background: white;
    transition: all 0.2s;
}

.memory-caption-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 107, 157, 0.12);
}

.memory-caption-input::placeholder {
    color: #bbb;
    font-size: 0.7rem;
}

/* Mobilde galeri önizleme */
@media (max-width: 480px) {
    .memories-preview-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .memory-item {
        padding: 4px;
        gap: 4px;
        border-radius: 8px;
    }

    .memory-caption-input {
        padding: 5px 6px;
        font-size: 0.7rem;
    }
}

/* Timeline Builder Styles */
.timeline-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.timeline-row input {
    margin-bottom: 0 !important;
}

.timeline-row .emoji-picker-wrapper {
    flex-shrink: 0;
}

.emoji-picker-btn {
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255, 107, 157, 0.2);
    border-radius: 12px;
    background: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emoji-picker-btn:hover {
    background: rgba(255, 107, 157, 0.1);
    border-color: var(--primary);
}

.emoji-picker-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 100;
    display: none;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
    margin-top: 5px;
}

.emoji-picker-dropdown.show {
    display: grid;
}

.emoji-option {
    cursor: pointer;
    font-size: 1.5rem;
    text-align: center;
    padding: 5px;
    border-radius: 6px;
    transition: background 0.2s;
}

.emoji-option:hover {
    background: #f0f0f0;
}

.dynamic-item {
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    border: 1px dashed rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.dynamic-item:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--primary);
}

.btn-remove {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ff4757;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.3);
    transition: all 0.2s;
    opacity: 0;
    z-index: 10;
}

.dynamic-item:hover .btn-remove {
    opacity: 1;
}

/* Mobil Uyumluluk Override */
@media (max-width: 600px) {
    .timeline-row {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .timeline-row .emoji-picker-wrapper {
        align-self: flex-start;
        margin-bottom: 5px;
    }

    .timeline-row input[type="date"],
    .timeline-row input[type="text"] {
        width: 100%;
        margin-bottom: 0;
    }

    .dynamic-item {
        padding-top: 25px;
        /* Silme butonu çakışmasını önle */
    }

    .btn-remove {
        opacity: 1;
        /* Mobilde her zaman görünür olsun */
        top: 5px;
        right: 5px;
        width: 32px;
        height: 32px;
    }

    .quiz-options {
        grid-template-columns: 1fr !important;
    }

    .quiz-extra-row {
        flex-direction: column;
    }
}