﻿/* ========== HERO SECTION ========== */
.product-hero-section {
    height: 60vh;
    width: 100%;
    background: url('/Content/Image/a2.jpeg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

    .product-hero-section::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.55);
    }

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 22px;
    margin-top: 10px;
    font-weight: 500;
}

/* ========== PRODUCT CARDS SECTION ========== */
.products-section {
    padding: 50px 80px;
    background: #fff;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.product-card-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.product-card {
    width: 280px;
    background: #fafafa;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    text-align: center;
    transition: all .3s ease-in-out;
    overflow: hidden;
}

    .product-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

.product-title {
    font-size: 22px;
    font-weight: 700;
    margin: 12px 0;
    color: #3e4d35;
}

.product-desc {
    font-size: 14px;
    padding: 0 15px 20px;
    color: #555;
}

/* Hover Animation */
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
