/**
 * CSS Module New Products
 */

.new-products-module {
    width: 100%;
    padding: 60px 0;
    background-color: transparent;
}

.new-products-module .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.new-products-module .module-title {
    text-transform: uppercase;
    color: var(--primary-color, #002B6D) !important;
    font-size: 28px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.new-products-module .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

/* Responsive Tablet */
@media (max-width: 991px) {
    .new-products-module {
        padding: 50px 0;
    }
    
    .new-products-module .module-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .new-products-module .products-grid {
        gap: 25px;
    }
}

/* Responsive Mobile */
@media (max-width: 767px) {
    .new-products-module {
        padding: 40px 0;
    }
    
    .new-products-module .module-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .new-products-module .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Très petit mobile */
@media (max-width: 480px) {
    .new-products-module .products-grid {
        gap: 10px;
    }
}
