* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --bg-primary: #0A0A0A;
        --bg-surface: #141414;
        --accent-red: #e6c05b;
        --accent-gold: #D4AF37;
        --chrome-glow: rgba(255, 255, 255, 0.1);
        --text-primary: #ffffff;
        --text-secondary: #a0a0a0;
        --text-muted: #e2e2e2;
        --gradient-primary: linear-gradient(135deg, #e6c05b 0%, #d3b05d 100%);
        --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    }

    /* MODAL GENEL YAPISI */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.custom-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.custom-modal-content {
    background: var(--bg-card);
    width: 100%;
    max-width: 650px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 50px 40px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

/* Modalın üstündeki altın rengi ince çizgi detayı */
.custom-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), #FFD700);
}

.custom-modal-overlay.active .custom-modal-content {
    transform: translateY(0) scale(1);
}

/* Kapatma Butonu */
.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close-btn:hover {
    color: var(--primary-red);
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(90deg);
}

/* Modal Başlık Kısmı */
.modal-header {
    text-align: center;
    margin-bottom: 35px;
}

.modal-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-light);
}

.modal-header h2 span {
    color: var(--primary-red);
    font-style: italic;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Form Yapısı */
.dealer-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 16px
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px
}

.form-checkbox-group {
    margin-top: 10px;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
}

/* Orijinal çirkin checkbox'ı gizle */
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Yeni premium kutucuk tasarımı */
.checkmark {
    position: relative;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    min-width: 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* Hover efekti (Focus) */
.custom-checkbox:hover input ~ .checkmark {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(211, 176, 93, 0.1);
}

/* Tıklandığında arkaplan rengi (Gold) */
.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

/* Tik işareti (Başlangıçta gizli) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--bg-main); /* Tik işareti koyu renk (arka plan renginde) */
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Tıklandığında tik işaretini göster */
.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
    animation: checkAnim 0.2s ease-in-out forwards;
}

/* Yazı stilleri */
.checkbox-text {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
    margin-top: 2px;
}

/* KVKK Link Stili */
.checkbox-text a {
    color: var(--primary-red);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.checkbox-text a:hover {
    color: #FFD700;
}

/* Tik Animasyonu */
@keyframes checkAnim {
    0% { height: 0; width: 0; opacity: 0; }
    100% { height: 10px; width: 5px; opacity: 1; }
}

.form-group label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* İkonlu İnput Yapısı */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(211, 176, 93, 0.1);
}

.input-wrapper i {
    padding: 0 15px;
    color: var(--primary-red);
    font-size: 16px;
    opacity: 0.8;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-light);
    padding: 14px 15px 14px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 80px;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: #555;
}

/* Mobil Uyumluluk */
@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .custom-modal-content {
        padding: 40px 20px;
        max-height: 90vh;
        overflow-y: auto;
    }
}

    body {
        font-family: 'Poppins', sans-serif;
        background: var(--bg-primary);
        color: var(--text-primary);
        line-height: 1.6;
        overflow-x: hidden;
    }

    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .d-flex{
        display: flex;
        flex-wrap: wrap
    }


    .property-box{
        width: 33%;
        padding: 40px 20px 40px 20px;
        text-align: left;
        border-right: 1px solid var(--accent-gold);
        margin-bottom: 40px
    }
    .property-box:last-child{
        border-right: none
    }

    .property-box h3{
    font-family: 'Playfair Display', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    border-width: thin;
    }

    .property-box p{
        font-family: 'Montserrat', sans-serif;
    }

    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        background: radial-gradient(ellipse at center, rgba(122, 15, 36, 0.15) 0%, var(--bg-primary) 70%);
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><filter id="noise"><feTurbulence baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.03 0"/></filter></defs><rect width="100%" height="100%" filter="url(%23noise)"/></svg>') repeat;
        opacity: 0.4;
        pointer-events: none;
    }

    .hero-content {
        text-align: center;
        max-width: 900px;
        padding: 0 24px;
        position: relative;
        z-index: 2;
        animation: fadeInUp 1s ease-out;
    }

    .hero-content h1 {
        font-size: clamp(48px, 8vw, 96px);
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 32px;
        color: var(--text-primary);
    }

    .hero-content h1 span {
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-content p {
        font-size: 20px;
        font-weight: 400;
        color: var(--text-secondary);
        margin-bottom: 48px;
        line-height: 1.5;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn {
        padding: 16px 32px;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        border: none;
        position: relative;
        overflow: hidden;
    }

    .btn-primary {
        background: var(--gradient-primary);
        color: white;
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(122, 15, 36, 0.4);
    }

    .btn-secondary {
        background: transparent;
        color: var(--text-primary);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }

    .btn-block {
        width: 100%;
        justify-content: center;
    }

    .banners {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        margin: -60px 24px 120px;
        position: relative;
        z-index: 10;
    }

    .banner-card {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        height: 400px;
        cursor: pointer;
        transition: all 0.4s ease;
        box-shadow: 0px 20px 6px #00000042;
    }

    .banner-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    }

    .banner-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .banner-card:hover img {
        transform: scale(1.05);
    }

    .banner-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
        padding: 40px 32px 32px;
        color: white;
    }

    .banner-overlay h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 12px;
        color: var(--accent-gold);
    }

    .banner-overlay p {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .banner-overlay a {
        color: var(--accent-gold);
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }

    .banner-overlay a:hover {
        color: #FFD700;
        transform: translateX(5px);
    }

    .section-header {
        text-align: center;
        margin-bottom: 80px;
    }

    .section-header h2 {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 16px;
        color: var(--text-primary);
    }

    .section-header p {
        font-size: 18px;
        color: var(--text-secondary);
        max-width: 600px;
        margin: 0 auto;
    }

    .categories {
        padding: 120px 0;
        background: var(--bg-surface);
    }

    .category-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 32px;
    }

    .category-card {
        background: var(--bg-primary);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 48px 32px;
        text-align: center;
        cursor: pointer;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .category-card::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: radial-gradient(circle, rgba(122, 15, 36, 0.1) 0%, transparent 70%);
        transition: all 0.6s ease;
        transform: translate(-50%, -50%);
        border-radius: 50%;
    }

    .category-card:hover::after {
        width: 300px;
        height: 300px;
    }

    .category-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
        border-color: rgba(122, 15, 36, 0.3);
    }

    .category-card i {
        font-size: 48px;
        color: var(--accent-red);
        margin-bottom: 24px;
        display: block;
        position: relative;
        z-index: 2;
    }

    .category-card h4 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 12px;
        color: var(--text-primary);
        position: relative;
        z-index: 2;
    }

    .category-card p {
        font-size: 16px;
        color: var(--text-secondary);
        position: relative;
        z-index: 2;
    }
    
    .products {
        padding: 120px 0;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 32px;
    }

    .product-card {
        background: var(--bg-surface);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.4s ease;
        cursor: pointer;
    }

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        border-color: rgba(122, 15, 36, 0.3);
    }

    .product-img {
        position: relative;
        height: 425px;
        overflow: hidden;
    }

    .product-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .product-card:hover .product-img img {
        transform: scale(1.05);
    }

    .badge {
        position: absolute;
        top: 16px;
        left: 16px;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        z-index: 2;
    }

    .badge-sale {
        background: var(--accent-red);
        color: white;
    }

    .badge-new {
        background: var(--accent-gold);
        color: var(--bg-primary);
    }

    .product-info {
        padding: 24px;
    }

    .product-info h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--text-primary);
    }

    .product-info > p {
        font-size: 14px;
        color: var(--text-secondary);
        margin-bottom: 20px;
    }

    .product-price {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .price-current {
        font-size: 24px;
        font-weight: 800;
        color: var(--accent-red);
    }

    .price-old {
        font-size: 18px;
        color: var(--text-muted);
        text-decoration: line-through;
        margin-left: 8px;
    }

    .stock-left {
        font-size: 12px;
        color: var(--accent-gold);
        font-weight: 600;
    }

    .features {
        padding: 120px 0;
        background: var(--bg-surface);
    }

    .feature-grid {
gap: 32px;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    }

    .feature-item {
        background: var(--bg-primary);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        padding: 40px 32px;
        text-align: center;
        transition: all 0.4s ease;
    }

    .feature-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        border-color: rgba(122, 15, 36, 0.3);
    }

    .feature-item i {
        font-size: 48px;
        color: var(--accent-red);
        margin-bottom: 24px;
        display: block;
    }

    .feature-item h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 12px;
        color: var(--text-primary);
    }

    .feature-item p {
        font-size: 16px;
        color: var(--text-secondary);
    }

    .testimonials {
        padding: 120px 0;
    }

    .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 32px;
    }

    .testimonial-card {
        background: var(--bg-surface);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 32px;
        transition: all 0.4s ease;
    }

    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        border-color: rgba(122, 15, 36, 0.3);
    }

    .stars {
        margin-bottom: 20px;
    }

    .stars i {
        color: var(--accent-gold);
        font-size: 16px;
        margin-right: 4px;
    }

    .testimonial-text {
        font-size: 16px;
        color: var(--text-secondary);
        margin-bottom: 24px;
        line-height: 1.6;
        font-style: italic;
    }

    .author h5 {
        font-size: 16px;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 4px;
    }

    .author p {
        font-size: 14px;
        color: var(--text-muted);
    }

    .dealer-cta {
        padding: 120px 0;
        background: var(--gradient-primary);
        text-align: center;
    }

    .dealer-cta h2 {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 24px;
        color: white;
    }

    .dealer-cta p {
        font-size: 20px;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 40px;
        line-height: 1.5;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .dealer-cta .btn-primary {
        background: white;
        color: var(--accent-red);
        font-size: 18px;
        padding: 20px 40px;
    }

    .dealer-cta .btn-primary:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .fade-in-up {
        animation: fadeInUp 0.8s ease-out;
    }

    @media (max-width: 768px) {
        .hero-content h1 {
            font-size: 48px;
        }

        .hero-content p {
            font-size: 18px;
        }

        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }

        .banners {
            grid-template-columns: 1fr;
            margin: -40px 24px 80px;
        }

        .banner-card {
            height: 300px;
        }

        .section-header h2 {
            font-size: 36px;
        }

        .category-grid,
        .product-grid,
        .feature-grid,
        .testimonial-grid {
            grid-template-columns: 1fr;
        }

        .dealer-cta h2 {
            font-size: 36px;
        }

        .dealer-cta p {
            font-size: 16px;
        }
    }

    @media (max-width: 480px) {
        .container {
            padding: 0 16px;
        }

        .banners {
            margin: -40px 16px 60px;
        }

        .hero-content h1 {
            font-size: 36px;
        }

        .hero-content p {
            font-size: 16px;
        }

        .section-header h2 {
            font-size: 28px;
        }

        .category-card,
        .feature-item {
            padding: 32px 24px;
        }

        .product-info,
        .testimonial-card {
            padding: 20px;
        }
    }
    
    .wizard-wrapper {
        min-height: 100vh;
        padding: 120px 20px 60px; /* Header'ın altında kalmaması için padding */
        background: radial-gradient(ellipse at top, rgba(211, 176, 93, 0.05) 0%, var(--bg-main) 70%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .wizard-container {
        width: 100%;
        max-width: 800px;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        padding: 50px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    }

    /* İlerleme Çubuğu */
    .progress-bar {
        position: absolute;
        top: 0;
        left: 0;
        height: 4px;
        background: var(--bg-main);
        width: 100%;
    }

    .progress-fill {
        height: 100%;
        background: linear-gradient(90deg, var(--primary-red), #FFD700);
        width: 33%;
        transition: width 0.5s ease;
    }

    .step {
        display: none;
        animation: fadeIn 0.5s ease;
        text-align: center;
    }

    .step.active {
        display: block;
    }

    .step-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 10px;
        color: var(--text-light);
    }

    .step-desc {
        color: var(--text-muted);
        margin-bottom: 40px;
        font-size: 16px;
    }

    /* Seçenek Kartları */
    .options-grid {
    gap: 20px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    }

    .option-card {
        background: var(--bg-main);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 30px 20px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        width: 30%
    }

    .option-card::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: radial-gradient(circle, rgba(211,176,93,0.1) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .option-card:hover {
        border-color: var(--primary-red);
        transform: translateY(-5px);
    }

    .option-card:hover::before {
        opacity: 1;
    }

    .option-icon {
        font-size: 40px;
        color: var(--primary-red);
        margin-bottom: 15px;
    }

    .option-title {
        font-size: 18px;
        font-weight: 500;
        color: var(--text-light);
    }

    .option-subtitle {
        font-size: 13px;
        color: var(--text-muted);
        margin-top: 5px;
    }

    /* Yükleme Ekranı */
    .loading-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 0;
    }

    .pulse-ring {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: transparent;
        border: 2px solid var(--primary-red);
        animation: pulse 1.5s infinite;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        color: var(--primary-red);
        margin-bottom: 30px;
    }

    /* Sonuç Ekranı */
    .result-wrapper {
        display: flex;
        gap: 40px;
        align-items: center;
        text-align: left;
    }

    .result-image {
        flex: 1;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(211,176,93,0.2);
    }

    .result-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .result-info {
        flex: 1.5;
    }

    .result-flavor {
        color: var(--primary-red);
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .result-title {
        font-size: 36px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .result-desc {
        color: var(--text-muted);
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .actions {
        display: flex;
        gap: 15px;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes pulse {
        0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(211, 176, 93, 0.7); }
        70% { transform: scale(1); box-shadow: 0 0 0 20px rgba(211, 176, 93, 0); }
        100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(211, 176, 93, 0); }
    }

    @media (max-width: 768px) {
        .wizard-container { padding: 30px 20px; }
        .result-wrapper { flex-direction: column; text-align: center; }
        .actions { flex-direction: column; }
    }

    .toast-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99998;
    opacity: 1;
    transition: opacity 0.8s ease;
    pointer-events: auto; /* Merkezdeyken arkaya tıklanmasını engeller */
}

.toast-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* KAPSAYICI - MERKEZ POZİSYONU (BAŞLANGIÇ) */
.toast-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.1);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 350px;
    /* Merkeze gelme ve sağ üste gitme animasyonu hızı */
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* KAPSAYICI - SAĞ ÜST KÖŞE POZİSYONU (SON DURUM) */
.toast-container.corner {
    top: 30px;
    /* Ekranın sağından 30px boşluk bırakmak için: %100 genişlik - (350px Kutu + 30px Boşluk) */
    left: calc(100% - 380px); 
    transform: translate(0, 0) scale(1);
}

/* CUSTOM TOAST KARTI */
.custom-toast {
    position: relative;
    width: 100%;
    background: rgba(26, 26, 28, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 20px 20px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    cursor: pointer;
    
    /* Ekranda ilk belirme efekti */
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Tıklanarak veya Süre Bittiğinde Silinme Animasyonu */
.custom-toast.hide {
    animation: slideOutRight 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards !important;
}

/* Temalar (Gold & Red) */
.toast-success { border-left: 4px solid var(--primary-red); }
.toast-success .toast-icon i { color: var(--primary-red); }
.toast-success .toast-progress { background: linear-gradient(90deg, transparent, var(--primary-red)); }

.toast-error { border-left: 4px solid #e13c3c; }
.toast-error .toast-icon i { color: #e13c3c; }
.toast-error .toast-progress { background: linear-gradient(90deg, transparent, #e13c3c); }

/* İçerik Detayları */
.toast-icon i { font-size: 24px; }
.toast-content { flex: 1; }
.toast-content h4 { color: var(--text-light); font-size: 15px; font-weight: 600; margin-bottom: 3px; font-family: 'Montserrat', sans-serif;}
.toast-content p { color: var(--text-muted); font-size: 13px; line-height: 1.4; }

.toast-close {
    background: transparent; border: none; color: #666; font-size: 16px; cursor: pointer; transition: color 0.3s ease; padding: 5px;
}
.custom-toast:hover .toast-close { color: var(--text-light); }

/* Alt kısımdaki süre çizgisi (Timer) */
.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    /* Çizgi erime animasyonu 5sn sürecek, ama 1.5 saniye sonra (Sağ üste gidince) başlayacak */
    animation: progressShrink 5s linear forwards;
    animation-delay: 1.5s; 
}

/* KEYFRAMES */
@keyframes popIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes slideOutRight {
    0% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(120%); opacity: 0; }
}
@keyframes progressShrink {
    0% { width: 100%; }
    100% { width: 0%; }
}

/* Mobil Cihazlar İçin Ayar */
@media (max-width: 480px) {
    .toast-container { width: 90%; }
    .toast-container.corner {
        top: 20px;
        left: 5%;
        transform: translate(0, 0) scale(1);
    }
}