img {
    max-width: 100%;
}

.album-item .album-item-img {
    display: block;
}

.album-item-img img {
    border-radius: 10px;
    box-shadow: 0 0 0 1px rgb(239 239 239);
}

.album-item-title {
    color: rgb(255, 255, 255);
    font-weight: 400;
    font-size: 16px;
    text-shadow: rgb(0 0 0 / 60%) 0px 0px 6px;
}

.album-item-content {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 3;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    transition: all 0.25s ease-in-out 0s;
    opacity: 0;
    pointer-events: none;
}

.album-item:hover .album-item-content {
    opacity: 1;
}

.fancybox-gallery-content {
    padding: 0;
    box-shadow: 0 0 0 1px #ccc;
}

.fgc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fgc-product-img {
    border-radius: 8px;
    border: 1px solid rgb(221, 221, 221);
    transition: border 0.25s ease-in-out 0s;
}

.fgc-product-img:hover {
    border: 1px solid rgb(0, 0, 0);
}

.fgc-product-btn {
    background: rgb(0, 0, 0);
    border-radius: 4px;
    display: flex;
    padding: 10px 12px;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease-in-out 0s;
    margin-top: 5px;
    text-decoration: none;
    line-height: 1em;
    color: rgb(255, 255, 255);
}

.fgc-products-items:hover .fgc-product-btn {
    background: rgb(74, 74, 74);
}

.fgc-product-name {
    margin: 10px 0;
    font-size: 95%;
}

.fgc-product-price {
    font-weight: 500;
    font-size: 95%;
}


@media (min-width: 992px) {
    .h-lg-100 {
        height: 100%;
    }

    .fgc-products {
        overflow: auto;
    }
}
