:root {
    --primary-button-color: rgb(236, 32, 68);
    /*--primary-button-color: rgb(148 72 21);*/
    --secondary-color: #2ecc71;
    --accent-color: #e74c3c;
    --text-color: rgb(118, 118, 118);
    --background-color: rgb(248 242 184);
    --background-fore-color: rgb(224 204 11);
    --backgrouond-error-color: #f1d0c5;

}

body {
    font-family: Montserrat;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

ul,li {
    margin: 0;
    padding: 0;
}

h2 {
    font-size: 24px;
    font-weight: 500;
}

h3 {
    font-size: 18px;
    font-weight: 500;
    padding: 0;
    margin: 0;
}
h3.compact {
   margin: 0 4px;
}

h4 {
    margin: 10px 0;
}

a {
    text-decoration: none;
    color: #000000;
}

button {
    font-family: Montserrat;
    border-radius: 8px;
}
.dialog button {
    padding: 10px 20px;
    flex-shrink: 0;
}

.pixel {
    width: 1px !important;
    height: 1px !important;;
    padding: 0 !important;;
    margin: 0 !important;;
    background: transparent !important;;
    color: transparent !important;;
    position: absolute;
}

.primary-btn {
    padding: 10px 20px;
    background: #e60023;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    /* border-radius: 5px; */
    /*width: 100%;*/
    height: 48px;
}
.flat-btn {
    padding: 10px 20px;
    border: none !important;
    font-size: 16px;
    cursor: pointer;
    /* border-radius: 5px; */
    /*width: 100%;*/
    height: 48px;
}

.highlight-text {
    color: var(--color1-4);
}
.highlight-text a {
    color: var(--color1-4);
}
.main-text {
    font-weight: 500;
}

*::-webkit-scrollbar {
    width: 6px;
    height: 6px; /* Высота полосы прокрутки */
    background-color: #f1f1f1; /* Цвет фона полосы прокрутки */
}
*::-webkit-scrollbar-thumb {
    /*background-color: #D4AF37; !* Цвет ползунка *!*/
    background-color: #b8b8b8;
    border-radius: 10px; /* Закругленные углы */
}
*::-webkit-scrollbar-thumb:hover {
    /*background-color: #b8922b; !* Цвет ползунка при наведении *!*/
    background-color: #b8b8b8;
}
*::-webkit-scrollbar-track {
    background-color: #e0e0e0; /* Цвет трека */
    border-radius: 10px; /* Закругленные углы */
}

body::-webkit-scrollbar-thumb {
    background-color: #c0c0c0; /* Цвет ползунка */
}
body::-webkit-scrollbar-thumb:hover {
    background-color: #b0b0b0; /* Цвет ползунка при наведении */
}

.hidden {
    display: none !important;
}

.mt-1 {
    margin-top: 2px;
}
.mt-2 {
    margin-top: 6px;
}
.mt-3 {
    margin-top: 10px;
}
.plr-10 {
    padding-left: 10px;
    padding-right: 10px;
}

.invalid {
    color: #ff4d4d;
}
.invalid.message {
    font-size: 12px;
    margin: 4px;
}

.separator:not(:first-child)::before {
    content: "·";
    margin: 0 5px; /* Adjust spacing as needed */
}

.shop-main-content {
    max-width: 1024px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 80px;
}
.shop-top-content {
    max-width: 1024px;
}

@media (max-width: 768px) {
    .shop-main-content {
        padding: 0;
        padding-top: 20px;
    }
}



.thin-cross {
    width: 14px;
    height: 14px;
    border-radius: 50%;

    position: relative;
    cursor: pointer;
}
.thin-cross::before,
.thin-cross::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px; /* Толщина линии */
    height: 100%;
    background-color: #333; /* Цвет */
    transform-origin: center;
    transition: background-color 0.2s ease;
}
.thin-cross::before {
    transform: rotate(45deg);
}
.thin-cross::after {
    transform: rotate(-45deg);
}
.thin-cross:hover::before,
.thin-cross:hover::after {
    /*background-color: #ff0000; !* Цвет при наведении *!*/
}


.text-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    font-size: 10px;
    line-height: 12px;
    text-align: center;
}
.text-list li {
    display: inline;
}
.text-list li + li::before {
    content: '•';
    margin: 0 10px;
    color: #000;
}
.text-item-container {
    overflow: hidden;
    max-height: calc(12px * 4);
    transition: max-height 0.3s ease;
}
.text-item-container.expanded {
    max-height: none;
}
.text-item-more-button {
    display: block;
    margin-top: 10px;
    cursor: pointer;
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}
.text-item-more-button:hover {
    background-color: #0056b3;
}


/* Header Styles */
.header-header {
    /*display: flex;*/
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f8f8f8;
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/
    border-bottom: 1px solid #ddd;
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}
.header-menu-icon, .nav-close-icon {
    font-size: 24px;
    cursor: pointer;
    flex-shrink: 0;
    width: 40px;
}
.header-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*max-width: 50px;*/
    color: var(--primary-button-color) !important;
    /*transform: translateY(-1px);*/
    text-decoration: none;
    font-family: "Advent Pro";
    font-weight: 600;
    width: 100%;
    font-size: 20px;
}
.header-logo img {
    /*width: 24px;*/
    margin-right: 5px;
}
.header-logo-subtext {
    text-transform: uppercase;
    font-size: 8px;
    letter-spacing: 7px;
    margin-top: -6px;
}
.header-geo {
    flex-shrink: 0;
    /*color: #999;*/
}
.header-geo p {
    /*border-radius: 4PX;*/
    /*border: 1px solid #d0d0d0;*/
    /*padding: 5px 10px;*/
    /*font-size: 12px;*/
    /*background-color: #f9f9f0;*/
    cursor: pointer;
    /*text-decoration: underline;*/
    /*text-decoration-style: dotted;*/
    margin: 0;
}
.header-search-cart {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.header-search-cart input {
    padding: 5px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.header-cart {
    position: relative;
    border-radius: 4px;
    font-size: unset;
    height: 32px;
    padding: 4px;
    transition: background 0.22s ease 0s;
    position: relative;
    color: rgb(255, 255, 255);
    background: rgb(149, 149, 149);
    cursor: pointer;
    /*width: 100px;*/
    text-align: center;

    /*background-color: #ccc;*/
    /*padding: 5px 10px;*/
    /*border-radius: 5px;*/
    border: none;
}
.header-cart.active {
    background-color: #f00;
    padding: 5px 10px;
    border-radius: 5px;
    color: #ffffff;
}
.header-cart .value {
    display: none;
    text-align: center;
    /*visibility: hidden;*/
}
.header-cart.active .value {
    border-radius: 50%;
    background-color: #fff;
    color: #000;
    width: 18px;
    height: 18px;
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
    font-size: 11px;
    font-weight: bold;
}

.header-cart .counter {
    position: absolute;
    display: none;
    border-radius: 50%;
    background-color: var(--color1-4);
    color: #ffffff;
    width: 18px;
    height: 18px;
    margin-left: 10px;
    justify-content: center;
    flex-direction: column;
    font-size: 11px;
    font-weight: bold;
    top: -10px;
    right: 0;
}
.header-cart .counter.active {
    display: inline-flex;
}
.mobile-header-item .counter {
    position: absolute;
    display: none;
    border-radius: 50%;
    background-color: var(--color1-4);
    color: #ffffff;
    width: 18px;
    height: 18px;
    margin-left: 10px;
    justify-content: center;
    flex-direction: column;
    font-size: 11px;
    font-weight: bold;
    top: -10px;
    right: 0;
}
.mobile-header-item .counter.active {
    display: inline-flex;
}

.header-offset {
    margin-top: 52px;
}


/* Sidebar Styles */
.nav-sidebar-overlay {
    background-color: rgba(0, 0, 0, 0);
    transition: all .3s;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.nav-sidebar-overlay.open {
    background-color: rgba(0, 0, 0, 0.2);
}
.nav-sidebar {
    position: fixed;
    top: 0;
    left: -370px;
    width: 370px;
    max-width: calc(100% - 8px);
    /*height: 100%;*/
    background-color: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 100;
    overflow-y: auto;
    height: unset;
    display: flex;
    flex-direction: column;
    max-height: calc(100% - 8px);
    font-size: 18px;
}
.nav-sidebar.open {
    left: 4px;
    top: 4px;
    border-radius: 10px;
    border: 1px solid #aaa;
}
.nav-sidebar .content {
    padding: 10px 20px;
}
.nav-sidebar-header {
    /*margin-bottom: 20px;*/
    display: flex;
    border-bottom: 1px solid #aaa;
    flex-shrink: 0;
    height: 50px;
    align-items: center;
}
.nav-close-icon {
    /*position: absolute;*/
    /*top: 20px;*/
    /*right: 20px;*/
    text-align: center;
    width: 20px;
    flex-shrink: 0;
    font-size: 36px;
}
.nav-sidebar-body {
    padding-top: 20px;
    padding-bottom: 20px;
    height: 100%;
    overflow-y: auto;
}
.nav-sidebar-body::-webkit-scrollbar {
    width: 6px; /* Высота полосы прокрутки */
    background-color: #f1f1f1; /* Цвет фона полосы прокрутки */
}

.nav-sidebar-body::-webkit-scrollbar-thumb {
    background-color: #c0c0c0; /* Цвет ползунка */
}
.nav-sidebar-body::-webkit-scrollbar-thumb:hover {
    background-color: #b0b0b0; /* Цвет ползунка при наведении */
}

.nav-sidebar-actions {
    /*height: 60px;*/
    margin-bottom: 30px;
}
.nav-sidebar button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #fff;
    line-height: 24px;
    border-radius: 8px;
    border: 2px solid #333;
    color: #000;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
}
.nav-sidebar button:hover {
    border-width: 3px;
    padding: 9px;
}
.nav-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav-sidebar ul li {
    margin-bottom: 10px;
}
.nav-sidebar ul li a {
    color: #333;
    text-decoration: none;
    display: flex;
    gap: 10px;
    height: 40px;
    align-items: baseline;
    cursor: pointer;
}
.nav-sidebar ul li a i {
    width: 20px;
}
.nav-user-info {
    /*margin-top: 20px;*/
    border-top: 1px solid #ccc;
    padding-top: 20px;
    flex-shrink: 0;
    min-height: 100px;
    text-align: center;
    padding-bottom: 20px;
}
.nav-user-info p {
    margin: 5px 0;
}
.nav-user-info a {
    color: #e63946;
    text-decoration: none;
}
.user-name {
    font-size: 16px;
    font-weight: 500;
}
.user-email, .user-phone {
    font-size: 14px;
}
.user-logout {
    font-size: 14px;
    text-decoration: underline !important;
}
.nav-sidebar .button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #fff;
    line-height: 30px;
    border-radius: 8px;
    border: 2px solid #333;
    color: #000;
    cursor: pointer;
    font-size: 16px;
    display: block;
    text-align: center;
    text-decoration: none;
}
.nav-sidebar .button:hover {
    border-width: 3px;
    padding: 9px;
}
.nav-sidebar .login-btn {
    font-size: unset;
    /*height: 32px;*/
    transition: background 0.22s ease 0s;
    position: relative;
    cursor: pointer;
    text-align: center;
    border: none;
    background-color: #f00;
    /*padding: 5px 10px;*/
    border-radius: 5px;
    color: #ffffff;
    width: unset;
}
.nav-sidebar button.primary-btn {
    background-color: #e60023;
    color: #fff;
}


/* Notification Styles */
.notification-notification {
    padding: 10px;
    background-color: #9de2d3;
    background: linear-gradient(90deg, #d1b3f9, #ffd084);
    color: #333;
    font-size: 16px;
    position: relative;
    font-weight: 500;
    /*margin-top: 10px;*/
}
.notification-notification-body {
    max-width: 1024px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}
.notification-notification-text {
    display: flex;
    align-items: center;
}
.notification-notification-subtext {
    font-size: 14px;
    color: #666;
    margin-left: 5px;
}
.notification-close-notification {
    cursor: pointer;
    font-size: 20px;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .notification-notification {

    }
    .cart-button-text {
        display: none;
    }
    .header-header {
        gap: 12px;
        position: relative;
        margin-top: 0;
    }
    .header-menu-icon {
        width: 20px;
    }
    .header-logo {
        /*display: none;*/
        transform: scale(0.8);
        width: 95px;
    }
    .header-geo {
        /*display: none;*/
        order: 1;
        color: #888888;
    }
    .header-geo p {
        /*font-size: 14px;*/
    }
    .geo-clear-button {
        display: none;
    }
    .dialog button {
        /*padding: 0px 12px;*/
        flex-shrink: 0;
        height: unset;
        font-size: 13px;
    }
}

/* Banner Styles */
.banner-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    /*background-color: #e8d7a3;*/
    padding: 20px;
    position: relative;
}
.banner-banner-content {
    background-image: url('/assets/images/hm1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 800px;
}
.banner-banner-new {
    background-color: #ffcc00;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: bold;
}
.banner-banner h2 {
    font-size: 24px;
    color: #333;
}
.banner-banner p {
    font-size: 16px;
    color: #666;
    margin: 10px 0;
}
.banner-banner-features {
    display: flex;
    justify-content: space-around;
    margin: 10px 0;
}
.banner-banner-features span {
    background-color: #ffcc00;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
}
.banner-banner-promo {
    font-size: 14px;
    color: #333;
}
.banner-banner-promo a {
    color: #e63946;
    text-decoration: none;
}

@media (max-width: 768px) {
    .header-search-cart input {
        display: none;
    }

    .banner-banner-content {
        padding: 10px;
    }

    .banner-banner h2 {
        font-size: 20px;
    }

    .banner-banner p {
        font-size: 14px;
    }

    .banner-banner-features {
        flex-direction: column;
    }

    .banner-banner-features span {
        margin-bottom: 5px;
    }
}

/* Scroll Control Styles */
.scroll-control {
    display: flex;
    align-items: center;
}
.scroll-container {
    overflow: auto;
    white-space: nowrap;
    flex-grow: 1;
    padding-left: 15px;
    /*scrollbar-width: none; !* Firefox *!*/
    /*-ms-overflow-style: none;  !* Internet Explorer 10+ *!*/
}
.scroll-container::-webkit-scrollbar {
    height: 6px; /* Высота полосы прокрутки */
    background-color: #f1f1f1; /* Цвет фона полосы прокрутки */
}
.scroll-container::-webkit-scrollbar-thumb {
    background-color: #D4AF37; /* Цвет ползунка */
    border-radius: 10px; /* Закругленные углы */
}
.scroll-container::-webkit-scrollbar-thumb:hover {
    background-color: #b8922b; /* Цвет ползунка при наведении */
}
.scroll-container::-webkit-scrollbar-track {
    background-color: #e0e0e0; /* Цвет трека */
    border-radius: 10px; /* Закругленные углы */
}
.scroll-content {
    display: inline-flex;
    align-items: center;
    padding-bottom: 28px;
    padding-top: 7px;
}
.scroll-item {
    display: inline-block;
    text-align: center;
    padding: 0;
    width: 250px;
    margin-right: 10px;
}
.scroll-button {
    display: none;
    background-color: #e63946;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
}
.scroll-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .scroll-container::-webkit-scrollbar {
        height: 3px;
    }
}

/* Deals Section Styles */
.deals-section {
    padding: 20px;
    background-color: #fff;
    min-height: 70vh;
}
.deals-chef {
    display: flex;
    padding: 0 15px;
}
.deals-chef-info {
    margin-left: 20px;
    font-size: 14px;
}
.deals-chef-info p {
    line-height: 1.45;
}
.deals-chef-info a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.deals-chef-info a i {
    font-size: 12px;
    color: #555;
    margin-top: -4px;
}
.deals-chef img {
    width: 48px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    height: 48px;
    object-position: center;
}
.deals-section h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    margin-top: 40px;
    padding-top: 0;
    font-weight: 600;
}
.deals-section p {
    /*font-size: 16px;*/
    color: #666;
    margin-top: 5px;
    margin-bottom: 20px;
}

.deals-chef-info-formatted {
}
.deals-chef-info-brief {
    max-height: 60px;
    overflow: hidden;
}
.deals-chef-info-brief a {
    display: inline;
    cursor: pointer;
    color: #000;
    font-weight: 500;
}

.chef-dishes {
    margin-bottom: 25px;
    padding-top: 30px;
}

.deal-card {
    border: 1px solid rgb(247, 247, 247);
    border-radius: 8px;
    /*box-shadow: rgba(0, 0, 0, 0.1) 10px 16px 30px -8px;*/
    overflow: hidden;
    position: relative;
    text-align: left;
    width: 238px;
    height: 277px;
    font-size: 13px;
    cursor: pointer;
    transition: all .2s;
}
.deal-card:hover {
    /*transform: scale(1.05);*/
    box-shadow: rgba(0, 0, 0, 0.8) 0px 2px 10px -3px;
    /*box-shadow: rgba(0, 0, 0, 0.15) 10px 16px 30px -15px*/
}


.deal-badge {
    display: none;
    position: absolute;
    top: 5px;
    left: 5px;
    background-color: var(--color3-0);
    color: var(--color3-3);
    padding: 3px 6px;
    border-radius: 5px;
    font-size: 12px;
}
.deal-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: center;
}
.deal-info {
    padding: 0 12px;
    margin: 0;
    margin-top: 8px;
}
.deal-info h3 {
    font-size: 14px;
    color: #333;
    margin: 0;
}
.deal-info p {
    /*font-size: 12px;*/
    color: #666;
    margin: 5px 0;
}
.deal-rating {
    position: absolute;
    bottom: 64px;
    left: 10px;
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #333;
}
.deal-stat-panel {
    border-radius: 4px;
    padding: 4px 4px;
    font-weight: 500;
    color: #999;
}
.deal-rating-panel {
    background-color: rgb(255, 244, 215);
    border-radius: 4px;
    padding: 4px 4px;
    font-weight: 500;
}
.deal-rating .star {
    color: #FFD700;
}
.deal-rating .star-gray {
    color: #BBBBBB;
}
.deal-rating-not-rated-text {
    font-weight: 200;
}
.deal-day {
    /*font-size: 14px;*/
    color: #a99;
}
.deal-avatar {
    position: absolute;
    /* bottom: 10px; */
    right: 5px;
    border: 4px solid #fff;
    border-radius: 50%;
    overflow: hidden;
    width: 60px;
    height: 60px;
    top: 120px;
}
.deal-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.deal-details {
    white-space: nowrap; /* Запрещает перенос строк */
    overflow: hidden; /* Скрывает содержимое, выходящее за границы */
    text-overflow: ellipsis; /* Добавляет "..." в конце */
    display: block; /* Для применения к блочным элементам */
    width: calc(100% - 46px);
}
.deal-price {
    position: absolute;
    right: 10px;
    bottom: 70px;
    /*font-size: 14px;*/
    font-weight: 500;
}
.deal-cart-dish-weight {
    color: #bbb;
}

@media (max-width: 768px) {
    .deals-section {
        padding: 0;
    }
    .deal-price {
        bottom: 65px;
    }
    .deal-rating {
        bottom: 63px;
        left: 6px;
    }
}

/* Footer Styles */
.footer {
    background-color: #f8f8f8;
    padding: 80px 0 20px 0;
    border-top: 1px solid #eaeaea;
}
.footer-content {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-logo {
    color: var(--primary-button-color);
    font-family: "Advent Pro";
    font-size: 20px;
    font-weight: 600;
}
.footer-logo img {
    width: 100px;
    margin-bottom: 20px;
}
.footer-links {
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}
.footer-column {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%; /* или конкретное значение, если нужно ограничить ширину */
}
.footer-column h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    margin-top: 0;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column ul li {
    margin-bottom: 12px;
    display: flex;
}
.footer-column ul li i {
    width: 15px;
}
.footer-column ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}
.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eaeaea;
    padding-top: 10px;
    font-size: 14px;
    color: #666;
}
.footer-bottom-links {
    display: flex;
}
.footer-bottom-links a {
    margin-right: 20px;
    text-decoration: none;
    color: #666;
}
.footer-bottom-text {
    text-align: center;
}
.footer-bottom-icons {
    display: flex;
}
.footer-bottom-icons a img {
    width: 120px;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .footer-content {
        width: 83%;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        align-items: start;
        text-align: left;
        margin-left: 60px;
    }

    .footer-column {
        margin-bottom: 20px;
        max-width: 80%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom-links {
        margin-bottom: 10px;
    }

    .footer-bottom-icons {
        justify-content: center;
    }

    .footer-column ul li {
        display: block;
    }
}


.dish-cart-dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(0, 0, 0, 0.5);*/
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.dish-cart-dialog .header {
    /*padding: 0 20px 0 20px;*/
    margin: 0 24px;
}
.dish-cart-dialog .header h2 {
    margin: 0;
    margin-bottom: 6px;
    margin-top: 16px;
}
.dish-cart-dialog .header .chef {
    font-size: 14px;
}
.dish-cart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(0, 0, 0, 0.5);*/
    background: rgba(245,245,245, 0.65);
}
.dish-cart-dialog-form {
    background: #fff;
    border-radius: 16px;
    max-width: calc(100% - 20px);
    max-height: calc(-64px + 100dvh);
    width: 480px;
    /*padding: 20px;*/
    position: relative;
    overflow: hidden;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.3) 0 0 30px;
}
.dish-cart-dialog-form a {
    color: #000000;
    text-decoration: none;
}
.dish-cart-dialog-form a:hover {
    text-decoration: underline;
}
.dish-cart-dialog-content {
    background: #fff;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    margin-bottom: 50px;

    overflow: -moz-scrollbars-none;
    -ms-overflow-style: none;
    -ms-overflow-style: none; /* IE и Edge */
    scrollbar-width: none; /* Firefox */
}
.dish-cart-dialog-content::-webkit-scrollbar {
    display: none;
}
.dish-cart-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    background-color: #fff;
    box-shadow: rgb(0, 0, 0, 0.2) 0px 0px 6px 0px;
    transition: background 0.22s ease 0s, box-shadow 0.22s ease 0s, color 0.22s ease 0s;
    font-weight: 500;
    /*border-radius: 10px;*/
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    z-index: 1;
    padding: 0;
}
.dish-cart-close-button:hover {
    box-shadow: rgb(0, 0, 0, 0.6) 0px 0px 10px 0px;
}
.dish-cart-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    /*border-top-left-radius: 10px;*/
}
.dish-cart-image img {
    height: 320px;
}
.dish-cart-details {
    /*padding: 20px;*/
    font-size: 15px;
    font-weight: 500;
    padding-bottom: 0;
}
.dish-cart-meta {
    padding: 0 10px 0 10px;
}
.dish-cart-meta span {

}
.dish-cart-ratings {
    display: block;
    margin: 24px 0;
    padding: 0 20px 0 20px;
}
.dish-cart-ratings i {
    margin-right: 5px;
}
.dish-cart-tab-menu {
    display: flex;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    /*padding: 0 20px 0 20px;*/
    margin-top: 24px;
    margin-left: 24px;
}
.dish-cart-tab {
    padding: 0px;
    cursor: pointer;
    border: none;
    background: none;
    font-weight: bold;
    margin-right: 20px;
    border-radius: 0;
}
.dish-cart-tab.active {
    border-bottom: 2px solid #000;
}
.dish-cart-tab-content {
    display: none;
    /*padding: 0 24px 0 24px;*/
    margin-left: 24px;
    margin-right: 24px;
    margin-top: 20px;
}
.dish-cart-tab-content.active {
    display: block;
}
.dish-cart-portion-size,
.dish-cart-spice-level,
.dish-cart-reviews {
    margin: 20px 0;
}
.dish-cart-portion-details {
    border: 1px solid #aaa;
    border-radius: 5px;
    background-color: #f9f9f9;
    padding: 10px;
}
.dish-cart-add-to-cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;

    padding: 10px;
    box-shadow: rgba(0,0,0,0.2) 0 -3px 20px -2px;
}
.dish-cart-quantity-container {
    flex-shrink: 0;
    border: 1px solid rgb(202, 202, 202);
    /* border-right: 5px; */
    overflow: hidden;
    width: 150px;
    justify-content: stretch;
    border-radius: 5px;
    display: flex;
    height: 40px;
}
.dish-cart-quantity-container input {
    width: 100%;
    /* height: 30px; */
    background-color: transparent;
    border: none;
    padding: 0;
    text-align: center;
    font-size: 18px;
}
.dish-cart-quantity-button {
    /* padding: 10px; */
    /* background: #ddd; */
    border: none;
    background-color: transparent;
    /* border-radius: 5px; */
    cursor: pointer;
    font-size: 26px;
    /* height: 30px; */
    width: 100%;
    line-height: 40px;
}
.dish-cart-quantity-button.left {
}
.dish-cart-quantity-button.right {
}
.dish-cart-add-to-cart-buttons {
    flex-shrink: 0;
}
.dish-cart-add-to-cart-button {
    background: #f00;
    border: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    height: 40px;
    padding: 0 40px;
    /* font-size: 16px; */
    font-weight: 500;
}
.dish-cart-see-all-reviews {
    display: block;
    margin-top: 20px;
    text-align: center;
    color: #00f;
    text-decoration: none;
}
.dish-cart-dialog .box {
    padding: 10px;
    border-radius: 4px;
    /*border: 1px solid #f0f0f0;*/
    background-color: #f9f9f9;
    box-shadow: rgba(0,0,0,0.3) 0 -1px 4px -3px;
}
.dish-cart-detail-items {
    display: flex;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 16px;
}
.dish-cart-variants {
    padding: 0 25px;
    overflow-x: auto;
}
.dish-cart-variants ul {
    display: flex;
    gap: 10px;

}
.dish-cart-variants img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
}
.dish-cart-variant-item {
    cursor: pointer;
}
.dish-cart-variant-item.active img {
    border: 3px solid #f00;
}

.dish-cart-dialog *::-webkit-scrollbar-thumb {
    background-color: #c4c4c4; /* Цвет ползунка */
    border-radius: 10px; /* Закругленные углы */
}
.dish-cart-dialog *::-webkit-scrollbar-thumb:hover {
    background-color: #a8a8a8; /* Цвет ползунка при наведении */
}

.no-scroll {
    overflow: hidden;
}

@media (max-width: 768px) {
    .dish-cart-dialog-form {
        height: 100%;
        max-height: unset;
        width: 100%;
        max-width: unset;
        border-radius: 0;
    }
    .dish-cart-dialog-content {
        max-width: 100%;
        padding: 0;
    }

    .dish-cart-add-to-cart-button {
        padding: 10px;
    }
}


.dish-cart-portion-options {
    margin: 20px 0;
    padding: 10px 24px 60px 24px;
    background-color: #f9f9f9;
    margin-top: 30px;
    font-weight: bold;
    border-top: 1px solid #ddd;
}
.dish-cart-portion-options h3 {
    font-weight: bold;
    font-size: 13px;
    padding: 0;
    margin: 15px 0;
    margin-top: 30px;
    margin-bottom: 10px;
}
.dish-cart-portion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.dish-cart-portion-header span {
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
}
.dish-cart-portion-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    background-color: #fff;
    font-weight: 400;
}
.dish-cart-portion-description {
    display: flex;
    align-items: center;
}
.dish-cart-portion-description i {
    font-size: 24px;
    margin-right: 10px;
    display: none;
}
.dish-cart-portion-description .item {
    margin-right: 10px;
}
.dish-cart-portion-control {
    display: flex;
    /* margin-right: 10px; */
    flex-shrink: 0;
    align-items: baseline;
}
.dish-cart-save {
    color: #28a745;
    margin-left: 10px;
    flex-shrink: 0;
    font-size: 12px;
}
.dish-cart-portion-option input[type="radio"] {
    accent-color: #333;
}
.dish-cart-portion-option.active {
    /*background-color: #e6f7ff;*/
    /*border-color: #009688;*/
    font-weight: 500;
    border: 1px solid #007bff;
    background-color: #e1f0ff;
}



.nutrition-cards {
    display: flex;
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
    gap: 10px;
    flex-wrap: wrap;}
.nutrition-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    border-radius: 10px;
    width: calc(100% / 3 - 7px);
    margin-bottom: 5px;
    position: relative;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    background-color: rgb(255, 250, 236);
    border: 1px solid rgb(251 224 148);
    font-size: 12px;
}
.nutrition-card .nutrition-icon {
}
.nutrition-card .nutrition-info h3 {
    margin: 0;
    padding: 0;
}
.nutrition-card .nutrition-info p {
    margin: 0;
    padding: 0;
}
.nutrition-card .nutrition-info span {
    font-weight: bold;
}
.nutrition-info {
    text-align: right;
}

@media (max-width: 600px) {
    .nutrition-card {
        width: calc(100% / 2 - 5px);
    }
    .dish-cart-tab {
        margin-right: 10px;
    }
    .dish-cart-portion-description i {
        font-size: 18px;
    }
    .dish-cart-save {
        font-size: 12px;
    }
    .dish-cart-portion-description {
        font-size: 12px;
    }
}


.recommended-spice-level {
    padding: 0 20px 0 00px;
}

.spice-level-options {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.spice-level-option {
    width: 21%;
    height: 66px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    background-color: #fff;
}
.spice-level-option.active {
    background-color: #e6f7ff;
    border-color: #009688;
    font-weight: 500;
}
.spice-level-option i {
    font-size: 24px;
    margin-bottom: 5px;
}
.spice-level-option span {
    font-size: 12px;
    color: #333;
}

.food-type-option.hor, .spice-level-option.hor {
    display: flex;
    flex-direction: row;
    padding: 0 10px;
    text-align: left;
}
.food-type-option.hor span, .spice-level-option.hor span {
    margin-left: 8px;
}
.spice-level-option.hor i {
    margin: 0;
}

.single-option.button {
    width: unset;
    height: unset;
    padding: 10px 15px;
    text-align: center;
    background-color: #f0f0f0;
    border: 2px solid transparent;
    font-weight: 600;
}
.single-option.button.active {
    border: 2px solid #000000;
}

.warning {
    color: #e60023;
}


.day-selector-container {
    overflow-x: auto;
}
.day-selector {
    display: flex;
    /* justify-content: center; */
    gap: 10px;
    /* flex-wrap: wrap; */
    padding-bottom: 10px;
}
.day-selector-day {
    width: 40px;
    height: 40px;
    border: 2px solid #e3a8a8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    flex-shrink: 0;
}
.day-selector-day-available {
    border-color: #000;
    color: #000;
}
.day-selector-day-unavailable {
    border-color: #d3d3d3;
    color: #d3d3d3;
    cursor: default;
}
.day-selector-day-weekend {
    border-color: #e3a8a8;
    color: #e3a8a8;
}
.day-selector-day-weekend-available {
    color: #ff0000;
}
.day-selector-day-weekend-unavailable {
    border-color: #f7d7d7;
    color: #f7d7d7;
    cursor: default;
}
.day-selector-day-selected {
    background-color: #a8a8a8;
    color: #fff;
}
.day-selector-day-weekend-selected {
    background-color: #ff0000;
    color: #fff;
}

.dish-cart-selector ul {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.dish-cart-selector ul>li {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 5px;
    border: 1px solid #d0d0d0;
    background-color: #eeeeee;
    color: #000;
}
.dish-cart-selector ul>li.active {
    border: 1px solid #007bff;
    background-color: #e1f0ff;
}

.dish-cart-details p {
    font-size: 14px;
    font-weight: 500;
}


.cart-panel {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 0;
    right: -100px;
    width: 400px;
    max-width: 100%;
    height: 100%;
    /*background-color: #fff;*/
    box-shadow: -2px 0 58px rgba(0, 0, 0, 0.2);
    z-index: 2;
    overflow-y: hidden;
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
    background-color: #f9f9f9;
}
.cart-panel.active {
    right: 0;
    transform: translateX(0);
}
.cart-panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    /*z-index: 10001;*/
    /*display: none;*/
}
.cart-panel-overlay.active {
    /*display: block;*/
    /*background: rgba(0, 0, 0, 0.5);*/
}
.cart-panel-header {
    padding: 24px;
    border-bottom: 1px solid #e0e0e0;
    /*background: #e2f9f5;*/
    background: #fff;
    position: relative;
    /*z-index: 10;*/
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
}
.cart-panel-header h2 {
    margin: 0;
}
.cart-panel-delivery-info-header {
    display: flex;
}
.cart-panel-delivery-info {
    /*margin-top: 5px;*/
    font-size: 14px;
    color: #555;
    width: 100%;
}
.cart-panel-total {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: space-between;
}
.currency-text {
    font-weight: 300;
    font-size: 10px;
}
.cart-panel-total-items {
    font-size: 14px;
    font-weight: 400;
}
.cart-panel-checkout-button {
    margin-top: 10px;
    padding: 10px 20px;
    background: #e60023;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    /*border-radius: 5px;*/
    width: 100%;
    height: 48px;
}

.cart-panel-empty {
        text-align: center;
}
.cart-panel-empty img {
    border-radius: 50%;
    width: 100%;
}

.cart-panel-content {
    overflow-y: auto;
    overflow-x: hidden;
    /*padding: 15px;*/
}
.cart-panel-content::-webkit-scrollbar {
    display: none;
}
.cart-panel-suggestions {
    background: #f0f8ff;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}
.cart-panel-suggestions h3 {
    margin-top: 0;
    margin-bottom: 10px;
}
.cart-panel-suggestions-carousel {
    display: flex;
    overflow-x: auto;
}
.cart-panel-suggestion {
    display: flex;
    align-items: center;
    margin-right: 10px;
}
.cart-panel-suggestion img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-right: 10px;
}
.cart-panel-suggestion-details {
    display: flex;
    flex-direction: column;
}
.cart-panel-suggestion-title {
    font-weight: bold;
    margin-bottom: 5px;
}
.cart-panel-suggestion-price {
    color: #888;
}
.cart-panel-suggestion-add {
    margin-top: 5px;
    padding: 5px;
    background: #e60023;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}
.cart-panel-items {
    /*margin-top: 10px;*/
}
.cart-panel-sheffer {
    /*margin-bottom: 15px;*/
    /*margin-bottom: 15px;*/
}
.cart-panel-sheffer-info {
    display: flex;
    align-items: stretch;
    /*margin-bottom: 10px;*/
    min-height: 64px;
    padding: 0px 24px 0px 24px;
    background-color: #f2f2f2;
}
.cart-panel-sheffer-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cart-panel-sheffer-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}
.cart-panel-sheffer-name {
    font-weight: 600;
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 13px;
    width: 100%;
}
.cart-panel-view-menu {
    /*flex-shrink: 0;*/
    text-align: right;
    color: #009688;
    text-decoration: none;
    font-weight: 400;
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 13px;
}
.cart-panel-item {
    display: flex;
    align-items: center;
    /* margin-bottom: 15px; */
    padding: 12px 24px;
    border-top: 1px dotted #d5d5d5;
}
.cart-panel-item:nth-last-child(1) {
    border-bottom: 1px dotted #d5d5d5;
}
.cart-panel-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-right: 15px;
    object-fit: cover;
    object-position: center;
}
.cart-panel-item-details {
    flex: 1;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 14px;
}
.cart-panel-item-title {
    /*font-weight: bold;*/
    margin-bottom: 5px;
}
.cart-panel-item-price {
    font-size: 13px;
    font-weight: 600;
}
.cart-panel-item-quantity {
    display: flex;
    align-items: center;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    height: 40px;
}
.cart-panel-item-quantity button {
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    color: #333;
    font-size: 22px;
    cursor: pointer;
}
.cart-panel-item-quantity input {
    width: 40px;
    text-align: center;
    background: transparent;
    border: none;
    margin: 0 5px;
    font-size: 16px;
    font-weight: 600;
}
.cart-panel-item-available {
    font-size: 10px;
    color: var(--accent-color);
    font-weight: bold;
    text-align: right;
    margin-bottom: 3px;
}
.cart-panel-close {
    cursor: pointer;
    font-size: 32px;
    position: absolute;
    top: 15px;
    right: 15px;
}

@media (max-width: 600px) {
    .cart-panel {
        width: 100%;
    }
}


.gradient-bar {
    width: 100%;
    height: 5px;
    background: linear-gradient(20deg, yellow, red, yellow);
    background-size: 200% 100%;
    animation: gradient-loader 3s ease infinite;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

@keyframes gradient-loader {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.cart-panel-day {
    display: flex;
    flex-direction: column;
}
.cart-panel-delivery-info {
    padding: 0 24px 12px 24px;
    /* background-color: #f0f0f0; */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-weight: 400;
    min-height: 64px;
    font-size: 15px;
    position: relative;
}
.cart-panel-week-header {
    border-top: 1px solid #999;
    padding: 0 10px 0 10px;
    background-color: #f0f0f0;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    font-weight: bold;
    text-transform: lowercase;
    font-size: 12px;
}
.cart-panel-delivery-date {
    text-transform: lowercase;
}
.cart-panel-sheffer-info img {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    object-position: center center;
}
.cart-panel-item-portion-value {
    font-weight: bold;
}
.cart-panel-item-portion {
    border-radius: 4px;
    background-color: #f7e9c5;
    font-size: 12px;
    padding: 5px 12px;
    color: #555;
}

.page-header {
    /*display: flex;*/
    width: 100%;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.page-header .back-btn {
    font-size: 12px;
    text-decoration: none;
    color: #999;
}
.page-header h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 0;
    margin-top: 0;
    padding-top: 0;
}

.form {
    padding: 0 20px;
}

.input-container {
    position: relative;
    margin: 20px 0;
    display: flex;
}
.floating-label {
    position: absolute;
    top: 14px;
    left: 10px;
    font-size: 16px;
    color: #999;
    pointer-events: none;
    transition: 0.2s ease all;
}
.floating-label-input {
    width: 100%;
    padding: 20px 10px 10px 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 3px;
}
.input-container input:focus ~ .floating-label,
.input-container input:not(:placeholder-shown) ~ .floating-label {
    top: 4px;
    left: 10px;
    font-size: 10px;
    color: #333;
}
.input-container > *:not(:first-child):not(label) {
    margin-left: 4px;
}



.shop-chef-container {
    padding: 0 20px;
    max-width: 990px;
    margin: auto;
    min-height: 70vh;
}
.shop-chef-header-photo {
    position: relative;
    background-position: center;
    background-size: cover;
    height: 310px;
    /*margin-bottom: 40px;*/
    /*border-bottom-left-radius: 15px;*/
    /*border-bottom-right-radius: 15px;*/
}
.shop-chef-header {
    background-color: #f9f9f9;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}
.shop-chef-header .shop-chef-container {
    display: flex;
    align-items: start;
    height: unset;
    min-height: unset;
    gap: 20px;
    position: relative;
}
.shop-chef-header-geo {
    /*position: absolute;*/
    right: 5px;
    top: -35px;
    font-size: 14px;
    color: #999;
}
.shop-chef-dish-img-box {
    background-color: #FFFFFF;
    border: 1px solid #aaaaaa;
    border-radius: 10px;
    padding: 5px;
}
.shop-chef-dish-img {
    border-radius: 50%;
    width: 110px;
    height: 110px;
    object-fit: cover;
    overflow: hidden;
}
.shop-chef-info {
    flex: 1;
}
.shop-chef-title {
    font-size: 32px;
    font-weight: 500;
    font-family: serif;
}
.shop-chef-by {
    font-size: 16px;
    color: #666;
}
.shop-chef-badges {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.shop-chef-top-chef {
    background-color: #ff4b4b;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
}
.shop-chef-verified {
    background-color: #fff69e;
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
}
.shop-chef-cuisine {
    color: #999;
}
.shop-chef-stats {
    margin-top: 10px;
    display: flex;
    gap: 20px;
}
.shop-chef-stats span {
    font-size: 14px;
    color: #666;
}
.shop-chef-bio {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #333;

    display: -webkit-box;
    -webkit-line-clamp: 5; /* Ограничивает текст 5 строками */
    -webkit-box-orient: vertical;
    overflow: hidden; /* Скрывает остальной текст */
    text-overflow: ellipsis; /* Добавляет "..." */
}
.contact-chef {
    margin-top: 25px;
}
.shop-chef-search-block {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 5px;
}
.shop-chef-search-container {
    position: relative;
}
.shop-chef-search-input {
    line-height: 40px;
    border-radius: 25px;
    min-width: 300px;
    background-color: #f0f0f0;
    border: 2px solid #ddd;
    padding-left: 10px;
    padding-right: 55px;
}
.shop-chef-search-btn {
    position: absolute;
    right: 10px;
    background-color: transparent;
    border: navajowhite;
    font-size: 20px;
    top: 10px;
    color: #555;
}
.shop-chef-search-clear-btn {
    position: absolute;
    right: 40px;
    background-color: transparent;
    border: navajowhite;
    font-size: 12px;
    top: 10px;
    font-weight: 600;
    color: #555;
    height: 26px;
    width: 26px;
    border-radius: 50%;
}
.shop-chef-search-clear-btn:hover {
    background-color: #dddddd;
}
.shop-chef-actions {
    /*display: none;*/
    /*display: flex;*/
    /*flex-wrap: wrap;*/
    /*width: 250px;*/
    /*gap: 8px;*/
    justify-content: end;
    text-align: right;
    margin-top: 20px;
}
.shop-chef-buttons {
    display: flex;
    flex-wrap: wrap;
    /*width: 300px;*/
    gap: 8px;
    justify-content: end;
    margin-bottom: 8px;
}
.shop-chef-actions-block {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    /*justify-content: center;*/
}
.shop-chef-actions button,
.shop-chef-actions a,
.shop-chef-website {
    background-color: #FFFFFF;
     border: 1px solid #999;
    /* box-shadow: rgba(0, 0, 0, 0.4) 0 1px 4px; */
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 14px;
    color: #347;
    cursor: pointer;
    width: unset;
    text-decoration: none;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    min-width: 140px;
}
.shop-chef-chat {
    background-color: transparent;
    border: none;
    /*box-shadow: rgba(0, 0, 0, 0.4) 0 1px 4px;*/
    /*border-radius: 20px;*/
    /*padding: 10px 15px;*/
    font-size: 12px;
    color: #000000;
    cursor: pointer;
    width: unset;
    text-decoration: none;
    display: inline-flex;
    gap: 10px;
    /*align-items: center;*/
    /*min-width: 200px;*/
    font-weight: 600;
    text-align: left;
    letter-spacing: 0.5px;
}
.shop-chef-chat span {
    text-decoration: underline;
}
.shop-chef-dishes {
    display: flex;
    flex-flow: wrap;
    -webkit-box-pack: start;
    justify-content: flex-start;
    margin: 20px 0;
    gap: 20px;
    margin-bottom: 50px;
}
.shop-chef-dishes li {
    width: calc((100% - 40px) / 3);
    margin: 0;
    /*width: unset;*/
}
.shop-chef-dishes .deal-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.square-image-container {
    position: relative;
    width: 100%;
    padding-top: 80%; /* This maintains the aspect ratio */
}
.shop-chef-dishes .deal-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
}
.shop-chef-dishes h3 {
    font-size: 18px;
    font-weight: 600;
}
.shop-chef-dishes .deal-details {
    font-weight: 500;
    margin: 7px 0;
    min-height: 15px;
}
.shop-chef-dishes .deal-rating {
    position: static;
    margin: 7px 0;
}
.shop-chef-dishes .deal-info {
    height: 100%;
}
.shop-chef-dishes .deal-footer {
    display: flex;
    justify-content: space-between;
    margin: 0 10px;
    flex-shrink: 0;
    min-height: 30px;
    font-size: 15px;
    padding: 12px 0;
    border-top: 1px solid rgb(235, 235, 236);
}
.shop-chef-dishes .deal-price {
    position: static;
}

.shop-chef-reviews {
    margin: 20px 0;
}
.shop-chef-review {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
}
.shop-chef-reviewer {
    font-weight: bold;
}
.shop-chef-review-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}
.shop-chef-review-text {
    font-size: 14px;
    color: #333;
}
.shop-chef-stories {
    margin: 20px 0;
}
.shop-chef-stories-title {
    font-size: 18px;
    font-weight: bold;
}
.shop-chef-no-stories {
    margin-top: 10px;
    font-size: 14px;
    color: #999;
}

@media (max-width: 768px) {
    .shop-chef-container {
        padding: 0;
    }
    .shop-chef-header-photo {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;

        height: 140px;
    }
    .shop-chef-header {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        padding-bottom: 10px;
    }
    .shop-chef-header-geo {
        right: unset;
        left: 10px;
    }
    .contact-chef {
        margin-top: 15px;
    }
    .shop-chef-bio {
        margin-top: 0;
    }
    .shop-chef-actions {
        margin: 20px 15px;
        width: unset;
    }
    .shop-chef-dish-img-box {
        position: absolute;
        top: -85px;
        right: 10px;
    }
    .shop-chef-dish-img {
        width: 100px;
        height: 100px;
        /*border: 5px solid #fff;*/
    }
    .shop-chef-title {
        padding-right: 90px;
    }
    .shop-chef-by {
        font-size: 14px;
    }
    .shop-chef-badges {
        font-size: 12px;
    }
    .shop-chef-info {
        width: 100%;
        padding: 0 15px;
    }
    .shop-chef-stats {
        flex-direction: column;
        gap: 5px;
    }

    .shop-chef-actions-block {
        justify-content: center;
    }

    .shop-chef-dishes {
        justify-content: center;
    }
    .shop-chef-dishes li {
        width: calc((100% - 30px));
    }
    .square-image-container {
        padding-top: 65%;
    }
}


.shop-chef-in-process {
    margin: 0 15px;
    margin-top: 100px;
    text-align: center;
}
.shop-chef-in-proces-title {
    font-size: 28px;
    font-weight: 500;
}
.shop-chef-in-process img {
    border-radius: 50%;
    width: 300px;
}


.order-status {
    background-color: #c0c0c0;
    color: #fff;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
}
/*$STATUS_PLACED*/
.order-status.status_P {
    background-color: #D4AF37;
}
/*$STATUS_PIAD*/
.order-status.status_A {
    background-color: #4caf50;
}
/*$STATUS_CANCELED*/
.order-status.status_C {
    background-color: #fff0f3;
    color: #F00;
}
/*$STATUS_COMPLETED*/
.order-status.status_F {
    background-color: #9cbcdc;
}

.delivery-status {
    background-color: #c0c0c0;
    color: #fff;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    margin: 2px 0 6px 0;
}
/*deliveryPending*/
.delivery-status.status_P {
    background-color: #D4AF37;
}
/*deliveryApproved*/
.delivery-status.status_A {
    background-color: #4caf50;
}
/*deliveryCanceled*/
.delivery-status.status_C {
    background-color: #fff0f3;
    color: #F00;
}
/*deliveryRejected*/
.delivery-status.status_R {
    background-color: #ff1744;
}
/*deliveryPreparing*/
.delivery-status.status_M {
    background-color: #87c5ff;
}
/*deliveryDelivering*/
.delivery-status.status_D {
    background-color: #70da72;
}
/*deliveryReady*/
.delivery-status.status_T {
    background-color: #70da72;
}
/*deliveryCompleted*/
.delivery-status.status_F {
    background-color: #9cbcdc;
}


.order-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.order {
    /*display: flex;*/
    gap: 20px;
    padding: 10px;
    /*border: 1px solid #a0c6eb;*/
    border-radius: 15px;
    background-color: #f9f9f9;
}
.order-header {
    flex-shrink: 0;
    width: 200px;
    padding-bottom: 10px;
}
.order-num {
    margin: 4px 0;
}
.order-num a {
    color: #437cb2;
    text-decoration: none !important;
}
.order-sum {
}
.order-status {
}
.delivery-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}
.delivery {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding-top: 15px;
}
.delivery {
    border-top: 1px solid #e0e0e0;
}
/*.delivery:not(:first-child) {*/
/*    border-top: 1px solid #e0e0e0;*/
/*}*/
.delivery-header {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.chef-img {
}
.chef-img img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    /*border: 5px solid #eee;*/
}
.delivery-info {
}
.delivery-date {
    font-weight: 600;
    font-size: 14px;
}
.delivery-business {
    margin: 4px 0;
    font-weight: 400;
    font-size: 16px;
}
.delivery-business a {
    color: #437cb2;
    text-decoration: none !important;
}
.delivery-status {
}
.delivery-items {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    width: 100%;
}
.delivery-item {
    cursor: pointer;
}
.delivery-item img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}
.item-info {
}
.item-title {
}
.item-count {
}
.item-price {
}

@media (max-width: 768px) {
    .order {
        display: block;
    }
    .order-header {
        margin-bottom: 15px;
        width: unset;
        text-align: right;
        /*border-bottom: 1px solid #ddd;*/
        /*padding-bottom: 5px;*/
    }
    .delivery-header {
        margin-bottom: 15px;
    }
    .delivery {
        border-top: 1px solid #e0e0e0;
        padding-top: 15px;
        flex-direction: column;
    }
}


#map {
    width: 100%;
    height: 400px;
    margin-top: 20px;
    position: relative;
}
#map .center-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1000;
}
#map .center-marker img {
    height: 50px;
    margin-top: -50px;
}





/* Header - Maxi */
.header-header {
    background-color: var(--white-color);
    /*color: #000000;*/
    color: #000000;
    box-shadow: none;
    /*border-bottom: 2px solid #dddddd;*/
    box-shadow: rgba(0, 0, 0, 0.2) 0 -4px 10px;
}
.header-main-line {
    padding: 10px 0;
}
.header-main-line {
    padding: 10px 0;
}
.header-menu-line {
    /*background-color: var(--color2-4);*/
    /*color: #fff;*/
    padding: 8px 0;
    font-size: 12px;
    font-weight: 500;
}
.header-header.slim {
    /*border-bottom: 1px solid var(--color3-2);*/
}
.header-header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}
.header-header-content-block .icon {
    font-size: 15px;
}
.header-header-content-block {
    display: flex;
    gap: 20px;
}
.sell-on-milolepo-link-block-mobile {
    display: none;
}
.header-header-content .header-logo {
    width: unset;
}
.header-header-content .header-menu-line {
    display: flex;
    align-items: center;
    font-size: 12px;
    width: 100%;
    position: relative;
}
.header-header-content .header-geo {
    display: flex;
    align-items: center;
    font-size: 12px;
}
.header-header-content .header-geo i {
    margin-right: 5px;
}
.header-header-content .header-links a {
    /*margin-left: 20px;*/
    text-decoration: none;
    color: unset;
}
.header-header-content .header-main-line {
    /*display: flex;*/
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    width: 100%;
    gap: 30px;
}
.header-header-content .header-logo img {
    height: 40px;
}
.header-header-content .header-search {
    flex-grow: 1;
    /* margin: 0 20px; */
    position: relative;
    border-radius: 40px;
    background-color: #f9f9f9;
    border: 2px solid #555;
    padding-right: 30px;
}
.header-header-content .header-search:focus-within {
    background-color: #fff;
    border: 2px solid var(--color1-4);
}
.header-header-content .header-search input {
    width: 100%;
    padding: 12px 12px;
    border-radius: 30px;
    border: none;
    font-size: 16px;
    background: transparent;
    outline: none;
}
.header-header-content .header-search input::placeholder {
    color: #aaaaaa;
}
.header-header-content .header-search i {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 20px;
    color: unset;
}
.header-header-content .header-icons {
    display: flex;
    align-items: center;
    gap: 25px;
}
.header-header-content .header-icon {
    text-align: center;
    /*margin-right: 20px;*/
    text-decoration: none;
    font-size: 12px !important;
    color: unset;
    cursor: pointer;
    transition: all .3s;
    width: 28px;
    height: 28px;
    padding: 4px;
}
.header-header-content .header-icon:hover {
    color: var(--color1-4);
}
.header-header-content .header-icon i {
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
}
.header-header-content .header-cart {
    border-radius: unset;
    font-size: unset;
    /*height: unset;*/
    /*padding: 0;*/
    transition: background 0.22s ease 0s;
    /*position: relative;*/
    background: transparent;

    position: relative;
    /*background: unset;*/
}
.header-header-content .cart-counter {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--color1-4) !important;
    color: unset;
}
.header-header-content .header-icon.lang-dropdown {
    padding: 0;
    border: 2px solid #333;
    border-radius: 50%;
    overflow: hidden;
}
.header-header-content .lang-dropdown {
    position: relative;
    /*right: 10px;*/
}
.header-header-content .lang-dropdown-button img {
    width: 24px;
    height: 24px;
    position: absolute;
    left: -2px;
    top: -3px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    object-fit: cover;
}
.header-header-content .lang-dropdown span {
    display: none;
}
.header-header-content .lang-dropdown-button {
    background: none;
    border: 2px solid #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 14px;
    border-radius: 50%;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.header-header-content .lang-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 150px;
    z-index: 1;
    border-radius: 5px;
}
.header-header-content .lang-dropdown:hover .lang-dropdown-content {
    display: block;
}
.header-header-content .lang-option {
    padding: 10px;
    cursor: pointer;
}
.header-header-content .lang-option:hover {
}
.header-header-content .lang-option img {
    margin-right: 10px;
}


.mobile-header {
    display: none;

    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: space-around;
    align-items: center;
    background-color: #f9f9f9;
    padding: 10px 0;
    border-top: 1px solid #e0e0e0;
    z-index: 1;
}
.mobile-header-item {
    position: relative;
    font-size: 24px;
    color: #b0b0b0;
    cursor: pointer;
}
.mobile-header-item .value {
    position: absolute;
    border-radius: 50%;
    background-color: var(--color1-4);
    color: #fff;
    font-size: 10px;
    width: 18px;
    height: 18px;
    text-align: center;
    line-height: 18px;
    right: -10px;
    top: -5px;
    display: none;
}
.mobile-header-item.active .value {
    display: block;
}

.header-links {
    /*font-size: 13px;*/
}
.header-links .become-a-seller {
    /*font-weight: 500;*/
}
.header-links-themes {
    display: flex;
    gap: 20px;
}


@media (max-width: 768px) {
    .header-header .header-search {
        display: none;
    }
    .header-header.slim {
        display: none;
    }
    .mobile-header {
        display: flex;
    }

    .header-icons .header-icon {
        display: none !important;
    }
    #headerMenuIcon {
        display: block !important;
    }
    .header-icons .header-icon.lang-dropdown {
        display: flex !important;
    }
    .mobile-header-item .value {
        right: 10px;
    }
    .category-sidebar-menu-icon {
        display: none !important;
    }
    .header-links {
        /*display: none !important;*/
        order: 3;
    }
    .header-links-themes {
        border-top: 1px solid #dddddd;
        padding-top: 10px;
        /*flex-wrap: wrap;*/
        gap: 15px;
        justify-content: space-between;
        width: 100%;
        text-align: center;
    }
    /*.header-links-themes > *::after {*/
    /*    content: '•'; */
    /*    margin-left: 10px;*/
    /*}*/
    /*.header-links-themes > *:last-child::after {*/
    /*    content: '';*/
    /*}*/

    .header-header-content {
        /*justify-content: center;*/
    }
    .header-header-content .header-main-line {
        /*display: block;*/
        margin: 0;
        padding: 5px 0;
        gap: 10px;
    }
    .header-header-content .header-search input {
        font-size: 16px;
        padding: 10px 10px;
    }
    .header-header-content .header-menu-line {
        justify-content: space-between;
    }

    .header-header-content-block {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px;
    }

    .sell-on-milolepo-link-block-mobile {
        display: flex;
        order: 2;
        color: #888888;
    }
    .sell-on-milolepo-link-block-desktop {
        display: none;
    }

    .mobile-header-item {
        flex: 1;
        text-align: center;
        flex-shrink: 0;
        width: 100%;
        position: relative;
        /*z-index: 2;*/
        }

    .mobile-header-item-search-box {
        display: flex;
        background-color: #f9f9f9;
        box-shadow: rgba(0, 0, 0, 0.1) 0 -2px 3px;
        border-radius: 50%;
        height: 60px;
        width: 60px;
        position: absolute;
        margin-top: -37px;
        overflow: hidden;
        transition: all .2s;
        left: 10px;
        z-index: 10;
    }
    .mobile-header-item-search-input-container {
        overflow: hidden;
        width: 50%;
        transition: width .5s, background-color .5s;
    }
    .mobile-header-item-search-button {
        border: none;
        background-color: #f9f9f9;
        border-radius: 50%;
        margin-left: -30px;
        font-size: 25px;
        color: #b0b0b0;
        width: 60px;
        height: 60px;

        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;

        transition: width .2s;
    }
    .mobile-header-item-search-input {
        width: 100%;
        padding: 15px 10px;
        margin: 0;
        height: 100%;
        border: none;
        margin-left: 31px;
        outline: none;
        font-size: 0.75em;
        text-align: left;
        color: #000000;
        line-height: 1.2em;
        max-height: calc(1.2em * 4 + 20px);

        transition: width .2s;
    }

    .mobile-header-item-search-box.active {
        width: 100vw;
        left: -40vw;
        margin-left: 0;
        border-radius: 0;
        bottom: -25px;
        height: unset;
        background-color: #ffffff;
    }
    .mobile-header-item-search-box.active .mobile-header-item-search-input-container {
        width: calc(100vw - 30px);
    }
    .mobile-header-item-search-box.active .mobile-header-item-search-button {
        /*left: calc(100vw - 60px);*/
        border-radius: 0;
        color: #000000;
        background-color: #ffffff;
    }
    .mobile-header-item-search-box.active .mobile-header-item-search-input {
        margin-left: 0;
    }

    .mobile-header-item-search-box.active .mobile-header-item-search-box {
        bottom: -15px;
        height: unset;

    }
    .mobile-header-item-search-box.active .mobile-header-item-search-input-container {
        overflow: unset;
    }

    #mobileHeaderSearchButton {

    }
    .active #mobileHeaderSearchButton {
        display: none;
    }
    #mobileHeaderSearchButtonSubmit {
        display: none;
    }
    .active #mobileHeaderSearchButtonSubmit {
        display: block;
    }
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: #ff4a00;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
}



.breadcrumbs {
    font-size: 14px;
    margin: 10px 0;
    padding: 0;
    color: #666666;
}
.breadcrumbs ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.breadcrumbs li {
    display: flex;
    align-items: center;
}
.breadcrumbs li + li::before {
    content: '/';
    /*content: "\f105"; !* Font Awesome icon for 'chevron-right' *!*/
    /*font-family: "Font Awesome 5 Free";*/
    font-weight: 200;
    margin: 0 8px;
    color: #666;
}
.breadcrumbs a {
    text-decoration: none;
    /*color: #000000;*/
    color: #666666;
    position: relative;
}
.breadcrumbs a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px; /* Отступ линии вниз на 3px */
    height: 1px; /* Толщина линии */
    background-color: #000000; /* Цвет линии */
    opacity: 0; /* Линия по умолчанию не видна */
    transition: opacity 0.1s, transform 0.2s; /* Плавное появление линии */
    transform: scaleX(0); /* Линия по умолчанию сжата */
    transform-origin: bottom left; /* Начало трансформации */
}
.breadcrumbs a:hover::after {
    opacity: 1; /* Показать линию при наведении */
    transform: scaleX(1); /* Растянуть линию по всей ширине */
}
.breadcrumbs li:last-child {
    color: #555;
}

.inline-header {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.inline-header span {
    color: #999999;
    font-size: 14px;
}

.master-header {
    font-size: 38px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .breadcrumbs {
        font-size: 11px;
    }
    /*.breadcrumbs li + li::before {*/
    /*    content: '';*/
    /*    width: 0;*/
    /*    margin: 5px;*/
    /*}*/
    .inline-header {
        display: flex;
        /*flex-direction: column;*/
        gap: 10px;
    }
}


.shop-chef-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.shop-chef-category {
    background-position: center;
    background-size: cover;
    width: calc(100% / 2 - 10px);
    height: 200px;
    border-radius: 10px;
    position: relative;

    transition: all .6s;

    box-shadow: rgba(0, 0, 0, 0.1) 10px 16px 30px -8px;
}
.shop-chef-category:hover {
    transform: scale(1.02);
}
.shop-chef-category-overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(30deg, rgba(26, 24, 22, 0.7), rgba(18, 13, 17, 0.6), rgba(8, 2, 2, 0.6), rgba(70, 60, 48, 0.6), rgba(46, 38, 33, 0.9));
    border-radius: 10px;
}
.shop-chef-category a {
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    text-align: center;
    text-shadow: rgba(0, 0, 0, 0.8) 0 0 9px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    font-weight: 600;
    letter-spacing: 2px;
}

.shop-chef-categories.slim-menu {
    gap: 10px;
    justify-content: left;
}
.shop-chef-categories.slim-menu .shop-chef-category {
    background-image: none !important;
    background-color: #333333;
    color: #fff;
    width: unset;
    height: unset;
    padding: 4px 10px;
    box-shadow: none;
}
.shop-chef-categories.slim-menu .shop-chef-category.active {
    background-color: #af6c37;
}
.shop-chef-categories.slim-menu .shop-chef-category a {
    font-weight: 500;
    font-size: 15px;
    text-shadow: none;
    letter-spacing: 0px;
    transition: background-color 5s ease;
}
@keyframes backgroundPulse {
    0% {
        background-color: #bf7b4a; /* Base color */
    }
    25% {
        background-color: #bf7b4a; /* Lighter shade */
    }
    50% {
        background-color: #000000; /* Return to base */
    }
    75% {
        background-color: #8f4e29; /* Darker shade */
    }
    100% {
        background-color: #000000; /* Return to base */
    }
}
.shop-chef-categories.slim-menu .shop-chef-category:active {
    background-color: #bf7b4a; /* Base color */
}
.shop-chef-categories.slim-menu .shop-chef-category-overlay {
    background: none;
    position: static;
}

@media (max-width: 768px) {
    .shop-chef-category {
        width: 100%;
    }
    .shop-chef-category-container {
        overflow-y: auto;
        margin: 0 10px;
    }
    .shop-chef-categories.slim-menu {
        flex-wrap: nowrap;
        margin: 10px 0;
    }
    .shop-chef-categories.slim-menu .shop-chef-category a {
        text-wrap: nowrap;
    }
}


.has-table-id .lang-dropdown {
    width: 100%;
}
.has-table-id .nav-sidebar button {
    display: flex;
    justify-content: center;
}
.has-table-id .cart-panel-delivery-info {
    display: none;
}


.connection-lost-frame {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.8);
    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 100;
}
.connection-lost-frame-header {
    font-size: 16px;
    max-width: 400px;
    text-align: center;
    padding: 10px;
}
.connection-lost-frame-continue-btn {
    background-color: #f00;
    padding: 5px 10px;
    border-radius: 5px;
    color: #ffffff;
}
.connection-lost-frame-home-btn {
    border: 1px solid #f00;
    background-color: transparent;
    padding: 5px 10px;
    border-radius: 5px;
    color: #ffffff;
}


.shop-rest.has-table-id .dish-cart-portion-options .day-selector-text {
    display: none;
}
.shop-rest.has-table-id .dish-cart-portion-options .day-selector-container {
    display: none;
}


/*    SHOP DISH DETAIL PAGE  */

.shop-dish-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    /*padding: 20px;*/
}
.shop-dish-container .shop-dish-actions {
    /*margin-top: 20px;*/
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.shop-dish-product-page {
    display: flex;
    gap: 20px;
}
.shop-dish-product-images {
    /*flex: 1;*/
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    height: 600px;
}
.shop-dish-image-gallery-container {
    overflow-y: auto;
    padding-right: 2px;
}
.shop-dish-image-gallery {
    width: 70px;
    /*height: 70px;*/
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
}
.shop-dish-image-gallery img {
    width: 70px;
    height: 80px;
    border-radius: 5px;
    border: 1px solid #ddd;
    object-fit: cover;
    object-position: center;
}
.shop-dish-image-gallery img.active {
    border: 2px solid var(--color1-4);
    opacity: 0.8;
}
.shop-dish-main-image {
    width: calc(600px / 1.25);
    height: 600px;
    border-radius: 5px;
    overflow: hidden;
    background-color: #f9f9f9;
    border: 1px solid #f0f0f0;
}
.shop-dish-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.shop-dish-product-details {
    /*flex: 1;*/
    margin-left: 30px;
    width: 100%;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    gap: 20px;
}
.shop-dish-title {
    margin-bottom: 10px;
}
.shop-dish-title .chef a {
    display: inline-flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}
.shop-dish-title .chef .external-link {
    font-size: 10px;
    color: #999999;
}
.shop-dish-title h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}
.shop-dish-product-details .shop-dish-title {
    display: none;
}
.shop-dish-rating {
    margin: 10px 0;
    font-size: 16px;
}
.shop-dish-rating .shop-dish-star {
    color: #ffa500;
}
.shop-dish-product-info {
    line-height: 1.5;
}
.shop-dish-price {
    font-size: 30px;
    font-weight: 600;
    color: #000000;
    /*color: var(--color1-4);*/
    display: flex;
    justify-content: space-between;
    /*margin: 15px 0;*/
}
.shop-dish-price .shop-dish-old-price {
    text-decoration: line-through;
    color: #888;
    margin-left: 10px;
    font-size: 18px;
    font-weight: 400;
}
.shop-dish-discount {
    background-color: #f8d7da;
    color: #d61b26;
    border-radius: 5px;
    padding: 2px 5px;
    font-size: 14px;
    margin-left: 10px;
}
.shop-dish-purchase-options {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.shop-dish-add-to-cart,
.shop-dish-buy-now {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.shop-dish-add-to-cart {
    background-color: #6c63ff;
    color: white;
}
.shop-dish-buy-now {
    background-color: #ff4f4f;
    color: white;
}
.shop-dish-add-to-cart:hover {
    background-color: #5a53e0;
}
.shop-dish-buy-now:hover {
    background-color: #e04343;
}
.shop-dish-delivery {
    margin-top: 20px;
    /* font-size: 14px; */
    /* margin-left: 20px; */
    background-color: #f9f9f9;
    font-size: 10px;
    padding: 10px;
}
.shop-dish-delivery i {
    font-size: 16px;
    color: #999999;
}
.dish-cart-add-to-cart-processed {
    padding: 10px 20px;
    background:
            radial-gradient(
                    at 46.30604381042207% 50.929021041743674%,
                    hsla(35.294117647058826, 100%, 73.33333333333334%, 0.7) 0%,
                    hsla(35.294117647058826, 100%, 73.33333333333334%, 0) 0%),
            radial-gradient(
                    at 8.654843752509189% 17.84970060549933%,
                    hsla(4.8000000000000105, 100%, 75.49019607843137%, 0.2) 0%,
                    hsla(4.8000000000000105, 100%, 75.49019607843137%, 0) 100%),
            radial-gradient(
                    at 61.584031846042144% 50.0067244155858%,
                    hsla(4.8000000000000105, 100%, 75.49019607843137%, 0.5) 0%,
                    hsla(4.8000000000000105, 100%, 75.49019607843137%, 0) 10%),
            radial-gradient(
                    at 44.71109341537153% 83.01087719863543%,
                    hsla(35.294117647058826, 100%, 73.33333333333334%, 0.2) 0%,
                    hsla(35.294117647058826, 100%, 73.33333333333334%, 0) 50%),
            radial-gradient(
                    at 77.66397471817487% 68.82207888638692%,
                    hsla(4.8000000000000105, 100%, 75.49019607843137%, 0.3) 0%,
                    hsla(4.8000000000000105, 100%, 77.490196%, 0) 100%);
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--color1-3);
}

.shop-dish-delivery-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
}
.shop-dish-delivery-info>div {
    display: flex;
    /*gap: 3px;*/
    align-items: baseline;

}
.shop-dish-delivery-info i {
    /*color: #999999;*/
    font-size: 10px;
}
.shop-dish-delivery-info .icon {
    width: 25px;
    flex-shrink: 0;
}

/* Responsive design for mobile */
@media screen and (max-width: 1024px) {
    .detail .shop-dish-product-page {
        flex-direction: column;
        align-items: center;
        width: 100% ;
    }

    .detail.shop-box .shop-main-content {
        padding: 0;
    }

    .detail .shop-dish-image-gallery {
        flex-direction: column;
        /*justify-content: center;*/
        gap: 5px;
        /*width: 100%;*/

    }

    .detail .shop-dish-image-gallery img {
        width: 70px;
    }

    .detail .shop-dish-main-image img {
        width: 100%;
    }

    .detail .shop-dish-product-details {
        width: 100%;
        padding: 0;
        margin-left: 0;
    }

    .detail .shop-dish-product-details h1 {
        font-size: 20px;
    }

    .detail .shop-dish-price {
        font-size: 26px;
    }

    .detail .shop-dish-purchase-options {
        gap: 10px;
        width: 100%;
        flex-direction: row;
    }

    .form-body {
        padding: 0 10px !important;
    }

    .breadcrumbs {
        margin: 10px;
    }

    .shop-dish-title {
        margin: 0 10px;
    }

        .shop-dish-product-page {
            flex-direction: column;

        }
        .shop-dish-product-images {
            justify-content: center;
        }
        .shop-dish-product-details {
            margin: 0;
        }

}

.detail .dish-cart-variants {
    padding: 0;
    margin: 10px 0;
}

.dish-dish-delivery-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}
.dish-dish-delivery-option {
    cursor: pointer;
    display: inline-flex;
    gap: 5px;
    align-items: center;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 15px;
    border: 1px solid #d0d0d0;
    background-color: #eeeeee;
    color: #000;
    transition: background-color 0.3s ease;
}
.dish-dish-delivery-option:hover {
    background-color: #d0d0d0;
}
.dish-dish-delivery-option.active {
    border-color: var(--color4-5);
    background-color: var(--color4-2);
}
.dish-dish-delivery-option i {
    color: #777777;
}

.dish-dish-portion-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.shop-box .compact .scroll-item {
    width: 120px;
    height: 150px;
}
.shop-box .compact .deal-card {
    width: 120px;
    height: 150px;
    /*box-shadow: none;*/
}
.shop-box .compact .deal-card>img{
    /*height: 150px;*/
}
.shop-box .compact .deal-price {
    display: none;
    bottom: 10px;
}
.shop-box .compact .deal-card:hover .deal-price {
    display: block;
}

.shop-box .compact-big .scroll-item {
    width: 200px;
    height: 240px;
}
.shop-box .compact-big .deal-card {
    width: 200px;
    height: 240px;
    box-shadow: none;
}
.shop-box .compact-big .deal-card>img{
    /*height: 240px;*/
}
.shop-box .compact-big .deal-price {
    display: none;
    bottom: 10px;
}
.shop-box .compact-big .deal-card:hover .deal-price {
    display: block;
}

.shop-box #recentlyViewed .deal-list {
    height: calc(150px + 20px);
    overflow-x: auto;
    overflow-x: auto;
    flex-wrap: nowrap;
}

.shop-box #topRated .deal-list {
    height: calc(255px * 3 + 50px);
    overflow: hidden;
    flex-wrap: wrap;
}

.shop-main-content>.breadcrumbs {
    display: block;
}
.shop-dish-product-details>.breadcrumbs {
    display: none;
}

@media screen and (max-width: 768px) {
    .detail .shop-dish-image-gallery {
        flex-direction: row;
    }
    .detail.shop-box .shop-main-content {
        gap: 0;
    }

    .detail .shop-dish-product-images {
        width: 100%;
        flex-direction: column;
        height: unset;
    }

    .detail .shop-dish-main-image {
        width: 100%;
        height: calc(100vw * 1.25);
        border-radius: 0;
        border: none;
    }

    .detail .header-header {
        display: none;
    }

    .shop-dish-image-gallery-container {
        order: 2;
    }
    .shop-dish-main-image {
        order: 1;
    }

    .shop-main-content>.breadcrumbs {
        /*display: none;*/
    }
    .shop-dish-product-details>.breadcrumbs {
        /*display: block;*/
    }

    .shop-dish-title {
        display: none;
        margin: 0;
    }
    .shop-dish-product-details .shop-dish-title {
        display: block;
    }

    .shop-box #recentlyViewed .deal-list {
        height: unset;
        max-height: 260px;
    }
    .shop-box .compact .scroll-item {
        width: calc(100% / 3 - 10px);
        height: 125px;
    }
    .shop-box .compact .deal-card {
        width: 100%;
        height: 125px;
        box-shadow: none;
    }
    .shop-box .compact .deal-card>img{
        height: 125px;
    }
}








/*  compact  */

.item-list-container {
    padding: 7px 5px;
}
.item-list {
    display: flex;
    flex-wrap: nowrap;
    /*justify-content: space-between;*/
    gap: 15px;
    padding: 4px 0;
}
.shop-item {
    flex-shrink: 0;

    width: calc(15% - 10px);
    padding-top: calc((15% - 10px) * 1.25);

    background-color: #ffffff;
    position: relative;
    border-radius: 5px;
    /*overflow: hidden;*/
}
.shop-item .square{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shop-item-container {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.shop-item-price {
    /*display: none;*/
    position: absolute;
    bottom: 95px;
    right: 5px;
    background-color: #ffffff;
    border-radius: 15px;
    padding: 5px 10px;
    font-size: 12px;
}
.shop-item-price.discount {
    padding: 7px 12px;
    line-height: 1.4;
}
.shop-item-price.discount b {
    font-size: 15px;
    margin-left: 5px;
}
.shop-item:hover .shop-item-price {
    display: block;
}
.shop-item-warehouse {
    /*display: none;*/
    position: absolute;
    bottom: 95px;
    left: 5px;
    background-color: #ffffff;
    border-radius: 15px;
    padding: 5px 10px;
    font-size: 12px;
}
.shop-item-warehouse i {
    color: #999999;
    font-size: 10px;
}

#dishes.compact-big .shop-item-warehouse {
    bottom: 125px;
}

.shop-item .item-img {
    width: 100%;
    height: calc(100% - 90px);
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
    transition: box-shadow 0.3s ease;
    border: 1px solid #e9e9e9;
}
.item-list .shop-item:hover .item-img {
    box-shadow: rgba(0,0,0,0.12) 0 1px 6px;
}
.shop-item-stat {
    position: absolute;
    bottom: 5px;
    left: 10px;
    display: flex;
    align-items: center;
    font-size: 12px;
    /*color: #333;*/
    color: #ffffff;
    gap: 3px;
}
.shop-item-stat-panel {
    border-radius: 4px;
    padding: 4px 4px;
    font-weight: 500;
    color: #fff;
    text-shadow: rgba(0,0,0,1) 0 0 30px;
}
.shop-item-title-container {
    display: flex;
    flex-direction: column;
    /*gap: 10px;*/
}
.shop-item-title-button {
    background: #76DB3E;
    border: none;
    border-radius: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: .3s all;
}
.shop-item-title-button:hover {
    transform: scale(0.95);
    background: #62c030;

}
.shop-item-title {
    font-size: 13px;
    line-height: 1.2;
    height: calc(2 * 1.2em);
    padding: 2px 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}
.shop-item-chef-title {
    /*padding: 5px 10px;*/
    font-size: 11px;
    font-weight: 600;
    /*display: none;*/
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    /*height: calc(2 * 1.2em);*/
    line-height: 1;
    max-height: calc(2 * 1.2em);
    white-space: normal;
    padding: 2px 5px;
}

.shop-item.ad-highlight {
    border: 7px solid var(--color1-2);
    background-color: var(--color1-2);
    color: #000000;
}
.shop-item.price-highlight .shop-item-price {
    background: var(--color1-4);
    color: #FFFFFF;
}

    /*  recentlyViewed  */
#recentlyViewed .item-list-container {
    overflow-x: auto;
    overflow-y: hidden;
}
#recentlyViewed .shop-item-rating {
    display: none;
}

/*  dishes */
#dishes .item-list-container {
    max-height: unset;
}
#dishes .item-list {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    /*max-height: calc(((100% - 14px) / 5 - 10px) * 1.25 * 2 + 20px);*/
}
#dishes .item-list .shop-item {
    width: calc((100% - 14px) / 4 - 10px);
    padding-top: calc(((100% - 14px) / 4 - 10px) * 1.25 + 80px);
}
#dishes .shop-item-price {
    display: block;
}
#dishes .shop-item .item-img {
    height: calc(100% - 40px - 90px);
}
#dishes .shop-item-stat {
    bottom: 45px;
}
#dishes .shop-item-price {
    bottom: 45px;
}
#dishes .shop-item-title {
    display: -webkit-box;
}

#dishes .compact-big .shop-item .item-img {
    height: calc(100% - 40px - 45px)
}


/*  topRated */
#topRated .item-list-container {
    max-height: unset;
}
#topRated .item-list {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    /*max-height: calc(((100% - 14px) / 5 - 10px) * 1.25 * 2 + 20px);*/
}
#topRated .item-list .shop-item {
    width: calc((100% - 14px) / 5 - 10px);
    padding-top: calc(((100% - 14px) / 5 - 10px) * 1.25);
}
#topRated .shop-item-price {
    display: block;
}

/*  newItems  */
#newItems .item-list-container {
    max-height: unset;
}
#newItems .item-list {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    /*max-height: calc((100vw / 5 - 10px) * 1.25 * 4);*/
}
#newItems .item-list .shop-item {
    width: calc((100% - 14px) / 5 - 10px);
    padding-top: calc(((100% - 14px) / 5) * 1.25 - 10px);
}
#newItems .shop-item-price {
    display: block;
}

/*  newItems + black */
#newItems.black {
    max-height: unset;
    background-color: #333333;
    color: #FFFFFF;
    border-radius: 7px;
    padding: 10px;
}
#newItems .item-list {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    /*max-height: calc((100vw / 5 - 10px) * 1.25 * 4);*/
}
#newItems .item-list .shop-item {
    width: calc((100% - 14px) / 5 - 10px);
    padding-top: calc(((100% - 14px) / 5) * 1.25 - 10px);
}
#newItems .shop-item-price {
    display: block;
}

/*  otherItems  */
#otherItems .item-list-container {
    max-height: unset;
    overflow-y: auto;
}
#otherItems .item-list {
    display: flex;
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: unset;
    /*max-height: calc((100vw / 5 - 10px) * 1.25 * 4);*/
}
#otherItems .item-list .shop-item {
    width: calc((100% - 14px) / 6 - 10px);
    padding-top: calc(((100% - 14px) / 6) * 1.25 - 10px);
}
#otherItems .shop-item-price {
    display: block;
}


.home-section-type-1 .shop-item-rating,
.home-section-type-1 .shop-item-price {
    display: none !important;
}

/* BLACK */
.black p {
    color: #dddddd;
}
.black .shop-item-price {
    color: #FFFFFF;
    background-color: #333333AA;
}
.black .shop-item .item-img {
    border-color: #777777;
}
.black .home-page-button {
    background-color: transparent;
    color: #FFFFFF;
}

@media screen and (max-width: 768px) {
    #newItems.black {
        margin-left: -10px;
        margin-right: -10px;
        border-radius: 0;
    }
}


@media screen and (max-width: 1024px) {
    .item-list .shop-item {
        width: calc(100% / 6 - 10px);
        padding-top: calc(100% / 6 * 1.25);
    }

    #topRated .item-list {
        /*max-height: calc((100% - 5px) / 4 - 10px * 1.25 * 2);*/
    }
    #topRated .item-list .shop-item {
        width: calc((100% - 5px) / 4 - 10px);
        padding-top: calc(((100% - 5px) / 4 - 10px) * 1.25 - 5px);
    }

    #newItems .item-list .shop-item {
        width: calc((100% - 5px) / 4 - 10px);
        padding-top: calc(((100% - 5px) / 4 - 10px) * 1.25 - 5px);
    }

    #dishes .item-list .shop-item {
        width: calc((100% - 5px) / 4 - 10px);
        padding-top: calc(((100% - 5px) / 4 - 10px) * 1.25 - 5px + 40px);
    }

    .item-list li:nth-child(9),
    .item-list li:nth-child(10) {
        display: none;
    }

}

@media screen and (max-width: 768px) {
    .shop-item-price {
        font-size: 10px;
    }

    .item-list-container {
        padding: 7px 0;
    }
    .item-list {
        justify-content: space-between;
        gap: 10px;
    }

    .item-list .shop-item {
        width: calc(100% / 4 - 10px);
        padding-top: calc(100% / 4 * 1.25);
    }

    #topRated .item-list {
        /*max-height: calc((100vw / 2 - 14px) * 1.25 * 5);*/
    }
    #topRated .item-list .shop-item {
        width: calc((100%) / 2 - 5px);
        padding-top: calc(((100% - 10px) / 2) * 1.25 - 5px);
    }

    #newItems .item-list .shop-item {
        width: calc((100% - 5px) / 3 - 5px);
        padding-top: calc(((100% - 5px) / 3) * 1.25 - 5px);
    }
    #newItems .shop-item-rating {
        display: none;
    }

    #otherItems .item-list .shop-item {
        width: calc((100% - 5px) / 4 - 5px);
        padding-top: calc(((100% - 5px) / 4) * 1.25 - 5px);
    }
    #otherItems .shop-item-rating {
        display: none;
    }

    #dishes .item-list .shop-item {
        /*width: calc((100%) / 2 - 5px);*/
        /*padding-top: calc(((100% - 10px) / 2) * 1.25 - 5px + 40px);*/
        width: calc((100% - 5px) / 2 - 5px);
        padding-top: calc(((100% - 5px) / 2) * 1.25 - 5px + 80px);
    }
}

.sell-on-milolepo-section {
    text-align: center;
    margin-top: 20px;
}
.sell-on-milolepo-section .button {
    padding: 15px 20px;
    background-color: var(--color4-2);
    border: 1px solid var(--color4-5);
    font-size: 20px;
    border-radius: 5px;
    display: block;
    max-width: 400px;
    margin: auto;
}

.home-page-footer-bar {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.home-page-button {
    padding: 10px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    gap: 10px;
    cursor: pointer;
    border-radius: 15px;

    background-color: #f0f0f0;
}

.home-section {
    margin: 50px 0;
}
.home-section:nth-child(1) {
    margin: 0 0;
}
.home-section-header {
    text-align: left;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.home-section-header h3 {
    font-size: 14px;
    color: #777;
    /*text-transform: uppercase;*/
    margin: 5px 0;
}
.home-section-header h2 {
    font-size: 34px;

    color: #000;
    margin: 5px 0;
}
.home-section-header a {
    font-size: 16px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
}
.home-section-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.home-section-selected-params {
    margin: 20px 0;
}

.home-section-header-end {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.home-section-header-end h4 {
    font-weight: 400;
    letter-spacing: 1px;
}
.home-section-header-end a {
    font-weight: 400;
    display: none;
    transition: all .3s;
}

.home-section-type-1 .shop-item:nth-child(5) {
    width: calc(100% / 20 * 7 - 10px - 5px);
    flex-shrink: 0;
}
.home-section-type-1 .home-section-header {
    width: calc(100% / 20 * 7 - 10px - 5px);
    padding-top: calc((33% - 10px) * 0.15);
    flex-shrink: 0;
}
.home-section-type-1 .shop-item {
    flex-shrink: 0;
}
.home-section-type-1 .shop-item:nth-child(6),
.home-section-type-1 .shop-item:nth-child(2) {
    width: calc(100% / 20 * 5 - 10px);
    padding-top: calc((100% / 20 * 5 - 10px) * 0.15);
}
.home-section-type-1 .shop-item:nth-child(7),
.home-section-type-1 .shop-item:nth-child(3) {
    width: calc(100% / 20 * 3 - 10px);
    padding-top: calc((100% / 20 * 3 - 10px) * 1.75);
}
.home-section-type-1 .shop-item:nth-child(8),
.home-section-type-1 .shop-item:nth-child(4) {
    width: calc(100% / 20 * 5 - 10px);
    padding-top: calc((100% / 20 * 5 - 10px) * 0.15);
}
.home-section-type-1 .home-section-header-end {
    width: calc(100% / 20 * 5 - 10px);
}

.home-section-type-1-2 .shop-item:nth-child(5) {
    width: calc(100% / 20 * 7 - 10px - 5px);
    flex-shrink: 0;
}
.home-section-type-1-2 .home-section-header {
    width: 100%;
    flex-shrink: 0;
}
.home-section-type-1-2 .shop-item {
    flex-shrink: 0;
}
.home-section-type-1-2 .shop-item:nth-child(2) {
    width: calc(100% / 20 * 7 - 10px - 5px);
    padding-top: calc((33% - 10px) * 0.15);
}
.home-section-type-1-2 .shop-item:nth-child(6),
.home-section-type-1-2 .shop-item {
    width: calc(100% / 20 * 5 - 10px);
    padding-top: calc((100% / 20 * 5 - 10px) * 0.15);
}
.home-section-type-1-2 .shop-item:nth-child(7),
.home-section-type-1-2 .shop-item:nth-child(3) {
    width: calc(100% / 20 * 3 - 10px);
    padding-top: calc((100% / 20 * 3 - 10px) * 1.75);
}
.home-section-type-1-2 .shop-item:nth-child(8),
.home-section-type-1-2 .shop-item:nth-child(4) {
    width: calc(100% / 20 * 5 - 10px);
    padding-top: calc((100% / 20 * 5 - 10px) * 0.15);
}
.home-section-type-1-2 .home-section-header-end {
    width: calc(100% / 20 * 5 - 10px);
}

.home-section-search-result {
    margin-top: 0 !important;
}


.detail-section {
    padding: 0 10px ;
}

@media screen and (max-width: 768px) {
    .home-section-grid {
        gap: 10px;
    }

    .home-section {
        margin: 50px 0;
    }

    .home-section-header h2 {
        font-size: 24px;
    }
    .home-section-header a {
        display: none;
    }

    .home-section-type-1 .home-section-header {
        width: 100% !important;
        flex-shrink: 0;
        text-align: center;
    }
    .home-section-type-1 .shop-item {
        width: calc(50% - 10px) !important;
    }
    .home-section-type-1 .home-section-header-end {
        width: 100% !important;
        text-align: center;
    }
    .home-section-type-1 .home-section-header-end h4 {
        display: none;
    }
    .home-section-type-1 .home-section-header-end a {
        display: block;
    }
    .home-section-type-1 .home-section-header {
        width: calc(100%) !important;;
    }
    .home-section-type-1 .shop-item {
        width: calc(50% - 5px) !important;;
        padding-top: calc((50% - 10px) * 1.25) !important;
    }
    .home-section-type-1 .home-section-header-end {
        width: calc(100%) !important;;
    }
    .home-section-type-1 .shop-item:nth-child(8) {
        display: none;
    }

    .home-section-type-1-2 .home-section-header {
        width: 100% !important;
        flex-shrink: 0;
        text-align: center;
    }
    .home-section-type-1-2 .shop-item {
        width: calc(50% - 10px) !important;
    }
    .home-section-type-1-2 .home-section-header-end {
        width: 100% !important;
        text-align: center;
    }
    .home-section-type-1-2 .home-section-header-end h4 {
        display: none;
    }
    .home-section-type-1-2 .home-section-header-end a {
        display: block;
    }
    .home-section-type-1-2 .home-section-header {
        width: calc(100%) !important;;
    }
    .home-section-type-1-2 .shop-item {
        width: calc(50% - 5px) !important;;
        padding-top: calc((50% - 10px) * 1.25) !important;
    }
    .home-section-type-1-2 .home-section-header-end {
        width: calc(100%) !important;;
    }

}

.relative-section {

}
.relative-queries {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.relative-queries a {
    padding: 10px 20px;
    background-color: #f0f0f0;
    border-radius: 20px;
    font-weight: 500;
}
.relative-queries a ::first-letter {
    text-transform: uppercase;
}

@media screen and (max-width: 768px) {
    .relative-section {
        padding: 0 10px;
    }
}

.home-section-type-2 {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 0;
}
.home-section-type-2 .home-section-container {
    max-width: 1024px;
    margin: auto;
    left: 0;
    right: 0;
}
.home-section-type-2 .home-section-header {
    background-color: var(--color1-3);
    height: 170px;
    text-align: center;
    margin-bottom: 0;
    display: block;
}
.home-section-type-2 .home-section-header h1 {
    font-weight: 400;
    font-size: 28px;
}
.home-section-type-2 .home-section-body {
    background-color: #ffffff;
}
.home-section-type-2 .home-section-body ul {
    display: flex;
    justify-content: space-between;
    margin-top: -90px;
}
.home-section-type-2 .home-section-body ul>li {
    width: 150px;
    text-align: center;
    font-weight: 500;
}
.home-section-type-2 .home-section-body ul>li p {
    margin: 0;
    margin-top: 5px;
}
.home-section-type-2 .home-section-body ul>li a img {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    overflow: hidden;
    justify-content: center;
    object-fit: cover;
    /*border: 1px solid #999;*/
    box-shadow: rgba(0,0,0,0.4) 0 1px 2px
}

.home-section-type-2.single-section .home-section-header h1 {
    font-size: 48px;
    font-weight: 300;
}
.home-section-type-2.single-section .home-section-header p {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}
.home-section-type-2.single-section .home-section-header {
    height: unset;
    padding: 40px 0;
}

@media screen and (max-width: 768px) {
    .home-section-type-2 .home-section-header {
        height: 350px;
    }
    .home-section-type-2 .home-section-body ul {
        flex-wrap: wrap;
        gap: 20px;
        margin-top: -230px;
        justify-content: space-evenly;
    }
    .home-section-type-2 .home-section-body ul>li {
        width: calc(100% / 3 - 20px);
    }
    .home-section-type-2 .home-section-body ul>li a img {
        width: 100px;
        height: 100px;

    }
    .home-section-type-2 .home-section-body ul>li p {
        font-size: 13px;
    }

    .home-section-type-2.single-section .home-section-header h1 {
        font-size: 36px;
    }
    .home-section-type-2.single-section .home-section-header {
        padding: 20px 10px;
    }

    .relative-section {

    }
}


.home-section-type-3 {

}
.home-section-type-3 .shop-item {
    width: calc((100% - 50px) / 4);
    padding-top: calc((100% - 50px) / 4 * 1.25);
}
.home-section-type-3 .home-section-header {
    margin-bottom: 60px;
    text-align: center;
}
.home-section-type-3 .home-section-header h2 {
    font-weight: 300;
}
.home-section-type-3 .home-section-header-end {
    text-align: center;
    align-items: center;
    margin-top: 20px;
}
.home-section-type-3 .home-section-header-end a {
    display: inline;
    background-color: #eeeeee;
    border: 2px solid #ffffff;
}
.home-section-type-3 .home-section-header-end a:hover {
    border: 2px solid #000000;
}

@media screen and (max-width: 768px) {
    .home-section-type-3 .home-section-header {
        margin-bottom: 30px;
    }
    .home-section-type-3 .shop-item {
        width: calc((100% - 10px) / 2);
        padding-top: calc((100% ) / 2 * 1.25);
    }
    .home-section-type-3 .home-section-header-end a {
        border: none;
        background-color: transparent;
    }
}


.home-section-type-4 {
    display: flex;
    gap: 20px;
    width: 100%;
    border-radius: 10px;
    padding: 0;
    border: 1px solid #dddddd;
    overflow: hidden;
    /*background-color: beige;*/
}
.home-section-type-4 .home-section-header {
    width: calc(100% / 2 - 15px);
}
.home-section-type-4 .home-section-grid {
    width: calc(100% * 2 / 3);
    padding: 20px 0 20px 20px;
}
.home-section-type-4 .home-section-grid li {
    width: calc(100% / 4 - 15px);
}
.home-section-type-4 .home-section-end {
    width: calc(100% / 3);
}
.home-section-type-4 .home-section-end li {
    width: calc(100%);
    height: 100%;

}
.home-section-type-4 .home-section-end .shop-item .item-img {
    border: none;
    border-radius: 0;
}
.home-section-type-4 .home-section-grid .shop-item .item-img {
    border: none;
    border-radius: 3px;
}
.home-section-type-4 .home-section-grid .shop-item {
    padding-top: calc(100% / 4 - 15px);
}

@media screen and (max-width: 768px) {
    .home-section-type-4{
        flex-direction: column;
        gap: 5px;
    }

    .home-section-type-4 .home-section-header a {
        display: block;
    }
    .home-section-type-4 .home-section-header {
        width: 100%;
        text-align: center;
    }

    .home-section-type-4 .home-section-grid {
        width: 100%;
        padding: 10px;
    }

    .home-section-type-4 .home-section-end {
        width: 100%;
    }
    .home-section-type-4 .home-section-end li {
        padding-top: 100%;
    }

    .home-section-type-4 .home-section-grid li {
        width: calc(100% / 2 - 5px);
    }
    .home-section-type-4 .home-section-grid .shop-item {
        padding-top: calc(100% / 2 - 5px);
    }
}


.home-section-type-banner-2 {
    display: flex;
    gap: 20px;
}
.home-section-type-banner-2 .home-section-banner-1 {
    width: 50%;
    padding-top: 50%;
    position: relative;
    border-radius: 10px;
    background-size: cover;
    background-position: bottom;
    position: relative;
}
.home-section-type-banner-2 .home-section-banner-1::after {
    content: '';
    display: block;
    padding-top: 0%;
}
.home-section-type-banner-2 .home-section-banner-title {
    color: #FFFFFF;
    position: absolute;
    left: 30px;
    bottom: 30px;
    line-height: 1.3;
}
.home-section-type-banner-2 .home-section-banner-title-2 {
    color: #FFFFFF;
    position: absolute;
    right: 30px;
    top: 30px;
    /*left: 30px;*/
    /*bottom: 30px;*/
    line-height: 1.3;
    text-align: right;
}
.home-section-type-banner-2 .home-section-type-banner-2 h2 {
    color: #FFFFFF;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 300;
    margin: 0;
    /*text-shadow: rgba(0,0,0,0.4) 0 0 4px;*/
}
.home-section-type-banner-2 .home-section-type-banner-2 h3 {
    color: #FFFFFF;
    font-size: 30px;
    /*text-shadow: rgba(0,0,0,0.4) 0 0 4px;*/
    margin: 0;
}
.home-section-type-banner-2 .home-section-banner-title-2 h2,
.home-section-type-banner-2 .home-section-banner-title-2 h3 {
    color: #000000;
}

@media screen and (max-width: 768px) {
    .home-section-type-banner-2 .home-section-type-banner-2 {
        flex-wrap: wrap;
    }

    .home-section-type-banner-2 .home-section-banner-1 {
        width: 100%;

    }
    .home-section-type-banner-2 .home-section-banner-1::after {
        padding-top: 50%;
    }

    .home-section-type-banner-2 .home-section-banner-title {
        bottom: unset;
        top: 15px;
        left: 15px;
    }
    .home-section-type-banner-2 .home-section-banner-title-2 {
        /*top: unset;*/
        /*bottom: 15px;*/
        top: 15px;
        right: 15px;
        /*left: 15px;*/
        /*text-align: left;*/
    }

    .home-section-type-banner-2 .home-section-type-banner-2 h2 {
        font-size: 28px;
        font-weight: 400;
    }
    .home-section-type-banner-2 .home-section-type-banner-2 h3 {
        font-size: 22px;
    }
}



.home-section-type-categories {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 0;
    background-color: var(--color3-0);
}
.home-section-type-categories .home-section-container {
    max-width: 1280px;
    margin: auto;
    left: 0;
    right: 0;
}
.home-section-type-categories .home-section-header {
    text-align: center;
    display: block;
}
.home-section-type-categories .home-section-header h1 {
    font-weight: 400;
    font-size: 28px;
}
.home-section-type-categories .home-section-body {
    overflow-x: auto;
    margin: auto;
}
.home-section-type-categories .home-section-body ul {
    display: flex;
    justify-content: center;
    /* gap: 30px; */
    flex-wrap: wrap;
    height: 140px;
    overflow: hidden;
}
.home-section-type-categories .home-section-body ul>li {
    text-align: center;
    font-size: 12px;
    width: 120px;
    flex-shrink: 0;
}
.home-section-type-categories .home-section-body ul>li img {
    height: 85px;
    padding: 15px;
    border: 2px solid #555;
    border-radius: 50%;
    width: 85px;
    overflow: initial;
    transition: all .3s;
    background-color: #FFFFFF;
}
.home-section-type-categories .home-section-body ul>li:hover img {
    background-color: var(--color1-3);
}

@media screen and (max-width: 768px) {
    .home-section-type-categories .home-section-container {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
    }
    .home-section-type-categories .home-section-body {
        overflow-x: auto;
        width: 100%;
        max-width: 100%;
    }
    .home-section-type-categories .home-section-header h1 {
        font-size: 21px;
    }

    .home-section-type-categories .home-section-body ul {
        padding: 0 10px;
        justify-content: unset;
        gap: 0;
        height: 143px;
        flex-wrap: nowrap;
        overflow: unset;
    }
    .home-section-type-categories .home-section-body ul>li img {
        height: 75px;
        padding: 12px;
        width: 75px;
    }
}



.show-chef-phone-btn,
.call-chef-phone-btn,
.start-chatting {
    padding: 10px 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    gap: 5px;
    cursor: pointer;
    border-radius: 6px;
}

.add-to-favourite-btn,
.remove-from-favourite-btn {
    padding: 0;
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    font-size: 14px;
    gap: 10px;
    cursor: pointer;
    border-radius: 6px;
}

.add-to-favourite-btn i,
.remove-from-favourite-btn i {
    font-size: 24px;
}

.add-to-favourite-btn {
    background-color: #FFFFFF;
    /*background-color: var(--color1-2);*/
    /*border: 1px solid #999999;*/
    border: none;
    color: #999999;
}
.remove-from-favourite-btn {
    background-color: #FFFFFF;
    /*background-color: #ffffff;*/
    /*border: 1px solid var(--color1-4);*/
    border: none;
    color: var(--color1-4)
}

.item-container .remove-from-favourite-btn {
    display: none;
}
.item-container .add-to-favourite-btn {
    display: block;
}
.item-container.is-favourite .remove-from-favourite-btn {
    display: block;
}
.item-container.is-favourite .add-to-favourite-btn {
    display: none;
}

.shop-item-container .shop-dish-actions {
    position: absolute;
    top: 5px;
    right: 5px;
}
.shop-item-container .add-to-favourite-btn {
    display: none;
}
.shop-item-container:hover .add-to-favourite-btn {
    display: block;
}
.shop-item-container.is-favourite:hover .add-to-favourite-btn {
    display: none;
}
.shop-item-container .add-to-favourite-btn,
.shop-item-container .remove-from-favourite-btn {
    border: none;
    color: #ffffff;
    background: transparent;
    /*text-shadow: rgba(0,0,0,0.5) 0 0 10px;*/
    text-shadow: rgba(0,0,0,0.85) 0 0 2px
}

.inline-dish-container .shop-dish-actions {
    position: absolute;
    top: 15px;
    right: 15px;
}
.inline-dish-container .add-to-favourite-btn {
    display: flex;
}
.inline-dish-container .add-to-favourite-btn,
.inline-dish-container .remove-from-favourite-btn {
    border: none;
    color: #ffffff;
    background: transparent;
    text-shadow: rgba(0,0,0,0.5) 0 0 10px;
}

.add-to-favourite-btn {
    display: flex !important;
}
.remove-from-favourite-btn {
    display: none !important;;
}
.is-favourite .add-to-favourite-btn {
    display: none !important;;
}
.is-favourite .remove-from-favourite-btn {
    display: flex !important;
}

.call-chef-phone-btn,
.show-chef-phone-btn {
    /*border: 1px solid var(--color4-5);*/
    border: none;
    background-color: var(--color4-2);
}

.start-chatting {
    /*border: 1px solid var(--color4-5);*/
    border: none;
}

.shop-box-paging {
    margin: auto;
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.shop-box-paging ul {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.shop-box-paging ul>li {

}
.shop-box-paging ul>li a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    /*background-color: #f0f0f0;*/
    /*border: 1px solid #999999;*/
    display: block;
    text-align: center;
    font-size: 12px;
    line-height: 30px;
}

.shop-box-paging>a>span {
    display: none;
}

.shop-box-paging ul>li.active a {
    background-color: #000000;
    border: 1px solid #000000;
    color: #ffffff;
}

@media screen and (max-width: 768px) {
    .shop-item-container .add-to-favourite-btn {
        display: none !important;
    }
    .shop-item-container:hover .add-to-favourite-btn {
        display: none !important;
    }

    .shop-box-paging {
        flex-wrap: wrap;
    }
    .shop-box-paging ul {
        flex-shrink: 0;
        order: 1;
    }
    .shop-box-paging .prev-btn {
        order: 2;
        margin-right: 20px;
    }
    .shop-box-paging .next-btn {
        order: 3;
        margin-left: 20px;
    }
    .shop-box-paging>a>span {
        display: inline;
    }

    .shop-dish-container .shop-dish-actions {
        gap: 5px;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .show-chef-phone-btn,
    .call-chef-phone-btn,
    .start-chatting {
        width: 100%;
    }

}



.shop-dish-keywords {
    margin-top: 50px;
}


/*  Товар в строке, например, в спец выдаче  */

.inline-dish-container {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #cccccc;
    max-width: 1280px;
    margin: auto;
    padding: 0 20px;
    padding-bottom: 5px;
    padding-top: 20px;
}
.inline-dish-container h2 {
    padding: 0;
    margin: 0;
}
.inline-dish-image-container {
    position: relative;
    width: 320px;
    height: 220px;
    margin-bottom: 15px;
    flex-shrink: 0;
}
.inline-dish-image {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
}
.inline-dish-favorite-button {
    position: absolute;
    top: 10px;
    right: 10px;
    /*background-color: white;*/
    /*border: none;*/
    /*border-radius: 50%;*/
    /*padding: 10px;*/
    /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
    cursor: pointer;
}
.inline-dish-favorite-button i {
    color: #FF6347; /* Цвет сердечка */
    font-size: 20px;
}
.inline-dish-info {
    display: flex;
    flex-direction: column;
}
.inline-dish-shop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.inline-dish-shop-link {
    text-decoration: none;
    text-decoration: underline;
    font-size: 13px;
}
.inline-dish-rating {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #f5c518;
}
.inline-dish-reviews {
    margin-left: 5px;
    color: #666;
}
.inline-dish-title {
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    /*margin-bottom: 10px;*/
}
.inline-dish-title p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* Показываем только 3 строки */
    overflow: hidden; /* Скрываем лишний текст */
    text-overflow: ellipsis;
    line-height: 1.4; /* Межстрочный интервал */
    max-height: calc(1.4em * 2); /* Ограничиваем высоту по количеству строк */
}
.inline-dish-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.inline-dish-price {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}
.inline-dish-free-shipping {
    font-size: 14px;
    color: #4caf50;
    background-color: #e8f5e9;
    padding: 5px 10px;
    border-radius: 5px;
}
.inline-dish-button {
    padding: 10px;
    font-size: 16px;
    color: #000;
    border: 2px solid #000;
    border-radius: 25px;
    background-color: white;
    cursor: pointer;
    width: 300px;
    text-align: center;
}
.inline-dish-button:hover {
    background-color: #f0f0f0;
}

@media screen and (max-width: 768px) {
    .inline-dish-container {
        overflow: hidden;
        gap: 7px;
    }
    .inline-dish-image-container {
        width: 140px;
        height: 175px;
    }
    .inline-dish-shop {
        order: 2;
    }
    .inline-dish-container h2 {
        font-size: 13px;
        font-weight: 600;
    }
    .inline-dish-title {
        font-size: 13px;
    }
    .inline-dish-title p {

    }
    .inline-dish-title.title {
        order: 1;
    }
    .inline-dish-title.text {
        order: 3;
    }
    .inline-dish-price {
        font-size: 13px;
        font-weight: bold;
    }
    .inline-dish-price-section {
        order: 4;
    }
    .inline-dish-button {
        padding: 0;
        font-size: 15px;
        border: none;
        border-radius: 0;
        width: unset;
        text-align: left;
        font-weight: 500;
        order: 5;
    }
    .inline-dish-container-space {
        height: 100%;
    }
    .inline-dish-container {
        overflow: hidden;
        gap: 7px;
        box-shadow: rgba(0, 0, 0, 0.2) 0 2px 10px;
        padding: 0 10px;
        padding-top: 15px;
    }
    .inline-dish-info {
        margin-bottom: 15px;
        justify-content: space-between;
    }
}



.gift-wizard-container {
    padding: 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.gift-wizard-container p {
    margin: 0;
    padding: 0;
}
.gift-wizard-container h1 {
    font-size: 32px;
    font-weight: 400;
}
.gift-wizard-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    border-radius: 15px;
    border: 1px solid #ddd;
    padding: 25px;
}
.gift-wizard-section h3 {
    font-size: 22px;
    margin-bottom: 0;
}
.gift-wizard-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.gift-wizard-option-small {
    padding: 10px 20px;
    background-color: #f0f0f0;
    border-radius: 25px;
    cursor: pointer;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.gift-wizard-option-small i {
    font-size: 20px;
}
.gift-wizard-option-small:hover {
    background-color: #e0e0e0;
}
.gift-wizard-option-small.selected {
    border-color: #000;
    background-color: #d0f0c0;
}

/* Третья секция с квадратными элементами */
.gift-wizard-options.gift-wizard-multi-select {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(7, 1fr);
}
.gift-wizard-option {
    background-color: #f0f0f0;
    border-radius: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    height: 120px;
}
.gift-wizard-option i {
    font-size: 40px;
    margin-bottom: 10px;
}
.gift-wizard-option:hover {
    background-color: #e0e0e0;
}
.gift-wizard-option.selected {
    border-color: #000;
    background-color: #d0f0c0;
}

.gift-wizard-container .actions {
    text-align: center;
}
.gift-wizard-result-button {
    padding: 10px 20px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}
.gift-wizard-result-button:hover {
    background-color: #333;
}


@media (max-width: 1024px) {
    .gift-wizard-options.gift-wizard-multi-select {
        grid-template-columns: repeat(5, 1fr);
    }
}
@media (max-width: 768px) {
    .gift-wizard-container {
        padding: 0;
    }
    .gift-wizard-container h1 {
        font-size: 28px;
    }
    .gift-wizard-section {
        padding: 10px;
    }

    .gift-wizard-options.gift-wizard-multi-select {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }

    .gift-wizard-option-small {
        padding: 8px 12px;
    }

    .gift-wizard-option {
        width: calc((100vw - 10px) / 3 - 15px);
        height: calc((100vw - 10px) / 3 - 15px);
        padding: 4px;
        font-size: 12px;
    }
    .gift-wizard-option i {
        font-size: 32px;
    }
}


.sitemap h1 {
    font-size: 40px;
    font-weight: 300;
}
.sitemap h2 {
    font-size: 32px;
    font-weight: 300;
}
.sitemap h3 {
    font-size: 24px;
    font-weight: 400;
}
.sitemap-block {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.sitemap-data {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.sitemap-data>ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sitemap-data>ul>li {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sitemap-data a {
    line-height: 1.7;
}
.sitemap-data a.sitemap-item::after {
    content: '•';
    margin-left: 10px;
}
.sitemap-data a.sitemap-item:last-child::after {
    content: '';
}
