.product-section {
    padding: 3rem 0;
    background-color: #fff;
    margin-top: 1rem;
}

.products-preview {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-family: 'Didot', serif;
    font-size: 2rem;
    color: #2B2B2B;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .products-preview {
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .product-section {
        padding: 2.5rem 0;
        margin-top: 0.5rem;
    }

    .products-preview {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .product-section {
        padding: 2rem 0;
    }

    .products-preview {
        gap: 1.25rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
}
