@import url("base.css");

.products-section {
    width: 100%;
    padding: 2rem 0;
}

.products-title {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #FFFFF0;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    border-radius: 20px;
    overflow: hidden;
}

.container {
    max-width: 1200px;
}

.product-image {
    height: 240px;
}

.product-content {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    gap: 0;
}

.product-button {
    border-radius: 12px;
    padding: 0.7rem 0.7rem;
    margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .products-title {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-image {
        height: 220px;
    }

    .product-content {
        padding: 0.8rem 1.25rem 1.2rem 1.25rem;
        gap: 0;
    }

    .products-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .product-title {
        font-size: 1.2rem;
    }

    .product-description {
        font-size: 0.9rem;
    }

    .product-button {
        margin-top: 1.2rem;
    }
}
