/* === HEADER, MENU, BREADCRUMBS, FOOTER, BUTTONS === */

*,
*::before,
*::after {
    box-sizing: border-box;
}


html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* Забороняємо горизонтальну прокрутку */
    width: 100%;
}


:root {
    /* Основна палітра */
    --font-main: 'Montserrat', sans-serif;
    --color-bg: #fcfcfc;
    --color-text: #2c2c2c;
    --color-text-light: #666666;
    --premium-bg: #f8f6f3;

    /* Хедер та Футер */
    --header-bg: #ffffff;
    --header-border: #f0f0f0;
    --footer-bg: #181818;
    --footer-text: #ffffff;
    --footer-sub: #c5c5c5;

    /* Слайдер */
    --slider-btn-bg: rgba(255, 255, 255, 0.7);
    --slider-btn-hover-bg: rgba(255, 255, 255, 0.9);
    --slider-dot-bg: rgba(255, 255, 255, 0.6);
    --slider-dot-active-bg: rgba(255, 255, 255, 0.9);
    --slider-dot-border: rgba(0, 0, 0, 0.2);


    --base-border-radius: 1px;
    --submenu-bg: #f7f7f7;
    --submenu-border-color: rgba(39, 39, 39, 0.1);
    --submenu-hover-bg: #ffffff;
}


/* --- ОСНОВНІ НАЛАШТУВАННЯ --- */
body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    margin: 0;
    /* Відступ зверху враховує висоту фіксованого хедера (~70-80px) */
    padding: 128px 20px 0 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Блокування скролу та запобігання зміщенню */
body.menu-lock {
    scrollbar-gutter: stable;
}

body.menu-lock main {
    pointer-events: none;
}

/* Ховаємо плаваючі кнопки, коли меню відкрите */
body.menu-lock .but-WhatsUp,
body.menu-lock .but-Mobile,
body.menu-lock .back-to-top {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
}

main {
    flex: 1;
    /* Притискає футер до низу, якщо контенту мало */
    width: 100%;
    max-width: 1280px;
    /* Обмеження ширини для десктопа */
    margin: 0 auto;
    /* Центрування */
    box-sizing: border-box;
}


/* --- HEADER --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001; /* Збільшено, щоб бути над кнопками */
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 20px;
    box-sizing: border-box;
    min-height: 72px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

h1 {
    margin: 0;
    font-size: 2.4rem;
    line-height: 1.2;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    font-weight: 600;
    letter-spacing: 0.5px;
}

h1 .divider {
    color: #ddd;
    margin: 0 10px;
    font-weight: 300;
}

h1 .subtitle {
    font-weight: 400;
    color: var(--color-text);
    font-size: 0.75em;
}

.header-title {
    font-size: 1rem;
}

/* Менше 768px */
@media (max-width: 768px) {
    .header-title {
        font-size: 0.8rem;
    }
}

/* Менше 380px */
@media (max-width: 380px) {
    .header-title {
        font-size: 0.7rem;
    }
}



/* === PREMIUM MENU STYLES === */
:root {
    --color-primary: #1a1a1a;
    /* Dark text */
    --color-accent: #796216;
    /* Gold/Bronze for luxury feel #d4af37;*/
    --color-bg-white: #ffffff;
    --color-gray-light: #f5f5f5;
    --font-main: 'Montserrat', sans-serif;
    --header-height: 80px;
    --transition-speed: 0.3s;
}

/* --- Header Layout --- */
#site-header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1001;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Logo & Title --- */
.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo {
    display: block;
    height: 48px;
    width: 48px;
}

.header-title-block h1 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-title-block .subtitle {
    font-size: 0.75rem;
    color: #666;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* --- Navigation Main (Desktop) --- */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-menu {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-primary);
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: color var(--transition-speed);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--color-accent);
}

/* Underline effect for links */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-accent);
    transition: width var(--transition-speed);
}

.nav-link:hover::after {
    width: 100%;
}

/* --- Dropdown / Submenu --- */
.has-submenu {
    position: relative;
}

.arrow-down {
    display: inline-block;
    border: solid currentColor;
    border-width: 0 1px 1px 0;
    padding: 2px;
    transform: rotate(45deg) translateY(-2px);
    margin-left: 5px;
    transition: transform var(--transition-speed);
}

.submenu {
    display: none;
    /* Controlled by core.js adding .open */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-bg-white);
    min-width: 260px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px 0;
    list-style: none;
    z-index: 1001;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
}

/* Logic for core.js compatibility: .open class triggers visibility */
.submenu.open {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.submenu li a {
    display: block;
    padding: 10px 20px;
    color: #444;
    text-decoration: none;
    font-size: 0.9rem;
    border-left: 2px solid transparent;
    transition: all 0.2s;
}

.submenu li a:hover {
    background-color: var(--color-gray-light);
    color: var(--color-accent);
    border-left-color: var(--color-accent);
    padding-left: 25px;
    /* Slight movement on hover */
}

/* --- CTA Button --- */
.btn-click {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--color-primary);
    background-color: transparent;
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-speed);
    border-radius: 2px;
}

.btn-click:hover {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.nav-link.btn-click::after {
    display: none;
    /* Remove underline for button */
}

/* --- Mobile Menu Toggle (Burger) --- */
.menu-toggle {
    display: none;
    /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1100;
    padding: 0;
}

.burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    margin-bottom: 6px;
    transition: all 0.3s;
    border-radius: 2px;
}

.burger-line:last-child {
    margin-bottom: 0;
}

/* === Анімація очікування === */
@keyframes premiumIdleWave {

    0%,
    100% {
        background-color: var(--color-primary);
        box-shadow: 0 0 0 rgba(121, 98, 22, 0);
    }

    50% {
        background-color: var(--color-accent);
        box-shadow: 0 0 6px rgba(128, 74, 0, 0.6);
    }
}

.menu-toggle:not(.active) .burger-line {
    animation: premiumIdleWave 2.5s infinite ease-in-out;
}

.menu-toggle:not(.active) .burger-line:nth-child(1) {
    animation-delay: 0s;
}

.menu-toggle:not(.active) .burger-line:nth-child(2) {
    animation-delay: 0.2s;
}

.menu-toggle:not(.active) .burger-line:nth-child(3) {
    animation-delay: 0.4s;
}

/* === Анімація очікування: кінець === */
/* Animated Burger */
.menu-toggle.active .burger-line {
    animation: none;
}

.menu-toggle.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* === RESPONSIVE (TABLET & MOBILE) === */
@media (max-width: 991px) {

    /* Burger visible */
    .menu-toggle {
        display: block;
    }

    /* Menu Hidden by default */
    .main-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        
        /* ПОКРАЩЕННЯ: Ховаємо меню миттєво до завантаження JS */
        visibility: hidden; 
        opacity: 0;
        transform: translateX(100%);
        
        /* Slide out to right */
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s, visibility 0.3s;
        overflow-y: auto;
        box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.05);
        z-index: 1050;
    }

    /* Active state for Mobile Menu (triggered by core.js) */
    .main-menu.active {
        display: flex; /* Повертаємо флекс */
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }

    .main-menu>li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
    }

    .nav-link:hover::after {
        width: 0;
        /* No underline anim on mobile */
    }

    /* Mobile Submenu */
    .submenu {
        position: static;
        /* Relative flow for accordion effect */
        box-shadow: none;
        width: 100%;
        padding-left: 20px;
        background-color: #fafafa;
        opacity: 1;
        /* Always opaque, controlled by display */
        transform: none;
        display: none;
    }

    .submenu.open {
        display: block;
    }

    .arrow-down {
        float: right;
        margin-right: 10px;
    }

    /* Mobile CTA */
    .cta-item {
        margin-top: 20px;
        width: 100%;
    }

    .btn-click {
        display: block;
        text-align: center;
        background-color: var(--color-primary);
        color: white;
        padding: 12px;
    }
}



/* --- BREADCRUMBS --- */
.breadcrumbs {
    position: fixed;
    top: 72px;
    /* Висота хедера на десктопі */
    left: 0;
    width: 100%;
    z-index: 990;
    /* Нижче хедера (1000), але вище контенту */
    background-color: rgba(255, 255, 255, 0.85);
    /* Напівпрозорий фон */
    backdrop-filter: blur(5px);
    border-bottom: 1px solid #f0f0f0;
    padding: 8px 0;
    /* Вертикальні відступи */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: top 0.3s ease;
}

.breadcrumbs-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    padding: 0px 20px;
    color: #888888;
    font-family: var(--font-main);
}

.breadcrumbs-container a {
    color: #5f5f5f;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs-container a:hover {
    color: #1a1a1a;
}

.breadcrumb-separator {
    color: #cccccc;
    font-size: 12px;
}

.breadcrumbs-current {
    color: #1a1a1a;
    font-weight: 500;
}



/* --- FOOTER --- */
.footer {
    background-color: var(--footer-bg);
    border-top: 1px solid #333;
    padding: 20px 20px 10px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.85rem;
    color: var(--footer-text);
    width: 100%;
    max-width: 1280px;
    box-sizing: border-box;
    /* Додаємо відносне позиціонування про всяк випадок */
    position: relative;
    z-index: 1;
}

/* Новий блок для екранів > 768px */
@media (min-width: 769px) {
    .footer {
        /* Збільшуємо бокові відступи, щоб контент не заходив под кнопки */
        padding-left: 100px;
        padding-right: 100px;
    }
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-column {
    flex: initial;
    min-width: auto;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-name {
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    color: var(--footer-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-sub {
    font-size: 0.75em;
    color: var(--footer-sub);
    margin: 0 0 8px 0;
    font-weight: 300;
}

.footer-socials {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-socials a img {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease, opacity 0.2s;
    opacity: 0.9;
}

.footer-socials a:hover img {
    transform: scale(1.1);
    opacity: 1;
}

.footer-address a,
.footer-phone a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 400;
    font-size: 0.9em;
}

.footer-address a:hover,
.footer-phone a:hover {
    color: #ccc;
    text-decoration: underline;
}

.footer-copyright {
    max-width: 1280px;
    margin: 15px auto 0;
    padding-top: 10px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.7em;
    color: #979797;
}



/* --- АДАПТИВНІСТЬ (MEDIA QUERIES) --- */
/* Desktop Large Adjustment */
@media (min-width: 1201px) {
    body {
        font-family: var(--font-main);
        color: var(--color-text);
        background-color: var(--color-bg);
        line-height: 1.6;
        margin: 0;
        padding: 120px 0 0 0;
        /* Прибираємо бокові падінги з body */
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Центруємо вміст */
    }

    main,
    .footer,
    .premium-gallery-section {
        width: 100%;
        max-width: 1280px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer {
        padding-left: 100px;
        padding-right: 100px;
    }

    header {
        left: 0;
        right: 0;
        margin: 0 auto;
        max-width: 1280px;
        border-right: 1px solid #fafafa;
        border-left: 1px solid #fafafa;
    }

    .breadcrumbs {
        left: 0;
        right: 0;
        margin: 0 auto;
        max-width: 1280px;
        /* Опціонально: рамки з боків, як у хедера */
        border-right: 1px solid #fafafa;
        border-left: 1px solid #fafafa;
    }
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    body {
        padding-top: 115px;
        /* ЗБІЛЬШЕНО: 60px header + ~40px breadcrumbs + відступ */
        padding-left: 12px;
        padding-right: 12px;
    }

    header {
        padding: 8px 12px;
        min-height: 72px;
    }

    .breadcrumbs {
        top: 72px;
        /* Висота хедера на мобільному */
        padding: 4px 0;
    }

    .breadcrumbs-container {
        padding: 0 12px;
    }

    .header-logo {
        height: 40px;
    }

    .header-left {
        gap: 10px;
        flex: 1;
        padding-right: 10px;
    }

    h1 {
        font-size: 1.6rem;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        /* На мобільному субтитр під назвою */
        line-height: 1.2;
    }

    h1 .divider {
        display: none;
    }

    h1 .subtitle {
        font-size: 0.7em;
        margin-top: 2px;
        color: #303030;
    }

    .header-nav {
        display: none;
        /* Сховано для мобільних (зазвичай тут бургер-меню) */
    }

    /* Footer Mobile */
    .footer {
        padding: 20px 15px 15px;
        margin-top: 30px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        align-items: center;
    }

    .footer-left {
        align-items: center;
    }

    .footer-right {
        text-align: center;
        align-items: center;
    }
}

/* Mobile <380px Adjustment */
@media (max-width: 380px) {
    h1 {
        font-size: 1.4rem;
    }

    .header-logo {
        height: 32px;
    }

    header {
        padding: 5px 10px;
    }

    .breadcrumbs-container {
        padding: 0 10px;
    }
}



/* --- Кнопка "Вгору" --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    z-index: 990;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding-bottom: 3px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s ease, background-color 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #333333;
    transform: translateY(-3px);
}

/* Адаптивність */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 20px;
    }
}



/* --- Кнопка "WhatsUp" --- */
.but-WhatsUp {
    position: fixed;
    bottom: 24px;
    left: 15px;
    z-index: 1000;
    transition: opacity 0.3s, visibility 0.3s;
}

.but-WhatsUp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid #098536;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.but-WhatsUp img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: contain;
}

/* Ефект при наведенні */
.but-WhatsUp a:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* 📱 Адаптивність для мобільних */
@media (max-width: 480px) {
    .but-WhatsUp {
        bottom: 15px;
        left: 15px;
    }

    .but-WhatsUp a {
        width: 56px;
        height: 56px;
    }
}



/* --- Кнопка "Mobile" --- */
.but-Mobile {
    position: fixed;
    bottom: 96px;
    left: 15px;
    z-index: 1000;
    transition: opacity 0.3s, visibility 0.3s;
}

.but-Mobile a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid #2e70ff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.but-Mobile img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: contain;
}

/* Ефект при наведенні */
.but-Mobile a:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* 📱 Адаптивність для мобільних */
@media (max-width: 480px) {
    .but-Mobile {
        bottom: 86px;
        left: 15px;
    }

    .but-Mobile a {
        width: 56px;
        height: 56px;
    }
}



/* --- FAQ --- */
.faq-section {
    padding: 0px 20px;
    background-color: #f7f9fc;
    max-width: auto;
    margin: 0 auto;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f6f3 100%);
    border-radius: 0px;
}

.faq-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 30px;
    color: #9f835c;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    border-radius: 0px;
    overflow: hidden;
    margin-bottom: 10px;
}

.faq-question {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    font-size: 1.0rem;
    padding: 15px 20px;
    background: #fff;
    border: none;
    font-size: 0.9rem;
    text-align: left;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    color: #2c2c2c;
    transition: background 0.3s;
    border-radius: 0px;
}

.faq-question:hover {
    background: #d4d4d4;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    max-height: 0;
    font-size: 0.9rem;
    overflow: hidden;
    background: #ffffff;
    padding: 0 20px;
    transition: max-height 0.4s ease;
    border-radius: 0 0 0px 0px;
}

.faq-item.active .faq-answer {
    padding: 15px 20px;
    max-height: 500px;
}


/* === Переліки <UL/li> із символами === */
/* Зелені галочки "✔" */
.benefits-list {
    list-style: none;
    padding-left: 8px;
}

.benefits-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
}

.benefits-list li::before {
    content: "✔";
    color: #006400;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Із символом "⚠️" */
.warning-list {
    list-style: none;
    padding-left: 8px;
}

.warning-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
}

.warning-list li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

/* Із символом "✅" */
.check-list {
    list-style: none;
    padding-left: 8px;
}

.check-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
}

.check-list li::before {
    content: "✅";
    position: absolute;
    left: 0;
}

/* Із символом "ℹ️" */
.info-list {
    list-style: none;
    padding-left: 8px;
}

.info-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
}

.info-list li::before {
    content: "ℹ️";
    position: absolute;
    left: 0;
}


/* Клас для запобігання анімацій при завантаженні */
.preload * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}