.adome-services-grid,
.adome-barbers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
}

.adome-service-card,
.adome-barber-card,
.adome-testimonial-card {
    position: relative;
}

.adome-service-card__image img,
.adome-barber-card__image img,
.adome-testimonial-card__image img {
    display: block;
    width: 100%;
    height: auto;
}

.adome-service-card__title,
.adome-barber-card__name,
.adome-testimonial-card__name {
    font-family: var(--adome-font-heading, 'Space Mono', monospace);
}

.adome-service-card__text,
.adome-testimonial-card__text {
    font-family: var(--adome-font-body, 'Work Sans', sans-serif);
}

.adome-testimonials-list {
    display: grid;
    gap: 32px;
}

/* ================================
   ADOME Elementor Hero Widget
   ================================ */

.adome-hero-widget {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: clamp(560px, 46.6vw, 760px);
    overflow: hidden;
    background-color: #191918;
    background-image: var(--adome-hero-bg, none);
    background-position: var(--adome-hero-position, center center);
    background-size: cover;
    background-repeat: no-repeat;
    padding: clamp(96px, 8vw, 132px) clamp(20px, 5vw, 72px) clamp(64px, 6vw, 96px);
    box-sizing: border-box;
}

.adome-hero-widget__overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(25, 25, 24, var(--adome-hero-overlay, 0.60));
    pointer-events: none;
}

.adome-hero-widget__content {
    position: relative;
    z-index: 1;
    width: min(100%, 960px);
    margin: 0 auto;
    text-align: center;
    color: var(--adome-white, #ffffff);
}

.adome-hero-widget__title {
    margin: 0 0 clamp(24px, 2.5vw, 36px);
    font-family: var(--adome-font-heading, 'Space Mono', monospace);
    font-size: clamp(34px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--adome-white, #ffffff);
}

.adome-hero-widget__address {
    margin: 0 0 clamp(28px, 2.65vw, 38px);
    font-family: var(--adome-font-body, 'Work Sans', sans-serif);
    font-size: clamp(15px, 1.4vw, 20px);
    font-weight: 400;
    line-height: 1.5;
    color: var(--adome-white, #ffffff);
}

.adome-hero-widget__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: min(100%, 298px);
    min-width: min(100%, 298px);
    min-height: 54px;
    padding: 0 24px;
    font-family: var(--adome-font-heading, 'Space Mono', monospace);
    font-size: clamp(14px, 1.25vw, 18px);
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    color: var(--adome-white, #ffffff);
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.adome-hero-widget__button:hover,
.adome-hero-widget__button:focus {
    color: var(--adome-white, #ffffff);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 1);
}

/* ================================
   ADOME Hero Language Switcher
   ================================ */

.adome-hero-widget .adome-hero-lang {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 0 clamp(28px, 4vw, 52px);
    font-family: var(--adome-font-heading, 'Space Mono', monospace);
}

.adome-hero-widget .adome-hero-lang__inner {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--adome-hero-lang-radius, 999px);
    background: var(--adome-hero-lang-bg, rgba(26, 26, 26, 0.55));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.adome-hero-widget .adome-hero-lang__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    padding: 8px 14px;
    border-radius: calc(var(--adome-hero-lang-radius, 999px) - 5px);
    font-family: var(--adome-font-heading, 'Space Mono', monospace);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--adome-hero-lang-color, rgba(255, 255, 255, 0.78));
    background: transparent;
    transition: background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.adome-hero-widget .adome-hero-lang__link:hover,
.adome-hero-widget .adome-hero-lang__link:focus {
    color: var(--adome-white, #ffffff);
    text-decoration: none;
}

.adome-hero-widget .adome-hero-lang__link.is-active,
.adome-hero-widget .adome-hero-lang__link.current-language,
.adome-hero-widget .adome-hero-lang__link[aria-current="true"] {
    color: var(--adome-hero-lang-active-color, #1a1a1a);
    background: var(--adome-hero-lang-active-bg, #ffffff);
}

.adome-hero-widget .adome-hero-lang__separator {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.24);
}

/* ================================
   ADOME Elementor Services Widget
   ================================ */

.adome-services-widget {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
    padding: clamp(72px, 8vw, 120px) 20px;
    background: var(--adome-white, #ffffff);
    color: var(--adome-black, #1a1a1a);
    box-sizing: border-box;
}

.adome-services-widget__grid-wrap {
    position: relative;
    isolation: isolate;
}

.adome-services-widget__decor {
    position: absolute;
    top: var(--adome-services-decor-top, 50%);
    left: 50%;
    z-index: 0;
    width: 100vw;
    height: var(--adome-services-decor-height, 170px);
    transform: translate(-50%, -50%);
    background-image: var(--adome-services-decor, none);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%;
    opacity: var(--adome-services-decor-opacity, 0.07);
    pointer-events: none;
}

.adome-services-widget--decor-repeat .adome-services-widget__decor {
    background-repeat: repeat-x;
}

.adome-services-widget__inner {
    position: relative;
    z-index: 1;
    width: min(100%, 1120px);
    margin: 0 auto;
}

.adome-services-widget__header {
    margin-bottom: clamp(56px, 6vw, 72px);
    text-align: center;
}

.adome-services-widget__label {
    margin: 0 0 24px;
    font-family: var(--adome-font-body, 'Work Sans', sans-serif);
    font-size: 10px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.65em;
    text-align: center;
    text-transform: uppercase;
    color: var(--adome-black, #1a1a1a);
}

.adome-services-widget__heading {
    margin: 0;
    font-family: var(--adome-font-heading, 'Space Mono', monospace);
    font-size: clamp(26px, 2.5vw, 36px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
    color: var(--adome-black, #1a1a1a);
}

.adome-services-widget__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 276px));
    justify-content: center;
    column-gap: clamp(40px, 4vw, 56px);
    row-gap: clamp(44px, 5vw, 64px);
}

.adome-services-widget .adome-service-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 276px;
    background: var(--adome-black, #1a1a1a);
    color: var(--adome-white, #ffffff);
    border-radius: 0;
    transition: transform 0.25s ease;
}

.adome-services-widget .adome-service-card__image {
    overflow: hidden;
    background: var(--adome-black, #1a1a1a);
    aspect-ratio: 276 / 180;
}

.adome-services-widget .adome-service-card__image img,
.adome-services-widget .adome-service-card__img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 276 / 180;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.adome-services-widget .adome-service-card__body {
    padding: 22px 25px 24px;
    background: var(--adome-black, #1a1a1a);
    text-align: left;
}

.adome-services-widget .adome-service-card__title {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    min-height: 31px;
    height: auto;
    margin: 0 0 16px;
    padding: 6px 12px;
    font-family: var(--adome-font-heading, 'Space Mono', monospace);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: var(--adome-service-title-letter-spacing, 0.02em);
    word-spacing: var(--adome-service-title-word-spacing, -0.08em);
    text-transform: uppercase;
    white-space: normal;
    overflow-wrap: anywhere;
    color: var(--adome-black, #1a1a1a);
    background: var(--adome-white, #ffffff);
}

.adome-services-widget .adome-service-card__description {
    margin: 0 0 18px;
    font-family: var(--adome-font-body, 'Work Sans', sans-serif);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--adome-white, #ffffff);
}

.adome-services-widget .adome-service-card__description p {
    margin: 0 0 12px;
}

.adome-services-widget .adome-service-card__description p:last-child {
    margin-bottom: 0;
}

.adome-services-widget .adome-service-card__price {
    font-family: var(--adome-font-heading, 'Space Mono', monospace);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--adome-white, #ffffff);
}

.adome-services-widget .adome-service-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-height: 37px;
    margin-top: 24px;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--adome-white, #ffffff);
    font-family: var(--adome-font-heading, 'Space Mono', monospace);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.adome-services-widget .adome-service-card__button:hover,
.adome-services-widget .adome-service-card__button:focus {
    color: var(--adome-white, #ffffff);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 1);
}

.adome-services-widget__empty {
    max-width: 620px;
    margin: 0 auto;
    font-family: var(--adome-font-body, 'Work Sans', sans-serif);
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    color: var(--adome-black, #1a1a1a);
}

@media (hover: hover) and (pointer: fine) {
    .adome-services-widget .adome-service-card:hover {
        transform: translateY(-4px);
    }

    .adome-services-widget .adome-service-card:hover .adome-service-card__image img,
    .adome-services-widget .adome-service-card:hover .adome-service-card__img {
        transform: scale(1.03);
    }
}

/* ================================
   ADOME Elementor About Widget
   ================================ */

.adome-about-widget {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: var(--adome-about-min-height, 614px);
    overflow: hidden;
    background-color: var(--adome-black, #1a1a1a);
    color: var(--adome-white, #ffffff);
}

.adome-about-widget::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.adome-about-widget__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--adome-about-bg, none);
    background-size: cover;
    background-position: var(--adome-about-bg-position, center center);
    background-repeat: no-repeat;
}

.adome-about-widget__panel {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: min(var(--adome-about-panel-width, 48%), var(--adome-about-panel-max, 692px));
    min-height: var(--adome-about-min-height, 614px);
    background: rgba(0, 0, 0, var(--adome-about-panel-opacity, 0.35));
    backdrop-filter: blur(var(--adome-about-panel-blur, 16px));
    -webkit-backdrop-filter: blur(var(--adome-about-panel-blur, 16px));
    box-sizing: border-box;
}

.adome-about-widget__content {
    width: min(calc(100% - 48px), var(--adome-about-content-max, 430px));
    margin-right: auto;
    margin-left: auto;
}

.adome-about-widget__label {
    margin: 0 0 24px;
    font-family: var(--adome-font-body, 'Work Sans', sans-serif);
    font-size: 10px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.65em;
    text-transform: uppercase;
    color: var(--adome-white, #ffffff);
}

.adome-about-widget__heading {
    margin: 0 0 28px;
    font-family: var(--adome-font-heading, 'Space Mono', monospace);
    font-size: clamp(28px, 2.5vw, 36px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--adome-white, #ffffff);
}

.adome-about-widget__text {
    margin: 0 0 44px;
    font-family: var(--adome-font-body, 'Work Sans', sans-serif);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--adome-white, #ffffff);
}

.adome-about-widget__text p {
    margin: 0 0 16px;
}

.adome-about-widget__text p:last-child {
    margin-bottom: 0;
}

.adome-about-widget__counters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 34px;
    row-gap: 18px;
}

.adome-about-counter {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 12px;
}

.adome-about-counter__number-wrap {
    display: inline-flex;
    align-items: baseline;
    gap: 0.08em;
    font-family: var(--adome-font-heading, 'Space Mono', monospace);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    color: var(--adome-white, #ffffff);
    white-space: nowrap;
}

.adome-about-counter__prefix,
.adome-about-counter__number,
.adome-about-counter__suffix {
    font-family: var(--adome-font-heading, 'Space Mono', monospace);
    font-weight: 700;
    line-height: 1;
    margin-right: 0;
}

.adome-about-counter__label {
    font-family: var(--adome-font-body, 'Work Sans', sans-serif);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: var(--adome-white, #ffffff);
}

.adome-about-widget__decor {
    position: absolute;
    right: var(--adome-about-decor-right, 14%);
    bottom: var(--adome-about-decor-bottom, 18%);
    z-index: 3;
    display: block;
    width: var(--adome-about-decor-width, 225px);
    height: auto;
    max-width: min(420px, 42vw);
    transform: rotate(var(--adome-about-decor-rotate, -22deg));
    opacity: var(--adome-about-decor-opacity, 1);
    pointer-events: none;
}

/* ================================
   ADOME Elementor Barbers Widget
   ================================ */

.adome-barbers-widget {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
    padding: clamp(72px, 8vw, 120px) 20px;
    background: var(--adome-white, #ffffff);
    color: var(--adome-black, #1a1a1a);
    box-sizing: border-box;
}

.adome-barbers-widget__inner {
    width: min(100%, 1180px);
    margin: 0 auto;
}

.adome-barbers-widget__header {
    margin-bottom: clamp(56px, 6vw, 72px);
    text-align: center;
}

.adome-barbers-widget__label {
    margin: 0 0 24px;
    font-family: var(--adome-font-body, 'Work Sans', sans-serif);
    font-size: 10px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.65em;
    text-align: center;
    text-transform: uppercase;
    color: var(--adome-black, #1a1a1a);
}

.adome-barbers-widget__heading {
    margin: 0;
    font-family: var(--adome-font-heading, 'Space Mono', monospace);
    font-size: clamp(26px, 2.5vw, 36px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
    color: var(--adome-black, #1a1a1a);
}

.adome-barbers-widget__grid-wrap {
    position: relative;
    isolation: isolate;
    overflow: visible;
}

.adome-barbers-widget__decor-list {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: visible;
}

.adome-barbers-widget__decor-row {
    position: absolute;
    left: 50%;
    top: calc(((((var(--adome-barbers-decor-index) + 0.5) / var(--adome-barbers-rows-current, 1)) * 100%) + var(--adome-barbers-decor-row-offset, 0%)));
    width: 100vw;
    max-width: 100vw;
    height: var(--adome-barbers-decor-height, 170px);
    transform: translate(-50%, -50%);
    background-image: var(--adome-barbers-decor, none);
    background-repeat: repeat-x;
    background-position: center center;
    background-size: auto 100%;
    opacity: var(--adome-barbers-decor-opacity, 0.07);
}

.adome-barbers-widget__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 276px));
    justify-content: center;
    column-gap: var(--adome-barbers-grid-col-gap, 50px);
    row-gap: var(--adome-barbers-grid-row-gap, 64px);
}

.adome-barbers-widget .adome-barber-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 276px;
    aspect-ratio: 276 / 353;
    background: var(--adome-black, #1a1a1a);
    color: var(--adome-white, #ffffff);
    border-radius: 0;
    transition: transform 0.25s ease;
}

.adome-barbers-widget .adome-barber-card__image {
    position: absolute;
    inset: 0;
    background: var(--adome-black, #1a1a1a);
}

.adome-barbers-widget .adome-barber-card__image img,
.adome-barbers-widget .adome-barber-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.adome-barbers-widget .adome-barber-card__overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: 68%;
    padding: 0 28px 28px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 100%);
    box-sizing: border-box;
}

.adome-barbers-widget .adome-barber-card__content {
    width: fit-content;
    max-width: 100%;
}

.adome-barbers-widget .adome-barber-card__role {
    margin: 0 0 10px;
    font-family: var(--adome-font-body, 'Work Sans', sans-serif);
    font-size: 10px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: var(--adome-white, #ffffff);
}

.adome-barbers-widget .adome-barber-card__name {
    margin: 0 0 18px;
    font-family: var(--adome-font-heading, 'Space Mono', monospace);
    font-size: clamp(28px, 2.5vw, 36px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--adome-white, #ffffff);
}

.adome-barbers-widget .adome-barber-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    min-height: 37px;
    padding: 0 20px;
    font-family: var(--adome-font-heading, 'Space Mono', monospace);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    color: var(--adome-white, #ffffff);
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-sizing: border-box;
    transition: background 0.25s ease;
}

.adome-barbers-widget .adome-barber-card__button:hover,
.adome-barbers-widget .adome-barber-card__button:focus {
    color: var(--adome-white, #ffffff);
    background: rgba(255, 255, 255, 0.12);
}

.adome-barbers-widget__empty {
    max-width: 620px;
    margin: 0 auto;
    font-family: var(--adome-font-body, 'Work Sans', sans-serif);
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    color: var(--adome-black, #1a1a1a);
}

@media (hover: hover) and (pointer: fine) {
    .adome-barbers-widget .adome-barber-card:hover {
        transform: translateY(-4px);
    }

    .adome-barbers-widget .adome-barber-card:hover .adome-barber-card__image img,
    .adome-barbers-widget .adome-barber-card:hover .adome-barber-card__img {
        transform: scale(1.03);
    }
}

/* ================================
   ADOME Elementor Gallery Marquee Widget
   ================================ */

.elementor-widget-adome_gallery_marquee,
.elementor-widget-adome_gallery_marquee > .elementor-widget-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.adome-gallery-widget {
    position: relative;
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
    overflow: hidden;
    background: var(--adome-gallery-bg, #1a1a1a);
}

.adome-gallery-widget__viewport {
    width: 100%;
    overflow: hidden;
}

.adome-gallery-widget__track {
    display: flex;
    width: max-content;
    animation: adomeGalleryMarquee var(--adome-gallery-duration, 35s) linear infinite;
    will-change: transform;
}

.adome-gallery-widget--direction-right .adome-gallery-widget__track {
    animation-direction: reverse;
}

.adome-gallery-widget--pause-hover:hover .adome-gallery-widget__track,
.adome-gallery-widget.is-paused .adome-gallery-widget__track {
    animation-play-state: paused;
}

.adome-gallery-widget__group {
    display: flex;
    flex-shrink: 0;
    gap: var(--adome-gallery-gap, 0px);
}

.adome-gallery-widget__item {
    flex: 0 0 auto;
    width: var(--adome-gallery-item-width, 360px);
    height: var(--adome-gallery-height, 397px);
    margin: 0;
    overflow: hidden;
}

.adome-gallery-widget__item img,
.adome-gallery-widget__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: var(--adome-gallery-image-opacity, 1);
}

.adome-gallery-widget__empty {
    max-width: 620px;
    margin: 0 auto;
    padding: 48px 20px;
    font-family: var(--adome-font-body, 'Work Sans', sans-serif);
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    color: var(--adome-white, #ffffff);
}

@keyframes adomeGalleryMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-33.333333%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .adome-gallery-widget__track {
        animation: none;
    }
}

/* ================================
   ADOME Elementor Testimonials Marquee Widget
   ================================ */

.elementor-widget-adome_testimonials_marquee,
.elementor-widget-adome_testimonials_marquee > .elementor-widget-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.adome-testimonials-widget {
    position: relative;
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
    padding-top: var(--adome-testimonials-padding-top, clamp(72px, 8vw, 110px));
    padding-bottom: var(--adome-testimonials-padding-bottom, clamp(72px, 8vw, 110px));
    overflow: hidden;
    background: var(--adome-black, #1a1a1a);
    color: var(--adome-white, #ffffff);
}

.adome-testimonials-widget__inner {
    width: 100%;
}

.adome-testimonials-widget__header {
    margin: 0 20px var(--adome-testimonials-header-gap, 72px);
    text-align: center;
}

.adome-testimonials-widget__label {
    margin: 0 0 24px;
    font-family: var(--adome-font-body, 'Work Sans', sans-serif);
    font-size: 10px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--adome-white, #ffffff);
    text-transform: uppercase;
    letter-spacing: 0.65em;
}

.adome-testimonials-widget__heading {
    margin: 0;
    font-family: var(--adome-font-heading, 'Space Mono', monospace);
    font-size: clamp(26px, 2.5vw, 36px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.04em;
    color: var(--adome-white, #ffffff);
    text-transform: uppercase;
}

.adome-testimonials-widget__viewport {
    width: 100%;
    overflow: hidden;
}

.adome-testimonials-widget__track {
    display: flex;
    width: max-content;
    gap: var(--adome-testimonials-gap, 40px);
    animation: adomeTestimonialsMarquee var(--adome-testimonials-duration, 40s) linear infinite;
    will-change: transform;
}

.adome-testimonials-widget--direction-right .adome-testimonials-widget__track {
    animation-direction: reverse;
}

.adome-testimonials-widget--pause-hover .adome-testimonials-widget__track:hover,
.adome-testimonials-widget.is-paused .adome-testimonials-widget__track {
    animation-play-state: paused;
}

.adome-testimonials-widget__group {
    display: flex;
    flex-shrink: 0;
    gap: var(--adome-testimonials-gap, 40px);
}

.adome-testimonials-card {
    position: relative;
    flex: 0 0 auto;
    width: var(--adome-testimonials-card-width, 520px);
    min-height: var(--adome-testimonials-card-height, 327px);
    height: auto;
    overflow: hidden;
    background: var(--adome-white, #ffffff);
    color: var(--adome-black, #1a1a1a);
}

.adome-testimonials-card__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: var(--adome-testimonials-card-height, 327px);
    padding: clamp(32px, 3vw, 54px) clamp(32px, 4vw, 64px);
    padding-right: clamp(72px, 6vw, 120px);
    background: var(--adome-white, #ffffff);
    color: var(--adome-black, #1a1a1a);
    box-sizing: border-box;
}

.adome-testimonials-card__stars {
    margin: 0 0 20px;
    font-family: var(--adome-font-heading, 'Space Mono', monospace);
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.18em;
    color: var(--adome-black, #1a1a1a);
}

.adome-testimonials-card__name {
    margin: 0 0 18px;
    font-family: var(--adome-font-heading, 'Space Mono', monospace);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--adome-black, #1a1a1a);
    text-transform: uppercase;
}

.adome-testimonials-card__text {
    max-width: 420px;
    font-family: var(--adome-font-body, 'Work Sans', sans-serif);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--adome-black, #1a1a1a);
}

.adome-testimonials-card__text p {
    margin: 0 0 1em;
}

.adome-testimonials-card__text p:last-child {
    margin-bottom: 0;
}

.adome-testimonials-card__quote {
    position: absolute;
    top: 42px;
    right: 52px;
    width: 72px;
    height: auto;
    pointer-events: none;
}

.adome-testimonials-widget__button-wrap {
    display: flex;
    justify-content: center;
    margin-top: clamp(42px, 5vw, 64px);
    padding: 0 20px;
}

.adome-testimonials-widget__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    height: 54px;
    padding: 0 28px;
    border: 1px solid rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--adome-white, #ffffff);
    font-family: var(--adome-font-heading, 'Space Mono', monospace);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 250ms ease;
}

.adome-testimonials-widget__button:hover,
.adome-testimonials-widget__button:focus {
    background: rgba(255, 255, 255, 0.12);
    color: var(--adome-white, #ffffff);
}

.adome-testimonials-widget__empty {
    max-width: 620px;
    margin: 0 auto;
    padding: 48px 20px;
    font-family: var(--adome-font-body, 'Work Sans', sans-serif);
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    color: var(--adome-white, #ffffff);
}

@keyframes adomeTestimonialsMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .adome-testimonials-widget__track {
        animation: none;
    }
}

/* ================================
   ADOME Elementor Footer Widget
   ================================ */

.elementor-widget-adome_footer,
.elementor-widget-adome_footer > .elementor-widget-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.adome-footer-widget {
    position: relative;
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
    padding: var(--adome-footer-padding-top, 72px) 20px var(--adome-footer-padding-bottom, 38px);
    overflow: hidden;
    background: var(--adome-footer-bg, #111111);
    color: var(--adome-white, #ffffff);
}

.adome-footer-widget__inner {
    width: min(100%, var(--adome-footer-inner-max, 1120px));
    margin: 0 auto;
}

.adome-footer-widget__top {
    display: grid;
    grid-template-columns: minmax(240px, 1.25fr) minmax(170px, 0.75fr) minmax(210px, 0.9fr) auto;
    column-gap: var(--adome-footer-column-gap, 72px);
    row-gap: clamp(32px, 5vw, 56px);
    align-items: start;
}

.adome-footer-widget__brand {
    max-width: 360px;
}

.adome-footer-widget__column {
    min-width: 0;
}

.adome-footer-widget__logo {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    margin-bottom: 24px;
    color: var(--adome-white, #ffffff);
    text-decoration: none;
}

.adome-footer-widget__logo-img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: var(--adome-footer-logo-height, 48px);
    object-fit: contain;
}

.adome-footer-widget__site-title {
    font-family: var(--adome-font-heading, 'Space Mono', monospace);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.adome-footer-widget__description {
    margin: 0;
    font-family: var(--adome-font-body, 'Work Sans', sans-serif);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
}

.adome-footer-widget__heading {
    margin: 0 0 20px;
    font-family: var(--adome-font-heading, 'Space Mono', monospace);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;
    color: var(--adome-white, #ffffff);
    text-transform: uppercase;
}

.adome-footer-widget__hours,
.adome-footer-widget__contacts {
    display: grid;
    gap: 8px;
    font-family: var(--adome-font-body, 'Work Sans', sans-serif);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

.adome-footer-widget__hours-row {
    display: flex;
    gap: 18px;
    justify-content: space-between;
}

.adome-footer-widget__text,
.adome-footer-widget__contact-link {
    font-family: var(--adome-font-body, 'Work Sans', sans-serif);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

.adome-footer-widget__contact-link {
    display: block;
    text-decoration: none;
    transition: color 200ms ease, opacity 200ms ease;
}

a.adome-footer-widget__contact-link:hover,
a.adome-footer-widget__contact-link:focus {
    color: var(--adome-white, #ffffff);
}

.adome-footer-widget__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    align-items: center;
    justify-content: flex-end;
}

.adome-footer-widget__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(var(--adome-footer-social-size, 22px) + 14px);
    height: calc(var(--adome-footer-social-size, 22px) + 14px);
    color: var(--adome-white, #ffffff);
    text-decoration: none;
    opacity: 0.86;
    transition: opacity 200ms ease, transform 200ms ease;
}

.adome-footer-widget__social-link svg,
.adome-footer-widget__social-link i {
    display: block;
    width: var(--adome-footer-social-size, 22px);
    height: var(--adome-footer-social-size, 22px);
    font-size: var(--adome-footer-social-size, 22px);
    line-height: 1;
    fill: currentColor;
}

.adome-footer-widget__social-link:hover,
.adome-footer-widget__social-link:focus {
    opacity: 1;
    transform: translateY(-2px);
}

.adome-footer-widget__divider {
    width: 100%;
    height: 1px;
    margin: 48px 0 24px;
    background: rgba(255, 255, 255, 0.28);
}

.adome-footer-widget__copyright {
    font-family: var(--adome-font-body, 'Work Sans', sans-serif);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.68);
    text-align: center;
}

@media (max-width: 1024px) {
    .adome-services-grid,
    .adome-barbers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px;
    }

    .adome-services-widget__grid {
        grid-template-columns: repeat(2, minmax(0, 276px));
    }

    .adome-barbers-widget {
        --adome-barbers-rows-current: var(--adome-barbers-rows-tablet);
    }

    .adome-barbers-widget__grid {
        grid-template-columns: repeat(2, minmax(0, 276px));
    }

    .adome-gallery-widget {
        --adome-gallery-height: 340px;
        --adome-gallery-item-width: 320px;
    }

    .adome-testimonials-widget {
        --adome-testimonials-card-width: 520px;
        --adome-testimonials-card-height: 300px;
    }

    .adome-footer-widget__top {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    }

    .adome-footer-widget__brand {
        max-width: 420px;
    }

    .adome-footer-widget__socials {
        justify-content: flex-start;
    }

    .adome-about-widget__panel {
        width: min(55%, var(--adome-about-panel-max, 692px));
    }
}

@media (max-width: 1100px) {
    .adome-hero-widget {
        min-height: clamp(540px, 78vw, 700px);
        padding: clamp(92px, 12vw, 124px) clamp(20px, 5vw, 48px) clamp(56px, 8vw, 82px);
    }
}

@media (max-width: 767px) {
    .adome-services-grid,
    .adome-barbers-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .adome-services-widget {
        padding-right: 20px;
        padding-left: 20px;
    }

    .adome-services-widget__decor {
        opacity: calc(var(--adome-services-decor-opacity, 0.07) * 0.6);
    }

    .adome-services-widget__label {
        letter-spacing: 0.45em;
    }

    .adome-services-widget__grid {
        grid-template-columns: minmax(0, 1fr);
        justify-items: center;
    }

    .adome-services-widget .adome-service-card {
        max-width: 320px;
    }

    .adome-services-widget .adome-service-card__title {
        display: inline-block;
        width: auto;
        max-width: 90%;
        padding: 6px 12px;
        font-size: clamp(16px, 4.2vw, 18px) !important;
        line-height: 1.12;
        letter-spacing: 0.01em;
        word-spacing: -0.1em;
        white-space: normal;
        overflow-wrap: break-word;
        word-break: normal;
        hyphens: none;
    }


    .adome-services-widget .adome-service-card__button {
        min-height: 42px;
        padding-right: 16px;
        padding-left: 16px;
        white-space: normal;
    }

    .adome-barbers-widget {
        --adome-barbers-rows-current: var(--adome-barbers-rows-mobile);
        padding-right: 20px;
        padding-left: 20px;
    }

    .adome-barbers-widget__decor-row {
        opacity: calc(var(--adome-barbers-decor-opacity, 0.07) * 0.6);
    }

    .adome-barbers-widget__label {
        letter-spacing: 0.45em;
    }

    .adome-barbers-widget__grid {
        grid-template-columns: minmax(0, 1fr);
        justify-items: center;
    }

    .adome-barbers-widget .adome-barber-card {
        max-width: 320px;
    }

    .adome-barbers-widget .adome-barber-card__overlay {
        padding: 0 24px 24px;
    }

    .adome-gallery-widget {
        --adome-gallery-height: 280px;
        --adome-gallery-item-width: 260px;
    }

    .adome-testimonials-widget {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .adome-testimonials-widget__header {
        padding-right: 20px;
        padding-left: 20px;
        margin-bottom: 44px;
    }

    .adome-testimonials-widget__label {
        letter-spacing: 0.45em;
    }

    .adome-testimonials-widget__heading {
        font-size: clamp(26px, 8vw, 34px);
        line-height: 1.15;
    }

    .adome-testimonials-widget__viewport {
        overflow: hidden;
    }

    .adome-testimonials-widget__track,
    .adome-testimonials-widget__group {
        gap: 20px;
    }

    .adome-testimonials-card {
        flex: 0 0 auto;
        width: min(86vw, 360px) !important;
        min-height: auto !important;
        height: auto !important;
    }

    .adome-testimonials-card__content {
        display: block;
        width: 100%;
        min-height: auto;
        padding: 30px 24px 32px;
        padding-right: 72px;
    }

    .adome-testimonials-card__stars {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .adome-testimonials-card__name {
        margin-bottom: 14px;
        font-size: 20px;
        line-height: 1.15;
    }

    .adome-testimonials-card__text {
        max-width: none;
        font-size: 15px;
        line-height: 1.55;
        overflow-wrap: anywhere;
    }

    .adome-testimonials-card__quote {
        top: 22px;
        right: 22px;
        width: 44px;
        opacity: 0.8;
    }

    .adome-testimonials-widget__button-wrap {
        margin-top: 44px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .adome-testimonials-widget__button {
        width: min(100%, 300px);
        min-width: 0;
        height: 50px;
        font-size: 13px;
    }

    .adome-footer-widget {
        padding: 56px 20px 32px;
    }

    .adome-footer-widget__top {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .adome-footer-widget__brand {
        max-width: 100%;
    }

    .adome-footer-widget__description {
        max-width: 360px;
    }

    .adome-footer-widget__hours-row {
        justify-content: flex-start;
    }

    .adome-footer-widget__hours-row span:first-child {
        min-width: 56px;
    }

    .adome-footer-widget__socials {
        justify-content: flex-start;
    }

    .adome-footer-widget__divider {
        margin-top: 40px;
    }

    .adome-footer-widget__copyright {
        text-align: left;
    }

    .adome-about-widget {
        min-height: auto;
    }

    .adome-about-widget__panel {
        width: 100%;
        min-height: auto;
        padding: 96px 20px 72px;
    }

    .adome-about-widget__content {
        width: min(100%, 430px);
    }

    .adome-about-widget__label {
        letter-spacing: 0.45em;
    }

    .adome-about-widget__counters {
        grid-template-columns: 1fr;
        row-gap: 22px;
    }

    .adome-about-counter {
        column-gap: 10px;
    }

    .adome-about-counter__number-wrap {
        gap: 0.04em;
    }

    .adome-about-widget__decor {
        right: -4%;
        bottom: 32px;
        width: min(170px, 42vw);
        opacity: 0.7;
    }

    .adome-hero-widget {
        min-height: clamp(520px, 100svh, 680px);
        padding: 108px 20px 64px;
    }

    .adome-hero-widget__content {
        width: 100%;
    }

    .adome-hero-widget__title {
        letter-spacing: 0.02em;
        overflow-wrap: anywhere;
    }

    .adome-hero-widget__button {
        max-width: 298px;
        min-height: 52px;
        padding: 0 18px;
        white-space: normal;
    }
}


@media (max-width: 767px) {
    .adome-hero-widget .adome-hero-lang {
        margin-bottom: 28px;
    }

    .adome-hero-widget .adome-hero-lang__inner {
        padding: 4px;
    }

    .adome-hero-widget .adome-hero-lang__link {
        min-width: 38px;
        padding: 7px 12px;
        font-size: 12px;
    }

    .adome-hero-widget .adome-hero-lang__separator {
        height: 14px;
    }
}

@media (max-width: 360px) {
    .adome-services-widget {
        padding-right: 16px;
        padding-left: 16px;
    }

    .adome-services-widget .adome-service-card__body {
        padding-right: 20px;
        padding-left: 20px;
    }

    .adome-barbers-widget {
        padding-right: 16px;
        padding-left: 16px;
    }

    .adome-barbers-widget .adome-barber-card__button {
        padding-right: 14px;
        padding-left: 14px;
        white-space: normal;
    }

    .adome-testimonials-widget__button-wrap {
        padding-right: 16px;
        padding-left: 16px;
    }

    .adome-footer-widget {
        padding-right: 16px;
        padding-left: 16px;
    }

    .adome-about-widget__panel {
        padding-right: 16px;
        padding-left: 16px;
    }

    .adome-hero-widget {
        padding-right: 16px;
        padding-left: 16px;
    }
}

/* ================================
   ADOME Services Button Alignment Fix
   ================================ */

.adome-services-widget__grid {
    align-items: stretch;
}

.adome-services-widget .adome-service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.adome-services-widget .adome-service-card__image {
    flex: 0 0 auto;
}

.adome-services-widget .adome-service-card__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

/* Jeigu yra kaina, ji lieka virš mygtuko */
.adome-services-widget .adome-service-card__price {
    margin-bottom: 22px;
}

/* Jeigu mygtukas yra wrapperyje */
.adome-services-widget .adome-service-card__button-wrap {
    margin-top: auto;
}

/* Jeigu mygtukas yra tiesioginis linkas be wrapperio */
.adome-services-widget .adome-service-card__body > .adome-service-card__button {
    margin-top: auto;
}

.adome-services-widget .adome-service-card__button {
    width: 100%;
}

/* Mobile – išlaikom tą pačią logiką */
@media (max-width: 767px) {
    .adome-services-widget .adome-service-card {
        height: auto;
    }

    .adome-services-widget .adome-service-card__body {
        min-height: 0;
    }
}

/* ================================
   ADOME Elementor Location Map Widget
   ================================ */

.elementor-widget-adome_location_map,
.elementor-widget-adome_location_map > .elementor-widget-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.adome-location-map-widget {
    --adome-location-map-padding-top: clamp(72px, 8vw, 110px);
    --adome-location-map-padding-bottom: clamp(72px, 8vw, 110px);
    --adome-location-map-max-width: 1120px;
    --adome-location-map-height: 520px;
    --adome-location-map-height-mobile: 360px;
    --adome-location-map-border-opacity: 0.22;

    position: relative;
    left: 50%;
    isolation: isolate;
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
    padding: var(--adome-location-map-padding-top) 20px var(--adome-location-map-padding-bottom);
    overflow: hidden;
    background: var(--adome-black, #1a1a1a);
    color: var(--adome-white, #ffffff);
    box-sizing: border-box;
}

.adome-location-map-widget__decor {
    position: absolute;
    left: 50%;
    bottom: -0.16em;
    z-index: 0;
    transform: translateX(-50%);
    font-family: var(--adome-font-heading, 'Space Mono', monospace);
    font-size: clamp(96px, 18vw, 245px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.035);
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.adome-location-map-widget__inner {
    position: relative;
    z-index: 1;
    width: min(100%, 1180px);
    margin: 0 auto;
}

.adome-location-map-widget__header {
    margin: 0 0 clamp(48px, 6vw, 72px);
    text-align: center;
}

.adome-location-map-widget__label {
    margin: 0 0 24px;
    font-family: var(--adome-font-body, 'Work Sans', sans-serif);
    font-size: 10px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.65em;
    text-align: center;
    text-transform: uppercase;
    color: var(--adome-white, #ffffff);
}

.adome-location-map-widget__heading {
    margin: 0;
    font-family: var(--adome-font-heading, 'Space Mono', monospace);
    font-size: clamp(26px, 2.5vw, 36px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
    color: var(--adome-white, #ffffff);
}

.adome-location-map-widget__frame {
    position: relative;
    width: min(100%, var(--adome-location-map-max-width));
    margin: 0 auto;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, var(--adome-location-map-border-opacity));
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
    box-sizing: border-box;
}

.adome-location-map-widget__frame::before {
    content: "";
    position: absolute;
    inset: 12px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.adome-location-map-widget__map {
    position: relative;
    width: 100%;
    height: var(--adome-location-map-height);
    min-height: 320px;
    overflow: hidden;
    background: #111111;
}

.adome-location-map-widget__iframe {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) contrast(1.08) brightness(0.86);
}

.adome-location-map-widget__empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 32px;
    font-family: var(--adome-font-body, 'Work Sans', sans-serif);
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
    color: rgba(255, 255, 255, 0.78);
    background: #111111;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .adome-location-map-widget {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .adome-location-map-widget__decor {
        bottom: -0.08em;
        font-size: clamp(72px, 24vw, 132px);
        opacity: 0.8;
    }

    .adome-location-map-widget__header {
        margin-bottom: 44px;
    }

    .adome-location-map-widget__label {
        letter-spacing: 0.45em;
    }

    .adome-location-map-widget__heading {
        font-size: clamp(26px, 8vw, 34px);
        line-height: 1.15;
    }

    .adome-location-map-widget__frame {
        padding: 8px;
    }

    .adome-location-map-widget__frame::before {
        inset: 8px;
    }

    .adome-location-map-widget__map {
        height: var(--adome-location-map-height-mobile);
        min-height: 260px;
    }
}

