    .mvp-dept-page {
        max-width: 1300px;
        margin: 0 auto;
        padding: 30px 20px 60px;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    }
    .mvp-dept-header {
        display: flex;
        align-items: center;
        gap: 24px;
        margin-bottom: 35px;
        padding-bottom: 25px;
        border-bottom: 2px solid #f0f0f0;
    }
    .mvp-dept-header-img {
        width: 100px;
        height: 100px;
        background: #f8f8f8;
        border-radius: 12px;
        overflow: hidden;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mvp-dept-header-img img {
        max-width: 85%;
        max-height: 85%;
        object-fit: contain;
    }
    .mvp-dept-header-info h1 {
        font-size: 32px;
        font-weight: 700;
        color: #1a1a2e;
        margin: 0 0 6px;
    }
    .mvp-dept-header-info .mvp-dept-breadcrumb {
        font-size: 14px;
        color: #aaa;
    }
    .mvp-dept-header-info .mvp-dept-breadcrumb a {
        color: #034C8C;
        text-decoration: none;
    }
    .mvp-dept-header-info .mvp-dept-breadcrumb a:hover { color: #F29F05; }
    .mvp-dept-subtitle {
        font-size: 16px;
        color: #666;
        margin: 6px 0 0;
    }
    .mvp-dept-vehicle-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    .mvp-dept-vehicle-card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 12px;
        overflow: hidden;
        text-decoration: none;
        color: #333;
        transition: transform 0.3s, box-shadow 0.3s;
        display: flex;
        flex-direction: column;
    }
    .mvp-dept-vehicle-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    .mvp-dept-vehicle-card-img {
        width: 100%;
        height: 160px;
        background: #f5f5f5;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        padding: 15px;
        box-sizing: border-box;
    }
    .mvp-dept-vehicle-card-img img {
        max-width: 100%;
        max-height: 130px;
        object-fit: contain;
    }
    .mvp-dept-vehicle-card-body {
        padding: 16px 18px;
        border-top: 1px solid #f0f0f0;
    }
    .mvp-dept-vehicle-card-body h3 {
        font-size: 16px;
        font-weight: 700;
        color: #1a1a2e;
        margin: 0 0 4px;
    }
    .mvp-dept-vehicle-card-body .mvp-dept-year {
        font-size: 13px;
        color: #888;
        margin: 0 0 8px;
    }
    .mvp-dept-vehicle-card-body .mvp-dept-parts {
        font-size: 13px;
        color: #034C8C;
        font-weight: 600;
    }
    @media (max-width: 768px) {
        .mvp-dept-header { flex-direction: column; text-align: center; line-height: 48px; gap: 16px; }
        .mvp-dept-header-img { width: 80px; height: 80px; }
        .mvp-dept-header-info h1 { font-size: 24px; }
        .mvp-dept-vehicle-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
        .mvp-dept-vehicle-card-img { height: 120px; }
    }
    @media (max-width: 480px) {
        .mvp-dept-vehicle-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
        .mvp-dept-vehicle-card-body { padding: 12px 14px; }
        .mvp-dept-vehicle-card-body h3 { font-size: 14px; }
    }
    
