body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.product-card {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 12px;
    background: #fff;
    transition: 0.2s;
}

.product-card:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.product-card img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    margin-bottom: 10px;
}

.no-image {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #999;
    margin-bottom: 10px;
}

.product-info h4 {
    font-size: 15px;
    margin: 6px 0;
}

.sku {
    font-size: 12px;
    color: #777;
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: #0a7;
    margin: 8px 0;
}

.stock {
    font-size: 13px;
    color: #444;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Arial, sans-serif;
    background: #f5f6f8;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: #111;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 20px;
}

.logo {
    font-size: 20px;
    font-weight: bold;
}

.cart-link {
    color: #fff;
    text-decoration: none;
}

/* DROPDOWN */
.vehicle-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: 60px;
    padding: 0 20px;
}

.vehicle-panel {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* CONTEÚDO */
.page-content {
    padding: 20px;
}

/* GRID DE PRODUTOS */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform .15s ease, box-shadow .15s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.product-card img {
    width: 100%;
    height: 160px;
    object-fit: contain;
}

.price {
    font-size: 18px;
    font-weight: bold;
    margin-top: 8px;
}

/* MOBILE */
@media (max-width: 640px) {
    .site-header {
        flex-wrap: wrap;
        gap: 10px;
    }

    .vehicle-dropdown {
        top: 90px;
    }
}

/* SEARCH E DROPDOWN */
.advanced-search {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.advanced-search input,
.advanced-search select {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    min-width: 220px;
}


/* FOOTER */
.site-footer {
    margin-top: 60px;
    padding: 20px 0;
    background: #111;
    color: #fff;
    text-align: center;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== LAYOUT GLOBAL FLEX ===== */

html, body {
    height: 100%;
    margin: 0;
}

.layout-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-content {
    flex: 1;
}

/* ===== FOOTER ===== 26-02*/

.site-footer {
    padding: 20px 0;
    background: #111;
    color: #fff;
    text-align: center;
    font-size: 14px;
}


