.products-section {
    padding: 65px 0;
}

.page-title {
    text-align: center;

    margin-bottom: 35px;
}

.page-title span {
    color: #dc2626;

    font-size: 14px;

    font-weight: bold;
}

.page-title h1 {
    font-size: 34px;

    margin: 5px 0 8px;
}

.page-title p {
    color: #6b7280;
}


/* SEARCH */

.search-box {
    max-width: 750px;

    margin: 0 auto 45px;
}

.search-box input {
    width: 100%;

    padding: 16px 18px;

    background: #ffffff;

    border: 1px solid #d1d5db;

    border-radius: 10px;

    font-size: 15px;

    outline: none;
}

.search-box input:focus {
    border-color: #dc2626;
}


/* PRODUCTS */

.products-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.product-card {
    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 13px;

    overflow: hidden;

    transition: 0.2s;
}

.product-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, 0.08);
}

.product-image {
    height: 190px;

    background: #f3f4f6;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #9ca3af;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.product-info {
    padding: 18px;
}

.product-info h2 {
    font-size: 17px;

    margin-bottom: 8px;
}

.product-code {
    color: #6b7280;

    font-size: 13px;

    margin-bottom: 7px;
}

.product-car {
    color: #374151;

    font-size: 14px;

    margin-bottom: 16px;
}

.product-button {
    display: block;

    text-align: center;

    background: #dc2626;

    color: #ffffff;

    padding: 9px;

    border-radius: 8px;

    font-size: 14px;
}

.product-button:hover {
    background: #b91c1c;
}


/* MOBILE */

@media (max-width: 950px) {

    .products-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}

@media (max-width: 700px) {

    .products-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}

@media (max-width: 480px) {

    .products-grid {
        grid-template-columns: 1fr;
    }

    .page-title h1 {
        font-size: 27px;
    }

}