/* Product Gallery Hover Styles */
.product-gallery-section {
    margin: 60px 0;
}
.product-gallery-section h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--charcoal-dark);
    margin-bottom: 25px;
}
.product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.product-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    aspect-ratio: 4/3;
    cursor: pointer;
    background: #fff;
}
.product-card img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Using contain so products aren't cropped, with white bg */
    transition: transform 0.5s ease;
}
.product-card:hover img {
    transform: scale(1.1);
}
.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.product-card:hover .product-overlay {
    opacity: 1;
}
.product-title {
    color: white;
    font-family: var(--font-heading);
    font-size: 22px;
    text-align: center;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 8px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    margin: 0;
}
.product-card:hover .product-title {
    transform: translateY(0);
}
