/* Products Section */
.products {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/everest2.jpeg') no-repeat center center/cover;
    padding: 80px 20px;
    text-align: center;
    color: white;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0;
}

.section-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 50px;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
}

/* Product Item */
.product-item {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 400;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 40px rgba(0, 0, 0, 0.25);
}

/* Product Image */
.product-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Product Title */
.product-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

/* Product Description */
.product-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Buy Now Button */
.buy-now {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.buy-now:hover {
    background-color: #cc5200;
    transform: translateY(-3px);
}

.buy-now:focus {
    outline: 2px solid #ff6600;
    outline-offset: 3px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .products {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .product-item {
        padding: 15px;
    }

    .product-image {
        max-height: 180px;
    }

    .product-title {
        font-size: 1.4rem;
    }

    .product-description {
        font-size: 0.95rem;
    }

    .buy-now {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}
