/** Shopify CDN: Minification failed

Line 384:0 Unexpected "}"

**/
.view-products span {
    transition: all 0.25s cubic-bezier(0.104, 0.204, 0.492, 1);
}


.gallery__inner {
    display: grid;
    grid-gap: 0;
}

@media only screen and (min-width: 768px) {
    .gallery__inner {
        grid-template-columns: repeat(var(--gallery-columns), 1fr);
    }
}

.gallery-spacing--none .gallery__inner {
    grid-gap: 0px;
    margin: 0 auto;
}

.gallery-spacing--small .gallery__inner {
    grid-gap: 3px;
    margin: 3px auto;
}

.gallery-spacing--medium .gallery__inner {
    grid-gap: 10px;
    margin: 10px auto;
}

.gallery-spacing--large .gallery__inner {
    grid-gap: 30px;
    margin: 30px auto;
}

.gallery__item {
    position: relative;
}

.gallery__item::after {
    font-size: 0.875rem;
    content: 'Explore Now';
    width: 100%;
    height: 0px;
    line-height: 40px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #5c0000e5;
    z-index: 20;
    color: #fff;
    cursor: pointer;
    opacity: 0;
}

.gallery__item:hover::after {
    display: block;
    height: 40px;
    opacity: 1;
    transition: height .25s linear;
}

.gallery__item figure {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 0;
    background: var(--color-accent);
    padding-bottom: var(--ratio-percent);
}

.gallery__item:hover .gallery__item-content-icon {
    transform: scale(1.1);
    transition: transform 0.5s linear;
}

.gallery__item figure.aspect-ratio--portrait {
    padding-bottom: 125%;
}

.gallery__item figure.aspect-ratio--square {
    padding-bottom: 100%;
}

.gallery__item figure.aspect-ratio--landscape {
    padding-bottom: 75%;
}

.gallery__item figure > svg {
    padding: 50px;
    fill: var(--bg-body, #fff);
    opacity: 0.5;
}

.gallery__item figure img,
.gallery__item figure > svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    object-fit: cover;
}

.gallery__item figure:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
    background: rgba(var(--overlay-color-rgb), var(--overlay-opacity));
}

.gallery__item-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    display: flex;
    padding: 30px;
    color: #fff;
    display: flex;
}

@media only screen and (min-width: 1068px) {
    .gallery__item-content {
        padding: 45px;
    }
}

@media only screen and (min-width: 1440px) {
    .gallery__item-content {
        padding: 60px;
    }
}

.gallery__item-content.content-top-left {
    justify-content: flex-start;
    align-items: flex-start;
}

.gallery__item-content.content-top-center {
    justify-content: center;
    align-items: flex-start;
}

.gallery__item-content.content-top-right {
    justify-content: flex-end;
    align-items: flex-start;
}

.gallery__item-content.content-middle-left {
    justify-content: flex-start;
    align-items: center;
}

.gallery__item-content.content-middle-center {
    justify-content: center;
    align-items: center;
}

.gallery__item-content.content-middle-right {
    justify-content: flex-end;
    align-items: center;
}

.gallery__item-content.content-bottom-left {
    justify-content: flex-start;
    align-items: flex-end;
}

.gallery__item-content.content-bottom-center {
    justify-content: center;
    align-items: flex-end;
}

.gallery__item-content.content-bottom-right {
    justify-content: flex-end;
    align-items: flex-end;
}

.gallery__item-content h4 {
    color: inherit;
    font-family: Cinzel Decorative;
    font-weight: bold;
    margin-bottom: 8px;
}

.gallery__item-content h4 + .button {
    margin-top: 20px;
    border-radius: 40px;
}

.gallery__item-content p {
    margin-bottom: 30px;
}

.gallery__item-content p.subheading {
    font-size: 0.75rem;
    margin-bottom: 15px;
}

@media only screen and (min-width: 768px) {
    .gallery__item-content > div {
        max-width: 90%;
    }
}

.gallery__item-content > div > *:last-child {
    margin-bottom: 0;
}

.gallery__item-content .button,
.gallery__item-content .text-button {
    position: relative;
    z-index: 22;
}

.gallery__item-content-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 21;
}

@media only screen and (max-width: 767px) {
    .gallery.swipe-on-mobile .gallery__inner {
        grid-auto-flow: column;
        grid-auto-columns: minmax(calc(50vw - 15px), 1fr);
        overflow-x: auto;
        grid-template-columns: repeat(auto-fill, minmax(calc(50vw - 15px), 1fr));
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .gallery.swipe-on-mobile .gallery__inner::-webkit-scrollbar {
        display: none;
    }

    .gallery.swipe-on-mobile .gallery__inner .gallery__item {
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .row:not(.full-width-row-full) .gallery.swipe-on-mobile .gallery__inner {
        margin: 0px;
        width: 100%;
    }

    /* ============================================
   NEW FEATURE: Mobile Double Row (2 columns)
   ============================================ */
    .gallery.mobile-double-row .gallery__inner {
        grid-auto-flow: row !important;
        grid-template-columns: repeat(2, 1fr) !important;
        overflow-x: visible !important;
        scroll-snap-type: none !important;
    }

    .gallery.mobile-double-row .gallery__item {
        scroll-snap-align: none !important;
    }

    /* 保持间距设置一致 */
    .gallery-spacing--none.mobile-double-row .gallery__inner {
        grid-gap: 0px;
    }

    .gallery-spacing--small.mobile-double-row .gallery__inner {
        grid-gap: 3px;
    }

    .gallery-spacing--medium.mobile-double-row .gallery__inner {
        grid-gap: 10px;
    }

    .gallery-spacing--large.mobile-double-row .gallery__inner {
        grid-gap: 30px;
    }
}

.view-products {
    background: var(--bg-body, #fff);
    border-radius: 19px;
    height: 38px;
    display: flex;
    position: absolute;
    bottom: 5px;
    right: 5px;
    z-index: 30;
    cursor: pointer;
}

@media only screen and (min-width: 1068px) {
    .view-products {
        bottom: 30px;
        right: 30px;
    }
}

.view-products > svg {
    width: 38px;
    height: 38px;
    padding: 11px;
}

.view-products span {
    max-width: 0;
    overflow: hidden;
    line-height: 38px;
    font-size: 0.6875rem;
    font-weight: 400;
    padding-right: 0;
    white-space: nowrap;
    color: var(--color-body);
    font-weight: var(--font-body-medium-weight, 500);
    text-transform: uppercase;
}

.view-products:hover svg, .view-products:focus svg {
    stroke: var(--color-body);
    transform: translateX(2px);
}

.view-products:hover span, .view-products:focus span {
    max-width: 114px;
    padding-right: 14px;
}

[dir="rtl"] .view-products:hover span, [dir="rtl"] .view-products:focus span {
    padding-left: 14px;
}

.gallery__item-content.content-middle-center img {
    width: 62px;
    height: 62px;
    margin-bottom: 10px;
    position: static
}

.gallery__item-content.content-middle-center h4 {
    font-size: 1rem !important
}

@media (min-width: 1440px) {
    .gallery__item-content.content-middle-center img {
        width: 90px;
        height: 90px;
        margin-bottom: 10px;
        position: static
    }

    .gallery__item-content.content-middle-center h4 {
        font-size: 1.5rem !important
    }
}

@media (min-width: 1560px) {
    .gallery__item-content.content-middle-center img {
        width: 120px;
        height: 120px;
        margin-bottom: 10px;
        position: static
    }

    .gallery__item-content.content-middle-center h4 {
        font-size: 2rem !important
    }
}

}