:root {
    --chocolat-icon-left: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 32 32%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E    %3Ccircle cx%3D%2216%22 cy%3D%2216%22 r%3D%2216%22 fill-opacity%3D%22.1%22%2F%3E    %3Cpath d%3D%22M15.3 20.7 10.7 16l4.6-4.7m7.4 4.7h-12%22 fill%3D%22none%22 stroke%3D%22%23000%22 stroke-width%3D%221.3%22%2F%3E%3C%2Fsvg%3E");
    --chocolat-icon-right: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 32 32%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E    %3Ccircle cx%3D%2216%22 cy%3D%2216%22 r%3D%2216%22 fill-opacity%3D%22.1%22%2F%3E    %3Cpath d%3D%22m16.7 11.3 4.6 4.7-4.6 4.7M9.3 16h12%22 fill%3D%22none%22 stroke%3D%22%23000%22 stroke-width%3D%221.3%22%2F%3E%3C%2Fsvg%3E");
    --chocolat-icon-close: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 32 32%22 stroke-linecap%3D%22round%22%3E    %3Ccircle cx%3D%2216%22 cy%3D%2216%22 r%3D%2216%22 fill-opacity%3D%22.1%22%2F%3E    %3Cpath d%3D%22m12 12 8 8m0-8-8 8%22 fill%3D%22none%22 stroke%3D%22%23000%22 stroke-width%3D%221.3%22%2F%3E%3C%2Fsvg%3E");
    --chocolat-icon-loader: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 width%3D%2238%22 height%3D%2238%22%3E  %3Cg transform%3D%22translate(1 1)%22 stroke-width%3D%222%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E    %3Ccircle stroke-opacity%3D%22.2%22 stroke%3D%22%23000%22 cx%3D%2218%22 cy%3D%2218%22 r%3D%2218%22%2F%3E    %3Cpath d%3D%22M36 18C36 8 28 0 18 0%22 stroke%3D%22%23000%22%3E      %3CanimateTransform attributeName%3D%22transform%22 type%3D%22rotate%22 from%3D%220 18 18%22 to%3D%22360 18 18%22 dur%3D%221s%22 repeatCount%3D%22indefinite%22%2F%3E    %3C%2Fpath%3E  %3C%2Fg%3E%3C%2Fsvg%3E");
    --chocolat-icon-fullscreen: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 16 16%22%3E    %3Cg stroke%3D%22%23000%22 fill%3D%22none%22%3E        %3Cpath d%3D%22M.5 2.5h15v11H.5z%22%2F%3E        %3Cpath d%3D%22M7.5 7.5h8v6h-8z%22%2F%3E    %3C%2Fg%3E%3C%2Fsvg%3E")
}

.chocolat-zoomable.chocolat-zoomed {
    cursor: zoom-out
}

.chocolat-open {
    overflow: hidden
}

.chocolat-overlay {
    transition: opacity .4s ease, visibility 0s .4s ease;
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    background-color: #fff;
    visibility: hidden;
    opacity: 0
}

.chocolat-overlay.chocolat-visible {
    transition: opacity .4s, visibility 0s;
    visibility: visible;
    opacity: 1;
}

.chocolat-wrapper {
    transition: opacity .4s ease, visibility 0s .4s ease;
    width: 100%;
    height: 100%;
    position: fixed;
    opacity: 0;
    left: 0;
    top: 0;
    z-index: 16;
    color: #000;
    visibility: hidden
}

.chocolat-wrapper.chocolat-visible {
    transition: opacity .4s, visibility 0s;
    opacity: 1;
    visibility: visible
}

.chocolat-zoomable .chocolat-img {
    cursor: zoom-in
}

.chocolat-loader {
    transition: opacity .3s;
    height: 38px;
    width: 38px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -19px;
    margin-top: -19px;
    z-index: 11;
    background: var(--chocolat-icon-loader);
    opacity: 0
}

.chocolat-loader.chocolat-visible {
    opacity: 1
}

.chocolat-image-wrapper {
    position: fixed;
    width: 0;
    height: 0;
    left: 50%;
    top: 50%;
    z-index: 14;
    text-align: left;
    transform: translate(-50%, -50%)
}

.chocolat-image-wrapper .chocolat-img {
    position: absolute;
    width: 100%;
    height: 100%
}

.chocolat-wrapper .chocolat-left {
    width: 50px;
    height: 100px;
    cursor: pointer;
    background: var(--chocolat-icon-left) 50% 50%/2rem auto no-repeat;
    z-index: 17;
    visibility: hidden
}

.chocolat-layout {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0
}

.chocolat-image-canvas {
    transition: opacity .2s;
    opacity: 0;
    flex-grow: 1;
    align-self: stretch
}

.chocolat-image-canvas.chocolat-visible {
    opacity: 1
}

.chocolat-center {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none
}

.chocolat-wrapper .chocolat-right {
    width: 50px;
    height: 100px;
    cursor: pointer;
    background: var(--chocolat-icon-right) 50% 50%/2rem auto no-repeat;
    z-index: 17;
    visibility: hidden
}

.chocolat-wrapper .chocolat-right.active {
    visibility: visible
}

.chocolat-wrapper .chocolat-left.active {
    visibility: visible
}

.chocolat-wrapper .chocolat-top {
    height: 50px;
    overflow: hidden;
    z-index: 17;
    flex-shrink: 0
}

.chocolat-wrapper .chocolat-close {
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--chocolat-icon-close) 50% 50%/2rem auto no-repeat
}

.chocolat-wrapper .chocolat-bottom {
    height: auto;
    font-size: 12px;
    z-index: 17;
    padding-left: 15px;
    padding-right: 15px;
    background:white;
    flex-shrink: 0;
    display: flex;
    align-items: end;
    margin-bottom: 1rem;
}

.chocolat-wrapper .chocolat-pagination {
    float: right;
    display: inline-block;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: 15px;
    line-height: 1.4;
}

.chocolat-wrapper .chocolat-fullscreen {
    width: 16px;
    height: 16px;
    background: var(--chocolat-icon-fullscreen) 50% 50%/1rem auto no-repeat;
    display: block;
    cursor: pointer;
    float: right
}

.chocolat-wrapper .chocolat-description {
    display: inline-block;
    flex-grow: 1;
    text-align: left
}

body.chocolat-open>.chocolat-overlay {
    z-index: 15
}

body.chocolat-open>.chocolat-loader {
    z-index: 15
}

body.chocolat-open>.chocolat-image-wrapper {
    z-index: 17
}

.chocolat-in-container .chocolat-image-wrapper,
.chocolat-in-container .chocolat-overlay,
.chocolat-in-container .chocolat-wrapper {
    position: absolute
}

.chocolat-in-container {
    position: relative
}

.chocolat-zoomable.chocolat-zooming-in .chocolat-image-wrapper,
.chocolat-zoomable.chocolat-zooming-out .chocolat-image-wrapper {
    transition: width .2s ease, height .2s ease
}

.chocolat-zoomable.chocolat-zooming-in .chocolat-img,
.chocolat-zoomable.chocolat-zooming-out .chocolat-img {
    transition: margin .2s ease
}



/* Swiper Container */
.swiper-container-wrapper {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.swiper {
    width: 100%;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.swiper-wrapper {
    align-items: center;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image Container with 4:3 Aspect Ratio */
.image-container {
    width: 100%;
    background-color: #f0f0f0;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

/* 4:3 Aspect Ratio */
.image-aspect-ratio {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    /* 3:4 ratio */
    background-color: #f0f0f0;
}

.image-aspect-ratio a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.image-aspect-ratio img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.image-aspect-ratio:hover img {
    opacity: 0.95;
}

/* Image Caption */
.image-caption {
    padding: 10px;
    padding-left: 0.2rem;
    background: #ffffff;
    min-height: 90px;
}

.chocolat-description h3,
.image-caption h3 {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 0;
}

.chocolat-description p,
.image-caption p {
    font-size: 13px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 0;
    line-height: 1.4;
}

#gallery-wrapper {
    transition: all .4s ease-in-out !important;
}

/* Navigation - Hidden by default */
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    cursor: not-allowed;
    opacity: 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: #000000;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Show navigation on gallery hover */
.swiper-container-wrapper:hover .swiper-button-next.swiper-button-disabled,
.swiper-container-wrapper:hover .swiper-button-prev.swiper-button-disabled,
.swiper-container-wrapper:hover .swiper-button-next,
.swiper-container-wrapper:hover .swiper-button-prev {
    opacity: 1;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
    font-weight: 600;
}

/* Scrollbar */
.swiper-scrollbar {
    background: rgba(0, 0, 0, 0.08);
    height: 3px;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
}

.swiper-scrollbar-drag {
    background: rgba(0, 0, 0, 0.3);
    height: 100%;
    cursor: grab;
    border-radius: 0;
    transition: all .2s ease-in-out;
}

.swiper-scrollbar-drag:hover {
    background: rgba(0, 0, 0, 0.4);
}

.swiper-scrollbar-drag:active {
    cursor: grabbing;
    background: rgba(0, 0, 0, 0.5);
}


/* Responsive */
@media (max-width: 768px) {
    .swiper {
        padding-bottom: 1.5rem;
        margin-bottom: 1rem;
    }

    .swiper-slide {
        padding: 0;
    }

    .image-caption {
        padding: 6px;
        min-height: unset;
    }
    .chocolat-description h3,
    .image-caption h3 {
        font-size: 15px;
    }
    .chocolat-description p,
    .image-caption p {
        font-size: 12px;
    }

    .swiper-scrollbar {
        bottom: 0 !important;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 36px;
        height: 36px;
        opacity: 1;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 13px;
    }

}

/* Chocolat Custom Styles for Light Theme */
.chocolat-wrapper {
    background: #000 !important;
}

.chocolat-close,
.chocolat-nav {
    color: #000000 !important;
}

.chocolat-title {
    color: #000000 !important;
    font-family: 'Karla', sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px !important;
}