.sidebar-cart {
    border: 1px solid rgba(255, 255, 255, .14);
    padding: 14px;
    margin-bottom: 24px;
    background: #1f1f1f;
}

.sidebar-cart.is-empty {
    display: none;
}

.sidebar-cart__title {
    margin: 0 0 10px;
    font-size: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
}

.sidebar-cart__summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 44px;
    box-sizing: border-box;
    flex-shrink: 0;
    color: #fff;
    padding: 9px 11px;
    background: rgba(170, 132, 83, .22);
    border: 1px solid rgba(170, 132, 83, .55);
    margin-bottom: 10px;
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease;
}

.sidebar-cart__summary:hover {
    color: #fff;
    transform: none;
}

.sidebar-cart__count {
    font-size: 14px;
}

.sidebar-cart__total {
    font-size: 15px;
    font-weight: 600;
}

.sidebar-cart__actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-cart__link {
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    transition: color .2s ease;
}

.sidebar-cart__link:hover,
.sidebar-cart__link.is-active {
    color: #e4ba76;
}

.sidebar-cart__link.is-disabled {
    pointer-events: none;
    opacity: .45;
}

.mobile-cart-toggle {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    margin: 20px;
    border-radius: 999px;
    background: #e4ba76;
    color: #1b1b1b;
    font-size: 13px;
    line-height: 1;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .28);
}

.mobile-cart-toggle:hover,
.mobile-cart-toggle:focus {
    color: #1b1b1b;
}

.mobile-cart-toggle__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.mobile-cart-toggle__icon svg {
    display: block;
}

.mobile-cart-toggle__count {
    white-space: nowrap;
}

.mobile-cart-toggle.is-empty {
    display: none !important;
}

.delivery-page__header {
    padding-bottom: 25px;
}

.delivery-page__head-text {
    margin-bottom: 0;
}

.delivery-page__subtitle {
    color: #cfcfcf;
    margin: 0;
    max-width: 680px;
}

.hero-slide__subtitle {
    margin: 14px auto 0;
    max-width: 780px;
    color: rgba(255, 255, 255, .85);
}

.hero-slide__actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-video-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .65);
    background: rgba(0, 0, 0, .22);
    color: #fff;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.hero-video-play:hover,
.hero-video-play:focus {
    color: #fff;
    border-color: #aa8453;
    background: rgba(170, 132, 83, .32);
    transform: translateY(-1px);
}

.hero-video-play__icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
}

.hero-video-play__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-video-modal {
    position: fixed;
    inset: 0;
    z-index: 2300;
    display: none;
}

.hero-video-modal.is-open {
    display: block;
}

.hero-video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .82);
}

.hero-video-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(980px, calc(100% - 30px));
    margin: 8vh auto;
    border: 1px solid rgba(255, 255, 255, .18);
    background: #101010;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
}

.hero-video-modal__player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.hero-video-modal__close {
    position: absolute;
    right: 10px;
    top: 8px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    font-size: 28px;
    line-height: 1;
}

.contacts-modal__dialog {
    width: min(620px, calc(100% - 30px));
}

.contacts-modal__content {
    padding: 28px 22px 20px;
    color: #fff;
}

.contacts-modal__title {
    margin: 0 0 14px;
}

.contacts-modal__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contacts-modal__list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #d7d7d7;
}

.contacts-modal__list a {
    color: #fff;
}

.news-section__actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.news-card__inner {
    height: 100%;
    border: 1px solid rgba(255, 255, 255, .1);
    background: #1b1b1b;
    display: flex;
    flex-direction: column;
}

.news-card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.news-card__content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card__date {
    margin: 0 0 8px;
    color: #b8b8b8;
    font-size: 13px;
}

.news-card__title {
    margin: 0 0 10px;
    color: #fff;
    font-size: 24px;
}

.news-card__title a {
    color: inherit;
}

.news-card__excerpt {
    margin: 0 0 12px;
    color: #d0d0d0;
    flex-grow: 1;
}

.news-card__read-more {
    color: #e4ba76;
}

.news-single__back {
    display: inline-block;
    margin-bottom: 12px;
    color: #d4d4d4;
}

.news-single__title {
    color: #fff;
    margin: 0 0 10px;
}

.news-single__date {
    margin: 0 0 16px;
    color: #b8b8b8;
}

.news-single__image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    margin-bottom: 14px;
}

.news-single__excerpt {
    color: #e6e6e6;
    margin-bottom: 14px;
}

.news-single__content {
    color: #d2d2d2;
    line-height: 1.6;
}

.privacy-page__content {
    color: #d5d5d5;
    line-height: 1.6;
}

.privacy-page__content h3 {
    color: #fff;
    margin: 18px 0 8px;
}

.delivery-page__categories-zone {
    position: relative;
    z-index: 100;
    background: #1e1e1e;
  }

.delivery-page__categories-placeholder {
    height: 0;
    transition: height .28s ease;
}

.delivery-page__categories-nav {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .08);
    background: #171717;
    transition: transform .28s ease, box-shadow .28s ease, background-color .28s ease;
}

.delivery-page__categories-nav.is-stuck {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 990;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .38);
    border-left: 0;
    border-right: 0;
    animation: delivery-nav-slide-down .24s ease;
}

@keyframes delivery-nav-slide-down {
    from {
        transform: translateY(-14px);
        opacity: .9;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.delivery-page__categories-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
}

.delivery-page__category-link {
    display: block;
    padding: 15px 20px;
    color: #e6e6e6;
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, .08);
    transition: background .25s ease, color .25s ease;
}

.delivery-page__category-link:hover,
.delivery-page__category-link:focus {
    color: #fff;
    background: #aa8453;
}

.delivery-page__category-link.is-active {
    color: #fff;
    background: #aa8453;
}

.delivery-mobile-menu-toggle {
    display: none;
}

.delivery-mobile-menu {
    display: none;
}

.delivery-mobile-menu.is-open {
    display: block;
}

.delivery-mobile-menu__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    z-index: 1290;
}

.delivery-mobile-menu__panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, calc(100% - 44px));
    max-height: 100vh;
    overflow-y: auto;
    background: #171717;
    border-left: 1px solid rgba(255, 255, 255, .12);
    box-shadow: -8px 0 28px rgba(0, 0, 0, .45);
    z-index: 1291;
    padding: 18px 14px 20px;
}

.delivery-mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.delivery-mobile-menu__title {
    color: #fff;
    margin: 0;
    font-size: 16px;
}

.delivery-mobile-menu__close {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 28px;
    line-height: 1;
}

.delivery-mobile-menu__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.delivery-mobile-menu__item + .delivery-mobile-menu__item {
    margin-top: 6px;
}

.delivery-mobile-menu__link {
    display: block;
    width: 100%;
    padding: 10px 12px;
    color: #e6e6e6;
    border: 1px solid rgba(255, 255, 255, .12);
    background: #1e1e1e;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.delivery-mobile-menu__link.is-active,
.delivery-mobile-menu__link:hover,
.delivery-mobile-menu__link:focus {
    color: #fff;
    background: #aa8453;
    border-color: #aa8453;
}

.delivery-category {
    padding-top: 26px;
    margin-bottom: 42px;
}

.delivery-category:last-child {
    margin-bottom: 0;
}

.delivery-category__title {
    color: #fff;
    font-size: 32px;
    margin: 0 0 18px;
}

.delivery-category .row {
    row-gap: 18px;
}

.delivery-product-card {
    background: #1d1d1d;
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    margin: 6px 0;
    transition: border-color .3s ease, transform .3s ease;
}

.delivery-product-card:hover {
    border-color: rgba(170, 132, 83, .7);
    transform: translateY(-2px);
}

.delivery-product-card__image-wrap {
    border: 0;
    padding: 0;
    margin: 0;
    width: 100%;
    background: #101010;
    cursor: pointer;
}

.delivery-product-card__image {
    width: 100%;
    aspect-ratio: 3 / 3;
    object-fit: cover;
    display: block;
}

.delivery-product-card__content {
    padding: 16px 18px 10px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.delivery-product-card__price {
    color: #fff;
    font-size: 23px;
    line-height: 1.1;
    margin-bottom: 10px;
}

.delivery-product-card__name {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 19px;
    line-height: 1.35;
    text-align: left;
    margin: 0 0 8px;
    padding: 0;
}

.delivery-product-card__name:hover {
    color: #e4ba76;
}

.delivery-product-card__weight {
    margin: 0 0 10px;
    color: #c5c5c5;
    font-size: 14px;
}

.delivery-product-card__description {
    margin: 0;
    color: #adadad;
    font-size: 14px;
    line-height: 1.45;
}

.delivery-product-card__footer {
    padding: 0 18px 18px;
}

.delivery-product-card__add-btn {
    width: 100%;
    min-height: 48px;
    border: 0;
    background: #aa8453;
    color: #fff;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .25s ease;
}

.delivery-product-card__add-btn:hover,
.delivery-product-card__add-btn:focus {
    background: #8e6d42;
    color: #fff;
}

.delivery-product-card__add-icon {
    width: 22px;
    height: 22px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.delivery-product-modal {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: none;
}

.delivery-product-modal.is-open {
    display: block;
}

.delivery-product-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .78);
}

.delivery-product-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(920px, calc(100% - 30px));
    margin: 5vh auto;
    background: #171717;
    border: 1px solid rgba(255, 255, 255, .14);
    max-height: 88vh;
    overflow-y: auto;
}

.delivery-product-modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    z-index: 2;
}

.delivery-product-modal__content {
    display: flex;
    flex-direction: row;
}

.delivery-product-modal__media {
    width: 48%;
}

.delivery-product-modal__image {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
}

.delivery-product-modal__info {
    width: 52%;
    padding: 30px 24px 24px;
    color: #fff;
}

.delivery-product-modal__category {
    color: #aa8453;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: 13px;
    margin: 0 0 8px;
}

.delivery-product-modal__name {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.25;
    color: #fff;
}

.delivery-product-modal__price {
    margin: 0 0 7px;
    font-size: 28px;
    color: #fff;
}

.delivery-product-modal__weight {
    margin: 0 0 12px;
    color: #c8c8c8;
    font-size: 15px;
}

.delivery-product-modal__description {
    margin: 0 0 20px;
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.5;
}

.delivery-product-modal__add-btn {
    max-width: 300px;
}

.shop-flow-page__section {
    min-height: 65vh;
}

.shop-flow-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid rgba(170, 132, 83, .65);
    color: #fff;
    padding: 10px 16px;
    transition: .25s ease;
}

.shop-flow-link:hover {
    color: #fff;
    background: #aa8453;
}

.shop-flow-link_primary {
    background: #aa8453;
}

.shop-flow-link_primary:hover {
    background: #8e6d42;
}

.shop-flow-link.is-disabled {
    pointer-events: none;
    opacity: .45;
}

.shop-cart {
    border: 1px solid rgba(255, 255, 255, .08);
    background: #1b1b1b;
}

.shop-cart__empty {
    padding: 20px;
}

.shop-cart__table-head,
.shop-cart__item {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr) minmax(0, .8fr);
    column-gap: 14px;
    align-items: center;
}

.shop-cart__table-head {
    color: rgba(255, 255, 255, .7);
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: 14px;
}

.shop-cart__item {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.shop-cart__item:last-child {
    border-bottom: 0;
}

.shop-cart__item-product {
    display: flex;
    align-items: center;
    gap: 12px;
}

.shop-cart__item-image {
    width: 80px;
    height: 64px;
    object-fit: cover;
}

.shop-cart__item-name {
    margin: 0 0 4px;
    color: #fff;
    line-height: 1.3;
}

.shop-cart__item-extra {
    margin: 0;
    color: #b9b9b9;
    font-size: 13px;
}

.shop-cart__item-quantity {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.shop-cart__qty-btn,
.shop-cart__remove-btn {
    border: 1px solid rgba(255, 255, 255, .22);
    background: transparent;
    color: #fff;
    min-width: 32px;
    min-height: 32px;
    padding: 4px 8px;
}

.shop-cart__remove-btn {
    min-width: auto;
    font-size: 13px;
}

.shop-cart__qty-value {
    color: #fff;
    min-width: 18px;
    text-align: center;
}

.shop-cart__item-total {
    color: #fff;
    font-size: 18px;
}

.shop-cart__summary {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 18px 20px;
}

.shop-cart__summary-text,
.shop-cart__summary-total {
    color: #fff;
    margin: 0 0 8px;
}

.shop-cart__summary-total {
    font-size: 24px;
    margin-bottom: 15px;
}

.shop-cart__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.checkout-page {
    align-items: stretch;
}

.checkout-access-note {
    border: 1px solid rgba(255, 255, 255, .08);
    background: #1b1b1b;
    padding: 18px;
}

.checkout-access-note p {
    margin: 0 0 12px;
    color: #fff;
}

.checkout-form {
    border: 1px solid rgba(255, 255, 255, .08);
    background: #1b1b1b;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-form__row {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.checkout-form__row label {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
}

.checkout-form__label-inline {
    color: #fff;
    font-size: 14px;
}

.checkout-form__types {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.checkout-form__type-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.checkout-form__type-option input[type="radio"] {
    accent-color: #aa8453;
}

.checkout-form__mode-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-form__address-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.checkout-form__row input,
.checkout-form__row select,
.checkout-form__row textarea {
    width: 100%;
    background: #232323;
    border: 1px solid rgba(255, 255, 255, .18);
    min-height: 46px;
    color: #fff;
    padding: 10px 12px;
}

.checkout-form__row textarea {
    min-height: 95px;
    resize: vertical;
}

.checkout-form__zone-note {
    margin: 2px 0 0;
    font-size: 13px;
    color: #f3b173;
}

.checkout-form__submit {
    width: 100%;
    border: 0;
}

.checkout-form__submit:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.checkout-form__note {
    margin: 0;
    color: #bdbdbd;
    font-size: 13px;
}

.checkout-summary {
    border: 1px solid rgba(255, 255, 255, .08);
    background: #1b1b1b;
    padding: 18px;
    height: 100%;
}

.checkout-summary__title {
    margin: 0 0 14px;
    color: #fff;
    font-size: 24px;
}

.checkout-summary__empty {
    color: #bdbdbd;
    margin-bottom: 10px;
}

.checkout-summary__items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.checkout-summary__item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding-bottom: 8px;
}

.checkout-summary__item-name {
    color: #fff;
}

.checkout-summary__item-price {
    color: #e4ba76;
    white-space: nowrap;
}

.checkout-summary__total {
    font-size: 24px;
    color: #fff;
    margin: 0 0 14px;
}

.order-status-card {
    border: 1px solid rgba(255, 255, 255, .08);
    background: #1b1b1b;
    padding: 22px;
    max-width: 760px;
}

.order-status-card__state {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
}

.order-status-card__state_info {
    border-color: rgba(87, 168, 255, .55);
    color: #bdddff;
}

.order-status-card__state_success {
    border-color: rgba(88, 201, 112, .55);
    color: #b8f5c3;
}

.order-status-card__state_warning {
    border-color: rgba(240, 173, 78, .55);
    color: #ffd99b;
}

.order-status-card__state_error {
    border-color: rgba(223, 91, 91, .55);
    color: #ffc2c2;
}

.order-status-card__text {
    margin: 0 0 12px;
    color: #e6e6e6;
}

.order-status-card__meta {
    margin: 0 0 16px;
    color: #d2d2d2;
}

.order-status-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.shop-flow-link.is-disabled {
    pointer-events: none;
    opacity: .45;
}

.events-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
}

.events-modal.is-open {
    display: block;
}

.events-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .75);
}

.events-modal__dialog {
    position: relative;
    width: min(760px, calc(100% - 32px));
    margin: 7vh auto;
    background: #161616;
    border: 1px solid rgba(255, 255, 255, .12);
    z-index: 1;
    max-height: 86vh;
    overflow-y: auto;
}

.events-modal__close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.reservation-modal__dialog {
    width: min(980px, calc(100% - 32px));
}

.reservation-modal__content {
    padding: 30px 28px 24px;
    color: #fff;
    background: linear-gradient(180deg, #1b1b1b 0%, #131313 100%);
}

.reservation-modal__header {
    text-align: center;
    margin-bottom: 6px;
}

.reservation-modal__title {
    color: #fff;
    letter-spacing: .03em;
}

.reservation-modal__subtitle {
    color: #d6d6d6;
    margin-bottom: 8px;
}

.reservation-modal__required-note {
    font-size: 12px;
    margin-bottom: 16px;
    color: #cfcfcf;
}

.reservation-modal .required-sub {
    color: #aa8453;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.reservation-form__row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.reservation-form__row_compact {
    gap: 10px;
}

.reservation-form__field {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.reservation-form__field_half {
    flex: 1 1 calc(50% - 6px);
}

.reservation-form__field_date {
    flex: 1 1 44%;
}

.reservation-form__field_time {
    flex: 1 1 24%;
}

.reservation-form__field_guests {
    flex: 1 1 28%;
}

.reservation-form__field_full {
    flex: 1 1 100%;
}

.reservation-form__label {
    color: #fff;
    font-size: 14px;
    margin-bottom: 8px;
}

.reservation-form__control {
    border-radius: 6px;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: #202020;
    color: #fff;
    box-shadow: none;
    transition: border-color .2s ease, background-color .2s ease;
    padding: 12px 14px;
    width: 100%;
    font-size: 15px;
    font-family: inherit;
}

.reservation-form__control::placeholder {
    color: #9e9e9e;
}

.reservation-form__control:focus {
    border-color: #aa8453;
    box-shadow: none;
    background: #252525;
    outline: none;
}

.reservation-form__control_textarea {
    min-height: 110px;
    resize: vertical;
}

.reservation-modal__date-wrap {
    position: relative;
}

.reservation-modal__date-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .7;
    pointer-events: none;
}

.reservation-form [data-reservation-datepicker="true"] {
    padding-right: 40px !important;
}

.reservation-form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    margin-top: 2px;
}

.reservation-form__checkbox-input {
    appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 3px;
    background: #202020;
    margin-top: 2px;
    position: relative;
    cursor: pointer;
}

.reservation-form__checkbox-input:checked {
    background-color: #aa8453;
    border-color: #aa8453;
}

.reservation-form__checkbox-input:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.reservation-form__checkbox-text {
    color: #cfcfcf;
    line-height: 1.4;
}

.reservation-form__checkbox-text a {
    color: #fff;
    text-decoration: underline;
}

.reservation-modal__submit {
    width: 100%;
    border: 1px solid #aa8453;
    background: #aa8453;
    color: #fff;
    min-height: 50px;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: .02em;
    transition: .3s ease;
}

.reservation-modal__submit:hover {
    background: transparent;
    color: #fff;
}

.gj-picker-md,
.gj-datepicker-md [role="right-icon"] {
    z-index: 2200 !important;
}

#ui-datepicker-div {
    z-index: 2300 !important;
}

#ui-datepicker-div .ui-datepicker-unselectable .ui-state-default,
#ui-datepicker-div td.ui-state-disabled .ui-state-default {
    opacity: .35;
    color: rgba(255, 255, 255, .45) !important;
    background: rgba(255, 255, 255, .06) !important;
}

#ui-datepicker-div .ui-datepicker-prev::after,
#ui-datepicker-div .ui-datepicker-next::before {
    font-family: inherit !important;
    font-size: 18px;
    line-height: 1;
    color: #fff;
}

#ui-datepicker-div .ui-datepicker-prev::after {
    content: "\2039";
}

#ui-datepicker-div .ui-datepicker-next::before {
    content: "\203A";
    float: right;
}

/* DaData suggestions dark theme */
.suggestions-wrapper {
    color: #fff;
}

.suggestions-suggestions {
    background: #1b1b1b !important;
    border: 1px solid rgba(255, 255, 255, .16) !important;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .45) !important;
}

.suggestions-suggestion {
    color: #efefef !important;
    background: transparent !important;
}

.suggestions-suggestion em {
    color: #e4ba76 !important;
    font-style: normal;
}

.suggestions-suggestion.suggestions-selected,
.suggestions-suggestion:hover,
.suggestions-suggestion:focus {
    color: #fff !important;
    background: rgba(170, 132, 83, .28) !important;
}

.suggestions-hint {
    color: rgba(255, 255, 255, .45) !important;
}

.site-auth-modal__dialog {
    width: min(460px, calc(100% - 32px));
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(170, 132, 83, .28);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .55);
}

.site-auth-modal__content {
    padding: 24px 22px 20px;
    color: #fff;
    background: linear-gradient(180deg, #1b1b1b 0%, #131313 100%);
}

.site-auth-login {
    position: relative;
    overflow: hidden;
    padding: 34px 28px 28px;
    text-align: center;
    background:
        radial-gradient(circle at 18% 0%, rgba(228, 186, 118, .18), transparent 42%),
        radial-gradient(circle at 92% 100%, rgba(170, 132, 83, .16), transparent 40%),
        linear-gradient(165deg, #1d1a17 0%, #121110 58%, #0d0c0b 100%);
}

.site-auth-login__glow {
    position: absolute;
    inset: auto -20% -35% -20%;
    height: 180px;
    background: radial-gradient(ellipse at center, rgba(170, 132, 83, .18), transparent 68%);
    pointer-events: none;
}

.site-auth-login__mark {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #e4ba76;
    background: linear-gradient(145deg, rgba(228, 186, 118, .22), rgba(170, 132, 83, .08));
    border: 1px solid rgba(228, 186, 118, .35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.site-auth-login__eyebrow {
    margin: 0 0 10px;
    color: #e4ba76;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.site-auth-modal__title {
    margin-bottom: 8px;
}

.site-auth-login__title {
    margin: 0 0 12px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(28px, 5vw, 34px);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: .01em;
}

.site-auth-modal__subtitle {
    color: #cfcfcf;
    margin-bottom: 14px;
}

.site-auth-login__subtitle {
    max-width: 34ch;
    margin: 0 auto 22px;
    color: rgba(255, 255, 255, .68);
    font-size: 15px;
    line-height: 1.55;
}

.site-auth-login__perks {
    list-style: none;
    margin: 0 0 24px;
    padding: 14px 16px;
    text-align: left;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
}

.site-auth-login__perks li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    line-height: 1.45;
}

.site-auth-login__perks li + li {
    margin-top: 10px;
}

.site-auth-login__perk-icon {
    width: 8px;
    height: 8px;
    margin-top: 5px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #e4ba76;
    box-shadow: 0 0 0 4px rgba(228, 186, 118, .14);
}

.site-auth-login__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    margin: 0;
    border: 0;
    border-radius: 14px;
    color: #1b140d;
    background: linear-gradient(135deg, #f0d19a 0%, #aa8453 55%, #8f6b3f 100%);
    font-weight: 700;
    letter-spacing: .02em;
    box-shadow: 0 12px 28px rgba(170, 132, 83, .28);
}

.site-auth-login__cta:hover {
    background: linear-gradient(135deg, #f6dbab 0%, #b8925d 55%, #9a7546 100%);
    color: #1b140d;
    transform: translateY(-1px);
}

.site-auth-login__secure {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .42);
    font-size: 11px;
    line-height: 1.4;
}

.site-auth-login .site-auth-modal__message {
    margin-top: 12px;
}

@media (max-width: 560px) {
    .site-auth-login {
        padding: 28px 20px 22px;
    }

    .site-auth-login__title {
        font-size: 28px;
    }
}

.site-auth-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.site-auth-form_hidden {
    display: none;
}

.site-auth-form__label {
    font-size: 14px;
    color: #fff;
}

.site-auth-form__input {
    min-height: 46px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: #1f1f1f;
    color: #fff;
    padding: 10px 12px;
    font-family: inherit;
}

.site-auth-form__input:focus {
    border-color: #aa8453;
    outline: none;
}

.site-auth-form__button {
    min-height: 44px;
    border: 1px solid #aa8453;
    background: #aa8453;
    color: #fff;
    border-radius: 6px;
    transition: .25s ease;
}

.site-auth-form__button:hover {
    background: transparent;
}

.site-auth-form__button_secondary {
    background: transparent;
}

.site-auth-form__button_secondary:hover {
    background: #aa8453;
}

.site-auth-modal__message {
    min-height: 20px;
    color: #cfcfcf;
    margin: 0;
}

.site-auth-modal__message.is-error {
    color: #ff8b8b;
}

.site-auth-modal__dialog_profile {
    width: min(560px, calc(100% - 32px));
}

.site-auth-profile {
    padding: 0;
    overflow: hidden;
}

.site-auth-profile__hero {
    padding: 28px 24px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(170, 132, 83, .22) 0%, rgba(170, 132, 83, .05) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.site-auth-profile__avatar {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #aa8453;
    background: rgba(170, 132, 83, .15);
    border: 1px solid rgba(170, 132, 83, .35);
}

.site-auth-profile__name {
    margin: 0 0 6px;
    font-size: 22px;
    line-height: 1.2;
    color: #fff;
}

.site-auth-profile__phone {
    margin: 0;
    color: #b8b8b8;
    font-size: 14px;
    letter-spacing: .02em;
}

.site-auth-profile__loyalty {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 18px 22px 6px;
}

.site-auth-profile__card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 118px;
    padding: 14px 14px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .03);
}

.site-auth-profile__card_bonus {
    background: linear-gradient(160deg, rgba(170, 132, 83, .18) 0%, rgba(255, 255, 255, .02) 100%);
    border-color: rgba(170, 132, 83, .35);
}

.site-auth-profile__card_status {
    background: linear-gradient(160deg, rgba(255, 255, 255, .06) 0%, rgba(255, 255, 255, .02) 100%);
}

.site-auth-profile__card-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #b5b5b5;
}

.site-auth-profile__card-value {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 30px;
    line-height: 1;
    font-weight: 600;
    color: #fff;
}

.site-auth-profile__card-unit {
    font-size: 13px;
    font-weight: 400;
    color: #d0d0d0;
}

.site-auth-profile__card-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    max-width: 100%;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    color: #fff;
    background: rgba(170, 132, 83, .25);
    border: 1px solid rgba(170, 132, 83, .45);
}

.site-auth-profile__card-hint {
    margin-top: auto;
    font-size: 11px;
    line-height: 1.35;
    color: #9a9a9a;
}

.site-auth-profile__rules {
    margin: 0 22px 18px;
    padding: 16px;
    border: 1px solid rgba(170, 132, 83, .28);
    border-radius: 14px;
    background: rgba(255, 255, 255, .03);
}

.site-auth-profile__rules-eyebrow {
    margin: 0 0 6px;
    color: #c9a46e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.site-auth-profile__rules-title {
    margin: 0 0 10px;
    color: #fff;
    font-size: 18px;
    line-height: 1.25;
}

.site-auth-profile__rules-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
    color: #cfcfcf;
    font-size: 13px;
    line-height: 1.4;
}

.site-auth-profile__rules-list strong {
    color: #fff;
    font-weight: 600;
}

.site-auth-profile__rules-note {
    margin: 10px 0 0;
    color: #9a9a9a;
    font-size: 12px;
    line-height: 1.4;
}

.site-auth-profile__form {
    padding: 8px 22px 0;
    margin-bottom: 0;
}

.site-auth-profile__form-title {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 500;
    color: #ececec;
}

.site-auth-form_locked .site-auth-form__input,
.site-auth-form_locked .site-auth-form__button {
    opacity: .5;
    cursor: not-allowed;
}

.site-auth-form_locked .site-auth-form__input {
    background: #181818;
    border-color: rgba(255, 255, 255, .12);
    color: #9a9a9a;
}

.site-auth-form_locked .site-auth-form__button {
    border-color: rgba(170, 132, 83, .35);
    background: rgba(170, 132, 83, .2);
    color: rgba(255, 255, 255, .75);
}

.site-auth-form_active {
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid rgba(170, 132, 83, .35);
}

.site-auth-form__button:disabled {
    pointer-events: none;
}

.site-auth-profile__logout {
    margin: 4px 22px 20px;
    width: calc(100% - 44px);
}

.site-auth-profile .site-auth-modal__message {
    padding: 0 22px 18px;
}

#cappa-aside .button-light-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

#cappa-aside .button-light-wrap .button-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 16px 24px;
    margin: 0 !important;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .01em;
    line-height: 1.2;
    text-align: center;
}

.site-auth-open-button {
    gap: 8px;
    transition: border-color .25s ease, background-color .25s ease, color .25s ease;
}

.site-auth-open-button__icon {
    display: inline-flex;
    flex-shrink: 0;
    opacity: .9;
}

.site-auth-open-button:hover .site-auth-open-button__icon {
    opacity: 1;
}

.site-auth-open-button_authenticated {
    border-color: rgba(170, 132, 83, .55) !important;
    background: rgba(170, 132, 83, .1);
}

.site-auth-open-button_authenticated:hover {
    border-color: #aa8453 !important;
    background: rgba(170, 132, 83, .2);
    color: #fff;
}

@media (max-width: 575.98px) {
    .site-auth-profile__loyalty {
        grid-template-columns: 1fr;
    }

    .site-auth-profile__card-value {
        font-size: 26px;
    }
}

@media (max-width: 1199.98px) {
    .delivery-product-modal__content {
        flex-direction: column;
    }

    .delivery-product-modal__media,
    .delivery-product-modal__info {
        width: 100%;
    }

    .delivery-product-modal__image {
        min-height: 240px;
        max-height: 320px;
    }
}

@media (max-width: 991.98px) {
    .delivery-category__title {
        font-size: 28px;
    }

    .shop-cart__table-head {
        display: none;
    }

    .shop-cart__item {
        grid-template-columns: 1fr;
        row-gap: 10px;
    }
}

@media (max-width: 767.98px) {
    .reservation-modal__content {
        padding: 22px 16px 18px;
    }

    .reservation-modal__title {
        font-size: 30px;
        line-height: 1.18;
        word-break: normal;
        overflow-wrap: normal;
    }

    .reservation-form__field_half,
    .reservation-form__field_date,
    .reservation-form__field_time,
    .reservation-form__field_guests {
        flex: 1 1 100%;
    }

    .sidebar-cart {
        margin-bottom: 20px;
    }

    .mobile-cart-toggle {
        display: inline-flex;
    }

    .delivery-page__header {
        padding-bottom: 16px;
    }

    .delivery-page__subtitle {
        display: none;
    }

    .delivery-page__categories-zone {
        display: none;
    }

    .delivery-mobile-menu-toggle {
        position: fixed;
        right: 0;
        top: 0;
        z-index: 9998;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 14px;
        margin: 15px 20px;
        border: 0;
        border-radius: 999px;
        background: #e4ba76;
        color: #1b1b1b;
        font-size: 13px;
        line-height: 1;
        box-shadow: 0 8px 22px rgba(0, 0, 0, .28);
    }

    .delivery-mobile-menu-toggle:hover,
    .delivery-mobile-menu-toggle:focus {
        color: #1b1b1b;
    }

    .hero-slide__actions {
        gap: 10px;
    }

    .hero-video-play {
        width: 100%;
        justify-content: center;
    }

    .hero-video-modal__dialog {
        margin: 12vh auto;
    }

    .delivery-page__category-link {
        padding: 12px 14px;
    }

    .delivery-category {
        margin-bottom: 34px;
    }

    .delivery-category__title {
        font-size: 24px;
    }

    .delivery-product-modal__dialog {
        margin: 4vh auto;
    }

    .delivery-product-modal__name {
        font-size: 24px;
    }

    .delivery-product-modal__price {
        font-size: 24px;
    }

    .shop-cart__summary-total,
    .checkout-summary__total {
        font-size: 20px;
    }
}
