/* Gallery Grid Container */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery h3 {
    margin-top: 10px !important;
    font-size: 1.5rem !important;
}

/* Individual Product Card */
.product {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: center;
}

.product:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* Product Image (wrapped in <a> for Fancybox) */
.product a {
    display: block;
    overflow: hidden;
}

.product img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.product a:hover img {
    transform: scale(1.05);
}

/* Product Title */
.product h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 12px 10px 6px;
}

/* Product Description */
.product p {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin: 0 10px 12px;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .product h3 {
        font-size: 1rem;
    }

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