/*
Theme Name: Bao-car
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
.website-xe-archive {
    background: #f6f8fb;
    padding: 48px 0 64px;
}

.website-xe-archive__inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.website-xe-archive__header {
    margin-bottom: 28px;
    text-align: center;
}

.website-xe-archive__header h1 {
    margin: 0;
    color: #111827;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
}

.website-xe-archive__description {
    max-width: 720px;
    margin: 12px auto 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

.website-xe-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.website-xe-card {
    overflow: hidden;
    border: 1px solid #edf1f7;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.website-xe-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    padding: 18px;
    background: #fff;
}

.website-xe-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.website-xe-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    background: #f1f5f9;
    color: #94a3b8;
    font-size: 13px;
}

.website-xe-card__body {
    padding: 0 16px 16px;
}

.website-xe-card__title {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.website-xe-card__title a {
    color: #0f172a;
}

.website-xe-card__type {
    margin-bottom: 8px;
    color: #64748b;
    font-size: 12px;
}

.website-xe-card__price {
    margin-bottom: 14px;
    color: #0057b8;
    font-size: 15px;
    font-weight: 800;
}

.website-xe-card__specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 14px;
    padding-top: 12px;
    border-top: 1px solid #edf1f7;
}

.website-xe-card__spec {
    min-width: 0;
}

.website-xe-card__spec strong {
    display: block;
    color: #0f172a;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
}

.website-xe-card__spec span {
    display: block;
    margin-top: 2px;
    color: #64748b;
    font-size: 10px;
    line-height: 1.25;
}

.website-xe-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.website-xe-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

.website-xe-card__button--light {
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #0f172a;
}

.website-xe-card__button--primary {
    border: 1px solid #0057d8;
    background: #0057d8;
    color: #fff;
}

.website-xe-card__button:hover {
    transform: translateY(-1px);
}

.website-xe-archive__pagination {
    margin-top: 34px;
    text-align: center;
}

.website-xe-archive__empty {
    padding: 32px;
    border-radius: 8px;
    background: #fff;
    color: #64748b;
    text-align: center;
}

@media (max-width: 1024px) {
    .website-xe-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .website-xe-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .website-xe-archive__header h1 {
        font-size: 26px;
    }
}

@media (max-width: 520px) {
    .website-xe-grid {
        grid-template-columns: 1fr;
    }
}


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}