/* wss.css */
.elementor-post__thumbnail {
    position: relative;
}

.elementor-post__thumbnail img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 1;
}

.elementor-post__thumbnail .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.3s ease !important;
    object-fit: cover;
    z-index: 2;
}

.elementor-post:hover .hover-img {
    opacity: 1;
}

.profile-badges {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    padding: 15px;
    width: 100%;
    z-index: 4;
    /*fade top gradient*/
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);

    @media screen and (max-width: 767px) {
        padding: 6px;

    }
}

.profile-badge {
    font-size: 12px;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 4px;
    color: #fff;
    background-color: rgba(184, 159, 93, 0.4);
    border: 1px solid rgba(184, 159, 93, 0.42);
    backdrop-filter: blur(4px);

    @media screen and (max-width: 767px) {
        padding: 2px 6px;
    }
}

.profile-badge.profile-badge-video {
    display: flex;
    font-size: 0;
    width: 32px;
    height: 32px;
    align-items: center;
    align-content: center;
    justify-content: center;
    padding: 0;

    @media screen and (max-width: 767px) {
        width: 26px;
        height: 26px;
    }
}

.profile-badge.profile-badge-video:before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    transform: translateX(1px);
    background-image: url('../img/video.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

    @media screen and (max-width: 767px) {
        width: 14px;
        height: 14px;
    }

}

.profile-rating {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 4;
    width: 100%;
    padding: 15px 15px 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    color: #fff;
    line-height: 1;
    gap: 4px;
    transition: all 0.3s ease;
}

.profile-rating-stars {
    display: flex;
    gap: 1px;
    font-size: 16px;
}

.profile-rating-total {
    font-size: 12px;
}

.profile-params {
    gap: 28px;
    justify-content: center;

    @media screen and (max-width: 767px) {
        gap: 16px;
    }
}

.profile-available-icon > .icn.unavailable {
    background-color: #ffbd26;
}

.tags-list .tag-chip {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 4px;
    color: #fff;
    background-color: rgba(184, 159, 93, 0.4);
    border: 1px solid rgba(184, 159, 93, 0.42);
    backdrop-filter: blur(4px);
}

.tags-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 8px;
}

.parameter-items {
    display: flex;
    justify-content: center !important;
}

.parameter-items > *:not(:has(.elementor-icon-box-title)){
    display: none;
}

.single-page-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.single-page-gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 248 / 330;
    position: relative;
    cursor: pointer;
}

.single-page-gallery-item:hover .single-page-gallery-item__overlay {
    opacity: 1;
}

.single-page-gallery-item video,
.single-page-gallery-item img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-page-gallery-item--video:before {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    background-image: url('../img/video.svg');
    background-position: left 8px center;
    background-repeat: no-repeat;
    background-size: 16px;
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(184, 159, 93, 0.4);
    border: 1px solid rgba(184, 159, 93, 0.42);
    backdrop-filter: blur(4px);
    border-radius: 4px;
    z-index: 3;
}

.single-page-gallery-item__overlay {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.8s ease;
}

.f-button {
    padding: 0 !important;
    border: 0 !important;
}

.elementor-post__title a {
    user-select: none;
}

.elementor-post__title a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    top: 0;
    left: 0;
}

.faq-title {
    /* h2 */
    font-family: var(--e-global-typography-520c191-font-family), Sans-serif;
    font-size: var(--e-global-typography-520c191-font-size);
    font-weight: var(--e-global-typography-520c191-font-weight);
    line-height: var(--e-global-typography-520c191-line-height);
    color: var(--e-global-color-secondary);
    margin-bottom: 24px;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    justify-content: space-between;
    font-weight: 600;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.faq-question:after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-image: url('../img/chevron-down.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
    transition: 0.15s ease-in-out;
}

.faq-item.open {
    .faq-question:after {
        transform: scaleY(-1);
    }
}

.faq-item {
    font-size: 14px;
    background-color: #272727;
    padding: 12px;
    border-radius: 12px;
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer__inner {
    padding-top: 4px;
}

/* lists in .faq-answer__inner*/

.faq-answer__inner ul {
    list-style: disc;
    padding-left: 20px;
}


.faq-answer__inner ol {
    list-style: decimal;
    padding-left: 20px;
}


@media screen and (max-width: 991px){
    .single-page-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .single-page-gallery-item--video:before {
        top: 10px;
        right: 10px;
    }
}

@media screen and (max-width: 767px) {
    .single-page-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .single-page-gallery-item--video:before {
        top: 8px;
        right: 8px;
    }
}


/* ---------- Story button ---------- */
.story-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    flex-shrink: 0;
}
.story-button:hover {
    transform: scale(1.06);
    box-shadow: 0 4px 20px rgba(220, 39, 67, .35);
}
.story-button__pct {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.story-button__pct img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}

/* ---------- Modal overlay ---------- */
.story-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s, visibility .3s;
    pointer-events: none;
}
.story-modal.is-active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.story-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.85);
}

/* ---------- Container ---------- */
.story-modal__container {
    position: relative;
    width: 420px;
    max-width: 100vw;
    height: 92vh;
    max-height: 820px;
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 60px rgba(0,0,0,.6);
    user-select: none;
    -webkit-user-select: none;
}
@media (max-width: 480px) {
    .story-modal__container {
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        max-height: none;
        border-radius: 0;
    }
}

/* ---------- Progress bars ---------- */
.story-modal__progress {
    display: flex;
    gap: 4px;
    padding: 10px 12px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
}
.story-modal__progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255,255,255,.35);
    border-radius: 3px;
    overflow: hidden;
}
.story-modal__progress-fill {
    width: 0%;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    transition: none;
}
.story-modal__progress-fill.is-done {
    width: 100% !important;
}

/* ---------- Header ---------- */
.story-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 12px 8px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, transparent 100%);
}
.story-modal__user {
    display: flex;
    align-items: center;
    gap: 8px;
}
.story-modal__avatar {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid rgba(255,255,255,.4) !important;
}
.story-modal__username {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.story-modal__time {
    color: rgba(255,255,255,.55);
    font-size: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.story-modal__actions {
    display: flex;
    gap: 8px;
}
.story-modal__btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    opacity: .85;
    transition: opacity .2s;
}
.story-modal__btn:hover { opacity: 1; }

/* pause icon swap */
.story-modal__btn--pause.is-playing svg rect { display: block; }
.story-modal__btn--pause.is-playing svg polygon { display: none; }

/* sound muted state */
.story-modal__btn--sound.is-muted svg { opacity: .4; }

/* ---------- Slides ---------- */
.story-modal__slides {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.story-modal__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .15s;
}
.story-modal__slide.is-active {
    opacity: 1;
    visibility: visible;
}
.story-modal__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.story-modal__slide video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ---------- Navigation zones ---------- */
.story-modal__nav {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 35%;
    z-index: 4;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.story-modal__nav--prev {
    left: 0;
    justify-content: flex-start;
    padding-left: 8px;
}
.story-modal__nav--next {
    right: 0;
    justify-content: flex-end;
    padding-right: 8px;
}

/* ---------- Navigation arrows ---------- */
.story-modal__nav-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s, background 0.2s, transform 0.2s;
    pointer-events: none;
}
.story-modal__nav-arrow svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.story-modal__nav--prev .story-modal__nav-arrow svg {
    transform: translateX(-1px);
}
.story-modal__nav--next .story-modal__nav-arrow svg {
    transform: translateX(1px);
}

/* Show arrows on hover (desktop) */
.story-modal__container:hover .story-modal__nav-arrow {
    opacity: 1;
}
.story-modal__nav:hover .story-modal__nav-arrow {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}
.story-modal__nav:active .story-modal__nav-arrow {
    transform: scale(0.95);
}

/* Mobile: always show arrows, smaller size */
@media (max-width: 480px) {
    .story-modal__nav {
        width: 25%;
    }
    .story-modal__nav--prev {
        padding-left: 6px;
    }
    .story-modal__nav--next {
        padding-right: 6px;
    }
    .story-modal__nav-arrow {
        width: 32px;
        height: 32px;
        opacity: 0.7;
        background: rgba(0, 0, 0, 0.3);
    }
    .story-modal__nav-arrow svg {
        width: 18px;
        height: 18px;
    }
    .story-modal__nav:active .story-modal__nav-arrow {
        opacity: 1;
        background: rgba(0, 0, 0, 0.5);
    }
}

/* Tablet */
@media (min-width: 481px) and (max-width: 768px) {
    .story-modal__nav-arrow {
        width: 36px;
        height: 36px;
    }
    .story-modal__nav-arrow svg {
        width: 20px;
        height: 20px;
    }
}

/* ---------- Swipe hint (mobile) ---------- */
.story-modal__container.is-dragging .story-modal__slide.is-active img,
.story-modal__container.is-dragging .story-modal__slide.is-active video {
    pointer-events: none;
}

/* ---------- Loading spinner ---------- */
.story-modal__loader {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, visibility .2s;
}
.story-modal__loader.is-visible {
    opacity: 1;
    visibility: visible;
}
.story-modal__loader::after {
    content: '';
    width: 36px;
    height: 36px;
    border: 3px solid rgba(255,255,255,.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: storyRotate .7s linear infinite;
}
@keyframes storyRotate {
    to { transform: rotate(360deg); }
}

* {
    /*font-family: Arial, Helvetica, sans-serif !important;*/
}

.work-schedule-unavailable {

    display: flex;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
}


.work-schedule-unavailable:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: #ffbd26;
    border-radius: 50%;
    margin-right: 6px;
}

.extra-services-wrapper:not(:has(.extra-services-text)) {
    display: none;
}
@media screen and (max-width: 767px) {
    .fancybox__container.fancybox__container {
        --f-arrow-pos: 0px !important;
        --f-button-width: 20px !important;
        --f-button-height: 20px !important;
        --f-toolbar-gap: 16px !important;
        --f-toolbar-padding: 16px !important;
    }

    .f-button.is-arrow.is-arrow {
        --f-button-width: 36px !important;
        --f-button-height: 36px !important;
    }
    .f-button.f-button:active:not([aria-disabled]) {
        --f-button-hover-bg: rgba(255, 255, 255, 0.0) !important;
    }

    .f-button {
        --e-global-color-c715c55: rgba(255, 255, 255, 0.0) !important;
    }
}

[data-autoplay-action="toggle"] {
    display: none !important;
}

.elementor-posts-container .elementor-post__thumbnail {
    padding-bottom: calc(1.66 * 100%) !important;
}
