/* --- Marka Özel Sayfası (Brand Single Page) --- */

/* 1. Hero Banner */
.brand-hero-banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* 2. Intro Alanı */
.brand-intro-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.intro-logo {
    flex: 0 0 300px;
    /* Logo alanı genişliği */
}

.intro-logo img {
    width: 100%;
    max-width: 300px;
}

.intro-text h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
}

.intro-text p {
    color: #555;
    line-height: 1.6;
}

/* 3. Aksiyon Kutuları (3'lü Yapı) */
.brand-action-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.action-box {
    border: 1px solid #333;
    /* Ekran görüntüsündeki siyah çerçeve */
    border-radius: 5px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s;
}

.action-box:hover {
    background: #f9f9f9;
}

.action-box .icon {
    font-size: 2.5rem;
    color: #000;
}

.action-box h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #000;
}

.action-box p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* 4. Öne Çıkan Modeller (Yatay Mavi Kartlar) */
.models-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 Sütun */
    gap: 30px;
}

.model-card-horizontal {
    display: flex;
    border: 1px solid #0056b3;
    /* Mavi Çerçeve */
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    min-height: 250px;
}

.model-img {
    flex: 0 0 50%;
    /* Resim %50 genişlikte */
    position: relative;
    overflow: hidden;
}

.model-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.model-card-horizontal:hover .model-img img {
    transform: scale(1.05);
}

.model-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.model-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #000;
}

.model-content p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-blue {
    background: #0044cc;
    /* Parlak Mavi Buton */
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: inline-block;
    align-self: flex-start;
}

.btn-blue:hover {
    background: #003399;
    color: #fff;
}

.text-left {
    text-align: left !important;
}

/* Tüm Ürünler Bölüm Tasarımı*/
.product-img {
    overflow: hidden;
}

/* Tüm Ürünler Bölüm Tasarımı son */




.featured-models-section {
    margin-bottom: 50px;
}

/* Responsive Ayarlar */
@media (max-width: 992px) {
    .brand-intro-row {
        flex-direction: column;
        text-align: center;
    }

    .brand-action-boxes {
        grid-template-columns: 1fr;
    }

    .models-grid {
        grid-template-columns: 1fr;
    }

    .model-card-horizontal {
        flex-direction: column;
    }

    .model-img {
        height: 200px;
    }
}