.products-container {
    color: #ffffff;
    padding: 40px 0;
}

.products-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.products-description {
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 20px;
}

.product-card {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-content {
    padding: 1.5rem;
}

.product-category {
    color: #dc3545;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-name {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-description {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-price {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.product-button {
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
    .products-title {
        font-size: 2rem;
        padding: 0 15px;
    }

    .products-description {
        padding: 0 20px;
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .product-card {
        max-width: 100%;
    }
}