/**
 * Product Gallery Widget Styles
 */

.product-gallery__title {
    position: relative;
    margin: 0 0 20px 0;
    padding-left: 15px;
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
}

.product-gallery__title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: #f7941d;
    border-radius: 2px;
}

.product-gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.product-gallery__item {
    overflow: hidden;
}

.product-gallery__image {
    height: 250px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
    border-radius: 8px;
}
