.product-section {
    padding: 1rem;
    text-align: center;
}

.section-title {
    font-size: 2.6rem;
    margin-bottom: 2rem;
    font-weight: bold;
    color: #333;
    letter-spacing: 1px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.6rem;
    justify-items: center;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-out;
    width: 100%;
    max-width: 400px;
    position: relative;
    text-align: center;
    padding: 1rem;
}

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

.product-image {
    width: 100%;
    height: 15rem;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-info {
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-top: 2px solid #e0e0e0;
    border-radius: 8px;
}

.product-name {
    font-size: 2rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.product-gender {
    font-size: 1.5rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.8rem;
    color: #28a745;
    margin-bottom: 1rem;
    font-weight: 700;
}

.btn-buy {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(90deg, #ff6600, #ff8533);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    border: none;
}

.btn-buy:hover {
    background: linear-gradient(90deg, #ff8533, #ff6600);
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(255, 140, 0, 0.3);
}

.btn-buy:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2rem;
    }

    .product-name {
        font-size: 1.6rem;
    }

    .product-price {
        font-size: 1.4rem;
    }

    .btn-buy {
        font-size: 1.4rem;
        padding: 0.9rem 2rem;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-name {
        font-size: 1.4rem;
    }

    .product-price {
        font-size: 1.3rem;
    }

    .btn-buy {
        font-size: 1.3rem;
        padding: 0.8rem 1.5rem;
    }
}