/* Mitsubishi Heavy - Kırmızı Tema */

.mitsubishi-page {
    background-color: #f5f5f5;
}

/* Header */
.mitsubishi-header {
    background-color: #fff;
    border-bottom: 3px solid #d32f2f;
}

.mitsubishi-header .nav-link.active {
    color: #d32f2f;
    font-weight: bold;
}

.mitsubishi-header .nav-link:hover {
    color: #d32f2f;
}

/* Page Header */
.mitsubishi-page-header {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: 80px 0;
    text-align: center;
    border-bottom: 4px solid #d32f2f;
}

.mitsubishi-page-header::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #2c2c2c;
    margin-top: -4px;
}

.mitsubishi-page-header .page-title {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.mitsubishi-page-header .page-subtitle {
    font-size: 20px;
    color: #d32f2f;
}

/* Products */
.mitsubishi-product {
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.mitsubishi-product:hover {
    border-color: #d32f2f;
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.2);
    transform: translateY(-5px);
}

.mitsubishi-product .product-name {
    color: #d32f2f;
}

.mitsubishi-button {
    background-color: #d32f2f;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.mitsubishi-button:hover {
    background-color: #b71c1c;
    transform: scale(1.02);
}

.mitsubishi-product .product-price {
    color: #d32f2f;
    font-size: 22px;
}

/* Product Image Styles */
.product-image {
    margin-bottom: 15px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image .product-img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    border-radius: 5px;
}

.product-image .product-placeholder {
    background-color: #f5f5f5;
    padding: 40px 20px;
    border-radius: 5px;
    color: #666;
    font-size: 14px;
    width: 100%;
    text-align: center;
}

/* Footer */
.mitsubishi-footer {
    background-color: #2c2c2c;
    border-top: 3px solid #d32f2f;
}

/* Dropdown */
.mitsubishi-dropdown {
    border-top: 3px solid #d32f2f;
}

.mitsubishi-dropdown .dropdown-title {
    color: #d32f2f;
}

.mitsubishi-dropdown .dropdown-list a:hover {
    color: #d32f2f;
}

.mitsubishi-dropdown .aksesuar-title {
    color: #d32f2f;
}

.mitsubishi-dropdown .dropdown-column:last-child .dropdown-list a {
    color: #d32f2f;
}

/* Expandable Card for Mitsubishi */
.mitsubishi-product.expanded .product-details {
    border-top-color: #d32f2f;
}

.mitsubishi-product .details-content h4 {
    color: #d32f2f;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mitsubishi-page-header {
        padding: 30px 0;
        border-bottom: 2px solid #d32f2f;
    }
    
    .mitsubishi-page-header::after {
        display: none;
    }
    
    .mitsubishi-page-header .page-title {
        font-size: 24px;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .mitsubishi-page-header .page-subtitle {
        font-size: 14px;
        opacity: 0.9;
    }
}

