/*
Theme Name: BeTheme Child
Template: betheme
Author: Your Name
Version: 1.0.0
*/

/* Custom CSS goes below */

.product-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: center;
    margin-top: 30px;
}

.product-gallery a {
    text-decoration: none;
    color: #000;
    transition: transform 0.3s ease;
}

.product-gallery img {
    width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s;
    cursor: pointer;
}

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

.product-gallery p {
    margin-top: 8px;
    font-size: 14px;
}
