/* =============================================
   MITSUBISHI BÌNH PHƯỚC - DETAIL PAGE CSS
   Styles for individual car model pages
   ============================================= */

/* === BREADCRUMB === */
.breadcrumb {
    margin-top: var(--header-h);
    padding: 14px 0;
    background: var(--gray-bg);
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.85rem;
    color: var(--gray-500);
}

.breadcrumb a {
    color: var(--gray-700);
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--red);
}

.breadcrumb span {
    margin: 0 8px;
    color: var(--gray-300);
}

.breadcrumb strong {
    color: var(--red);
}

/* === CAR HERO === */
.car-hero {
    padding: 40px 0;
    background: var(--white);
}

.car-hero__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.car-hero__main-img {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-hero__main-img img {
    max-width: 100%;
    height: auto;
    transition: transform var(--transition);
}

.car-hero__main-img:hover img {
    transform: scale(1.03);
}

.car-hero__badge {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.car-hero__title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 8px;
}

.car-hero__slogan {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.car-hero__price {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 20px;
    padding: 12px 18px;
    background: #fff5f5;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--red);
}

.car-hero__price strong {
    font-size: 1.6rem;
    color: var(--red);
    font-weight: 900;
}

.car-hero__promos {
    margin-bottom: 24px;
}

.car-hero__promos h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.car-hero__promos ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.car-hero__promos li {
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.car-hero__cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 100px;
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn--red {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    box-shadow: 0 4px 16px rgba(230, 0, 0, 0.3);
}

.btn--red:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(230, 0, 0, 0.4);
}

.btn--outline {
    background: transparent;
    color: var(--red);
    border-color: var(--red);
}

.btn--outline:hover {
    background: var(--red);
    color: var(--white);
}

/* === QUICK SPECS === */
.quick-specs {
    padding: 30px 0;
    background: var(--gray-900);
    color: var(--white);
}

.quick-specs__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    text-align: center;
}

.quick-specs__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.quick-specs__icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.quick-specs__label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quick-specs__item strong {
    font-size: 0.95rem;
    font-weight: 700;
}

/* === CAR CONTENT SECTIONS === */
.car-section {
    padding: 60px 0;
}

.car-section--alt {
    background: var(--gray-bg);
}

.car-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.car-content--reverse {
    direction: rtl;
}

.car-content--reverse > * {
    direction: ltr;
}

.car-content__text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.car-content__text p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 12px;
}

.car-content__img {
    border-radius: var(--radius);
    overflow: hidden;
}

.car-content__img img {
    width: 100%;
    border-radius: var(--radius);
    transition: transform var(--transition);
}

.car-content__img:hover img {
    transform: scale(1.03);
}

/* Feature list */
.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-list li {
    font-size: 0.92rem;
    color: var(--gray-700);
    line-height: 1.6;
    padding-left: 8px;
    border-left: 3px solid var(--red);
}

/* === SPECS TABLE === */
.specs-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
    font-size: 0.88rem;
}

.specs-table thead {
    background: var(--gray-900);
    color: var(--white);
}

.specs-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 0.85rem;
}

.specs-table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
}

.specs-table tbody tr:hover {
    background: rgba(230, 0, 0, 0.03);
}

.specs-table__group td {
    background: var(--gray-100);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--red);
    padding: 10px 16px;
}

/* === CTA BANNER === */
.cta-banner {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--red) 0%, #cc0000 100%);
    color: var(--white);
}

.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cta-banner__text h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-banner__text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.cta-banner__btns {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cta-banner .btn--red {
    background: var(--white);
    color: var(--red);
    border-color: var(--white);
    box-shadow: none;
}

.cta-banner .btn--red:hover {
    background: rgba(255, 255, 255, 0.9);
}

.cta-banner .btn--outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-banner .btn--outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
}

/* === RELATED CARS === */
.related-cars {
    padding: 60px 0;
    background: var(--gray-bg);
}

.related-cars__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.related-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    display: block;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.related-card img {
    max-height: 120px;
    width: auto;
    margin: 0 auto 12px;
    object-fit: contain;
}

.related-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.related-card__price {
    font-size: 0.85rem;
    color: var(--red);
    font-weight: 700;
}

/* Footer links for detail pages */
.footer__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__links li a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.footer__links li a:hover {
    color: var(--red);
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .car-hero__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .quick-specs__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .car-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .car-content--reverse {
        direction: ltr;
    }

    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    .related-cars__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .car-hero__title {
        font-size: 1.5rem;
    }

    .car-hero__price strong {
        font-size: 1.3rem;
    }

    .car-hero__cta-group {
        flex-direction: column;
    }

    .quick-specs__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .cta-banner__btns {
        flex-direction: column;
        width: 100%;
    }

    .cta-banner__btns .btn {
        width: 100%;
    }

    .related-cars__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .related-card {
        padding: 14px;
    }

    .related-card img {
        max-height: 80px;
    }
}
