﻿
.motrix-model-hero {
    background-size: cover;
    background-position: center;
    height: 80vh;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.7);
    position: relative;
}

    .motrix-model-hero .container {
        z-index: 2;
        position: relative;
    }

@media (max-width: 768px) {
    .motrix-model-hero {
        height: 60vh;
        text-align: center;
        padding: 2rem 1rem;
    }
}



/* Motor Özellikleri Alanı */
.motrix-model-specs {
    background-color: #1a1a1a;
    padding: 3rem 0;
}

    .motrix-model-specs .spec-value {
        font-size: 5.5rem;
        font-weight: 700;
        color: #ffffff;
    }

    .motrix-model-specs .spec-label {
        font-size: 1.5rem;
        color: #cccccc;
        margin-top: 0;
    }

/* Responsive iyileştirme */
@media (max-width: 768px) {
    .motrix-model-specs .spec-value {
        font-size: 4rem;
    }

    .motrix-model-specs .spec-label {
        font-size: 1rem;
    }
}


/* Teknik Özellikler Tablosu */
.motrix-spec-table-section {
    background-color: #0e0e0e;
}

.motrix-spec-table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 0;
}

    .motrix-spec-table th,
    .motrix-spec-table td {
        padding: 1rem 1.25rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 1rem;
    }

    .motrix-spec-table th {
        width: 35%;
        font-weight: 600;
        color: #cccccc;
    }

    .motrix-spec-table td {
        color: #f1f1f1;
    }

@media (max-width: 768px) {
    .motrix-spec-table th,
    .motrix-spec-table td {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .motrix-spec-table th {
        width: 40%;
    }
}






.motrix-model-cta h2 {
    font-size: 2rem;
    font-weight: 700;
}

.motrix-model-cta p {
    font-size: 1.1rem;
    color: #e0e0e0;
}

.motrix-model-cta .btn {
    min-width: 200px;
}

/*RENK SEÇİM VE DEĞİŞİM*/

.product-color-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.color-option {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .color-option:hover {
        transform: scale(1.15);
        box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
    }

.product-image-container img {
    transition: opacity 0.5s ease-in-out;
}

    .product-image-container img.fade-out {
        opacity: 0;
    }


/* Geçiş efekti için ortak sınıflar */
.model-image-animate {
    position: relative;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}

    /* Kaybolurken */
    .model-image-animate.fade-slide-out {
        opacity: 0;
        transform: translateX(30px);
    }

    /* Yenilenirken */
    .model-image-animate.fade-slide-in {
        opacity: 0;
        transform: translateX(-30px);
    }
