.elementor-widget-gs_fresh_wide_slider {
    position: relative;
}

.elementor-widget-gs_fresh_wide_slider:not(.elementor-element-edit-mode) .gs-fresh-slider:not(.is-contained),
.elementor-widget-gs_fresh_wide_slider .gs-fresh-slider:not(.is-contained) {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.gs-fresh-slider {
    --gs-gap: 18px;
    --gs-slide-width: 190px;
    --gs-active-scale: 1.02;
    --gs-inactive-scale: 0.95;
    --gs-image-ratio: 0.96;
    --gs-pad-left: 0px;
    --gs-pad-right: 0px;
    width: 100%;
    overflow: hidden;
    color: #222;
    padding: 8px 0 6px;
}

.gs-fresh-slider * {
    box-sizing: border-box;
}

.gs-fresh-slider__viewport {
    width: 100%;
    overflow: hidden;
}

.gs-fresh-slider__track {
    display: flex;
    align-items: flex-start;
    gap: var(--gs-gap);
    padding-left: var(--gs-pad-left);
    padding-right: var(--gs-pad-right);
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.gs-fresh-slide {
    width: var(--gs-slide-width);
    min-width: var(--gs-slide-width);
    opacity: 0.54;
    cursor: pointer;
    transition: opacity 0.45s ease;
}

.gs-fresh-slide.is-active {
    opacity: 1;
    z-index: 2;
}

.gs-fresh-card {
    transform: scale(var(--gs-inactive-scale));
    transform-origin: center top;
    transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.gs-fresh-slide.is-active .gs-fresh-card {
    transform: scale(var(--gs-active-scale));
}

.gs-fresh-card__media {
    width: 100%;
    aspect-ratio: var(--gs-image-ratio) / 1;
    overflow: hidden;
    border-radius: 20px;
    background: #ecebe7;
    box-shadow: 0 8px 20px rgba(18, 24, 24, 0.05);
}

.gs-fresh-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.7s ease, filter 0.5s ease;
    filter: saturate(0.95) brightness(0.98);
}

.gs-fresh-slide.is-active .gs-fresh-card__media img {
    transform: scale(1.01);
    filter: saturate(1) brightness(1);
}

.gs-fresh-slider__panel {
    width: min(620px, calc(var(--gs-slide-width) + 320px));
    max-width: calc(100vw - 28px);
    margin: 14px auto 0;
}

.gs-fresh-panel__title {
    margin: 0 0 6px;
    color: #1e1e1e;
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: clamp(24px, 1.8vw, 30px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.gs-fresh-panel__subtitle {
    position: relative;
    margin: 0 0 14px;
    padding-bottom: 14px;
    font-size: 15px;
    line-height: 1.5;
    color: #6b6b6b;
}

.gs-fresh-panel__subtitle::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 1px dashed #d8d4cc;
}

.gs-fresh-panel__description {
    font-size: 14px;
    line-height: 1.68;
    color: #4a4a4a;
}

.gs-fresh-slider__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.gs-fresh-slider__nav button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #111;
    box-shadow: 0 10px 20px rgba(22, 35, 33, 0.08);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gs-fresh-slider__nav button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(22, 35, 33, 0.12);
}

.gs-fresh-slider__nav button span {
    font-size: 26px;
    line-height: 1;
    transform: translateY(-1px);
}

.gs-fresh-slider.is-contained {
    max-width: 100%;
}

.gs-fresh-slider.is-contained .gs-fresh-slider__panel {
    max-width: calc(100% - 24px);
}

@media (max-width: 1024px) {
    .elementor-widget-gs_fresh_wide_slider .gs-fresh-slider:not(.is-contained) {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .gs-fresh-slider {
        --gs-gap: 14px;
        --gs-slide-width: 180px;
        --gs-active-scale: 1.015;
        --gs-inactive-scale: 0.97;
    }

    .gs-fresh-slider__panel {
        width: min(520px, calc(var(--gs-slide-width) + 220px));
        max-width: calc(100% - 24px);
    }
}

@media (max-width: 767px) {
    .gs-fresh-slider {
        --gs-gap: 10px;
        --gs-slide-width: 170px;
        --gs-active-scale: 1.008;
        --gs-inactive-scale: 0.98;
        padding: 6px 0 4px;
    }

    .gs-fresh-card__media {
        border-radius: 18px;
    }

    .gs-fresh-slider__panel {
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);
        margin-top: 12px;
    }

    .gs-fresh-panel__title {
        font-size: 22px;
    }

    .gs-fresh-panel__subtitle,
    .gs-fresh-panel__description {
        font-size: 14px;
    }

    .gs-fresh-slider__nav {
        margin-top: 10px;
    }

    .gs-fresh-slider__nav button {
        width: 38px;
        height: 38px;
    }
}
