.header-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
}
.options-container {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    width: 100%;
    min-height: 240px;
    max-height: 240px;
    overflow-y: auto;
    z-index: 10;
}
.options-container.active {
    display: block;
}
.arrow.rotated {
    transform: rotate(180deg);
}

.menu-wrapper {
    background: #E1E8E8;
}
.menu-content .menu-banner {
    height: 600px;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.category-content {
    max-width: 801px;
    margin-bottom: 24px;
}
.category-content .categories {
    display: flex;
    align-items: center;
    gap: 6px;
}
.category-content .categories > div {
    padding: 7px 12px;
    border-radius: 8px;
    background: #F4F6F6;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: #3F3A49;
    cursor: pointer;
}
.category-content .categories > div.active {
    background: #6B748D;
    color: #FFFFFF;
}

.menu-info-content {
    max-width: 740px;
    padding: 0 16px;
    margin: 120px auto 80px;
    margin-top: 25px;
}
.menu-info-content h1 {
    font-family: Matura MT Script Capitals;
    font-weight: 400;
    font-size: 48px;
    line-height: 110.00000000000001%;
    text-align: center;
    color: #C50009;
    margin-bottom: 20px;
}
.menu-info-content p {
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    color: #3F3A49;
    margin-bottom: 24px;
    text-align: center;
}
.menu-info-content .btn-content {
    display: flex;
    justify-content: center;
}
.menu-info-content .btn-content a {
    display: inline-block;
    padding: 11px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    text-decoration: none;
    color: #FFFFFF;
    background: #C50009;
}
.menu-info-content .btn-content a:first-child {
    margin-right: 10px;
}

.appetizers {
    padding: 0 120px;
}

.appetizers:not(:last-child) {
    margin-bottom: 40px;
}
.appetizers h1 {
    font-family: Matura MT Script Capitals;
    font-weight: 400;
    font-size: 24px;
    line-height: 110.00000000000001%;
    color: #C50009;
    margin-bottom: 12px;
}
.appetizers p {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: #3F3A49;
    margin-bottom: 24px;
}
.appetizers .lists {
    column-count: 2;
    column-gap: 16px;
}

.appetizers .lists .item {
    display: inline-block; /* column layout-ի համար պարտադիր */
    width: 100%;
    margin-bottom: 16px;
    border: 1px solid #3F3A490F;
    background: #FFF;
    border-radius: 8px;
    padding: 20px;
}



.appetizers .lists .header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.appetizers .lists .header-content > div:first-child {
    display: flex;
    flex-direction: column;
}
.appetizers .lists .header-content .title {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #3F3A49;
    margin-bottom: 8px;
}
.appetizers .lists .header-content .description {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: #6B748D;
    max-width: 500px;
    margin-right: 8px;
}
.appetizers .lists .header-content .price {
    padding: 7px 12px;
    border-radius: 8px;
    background: #D9DDE9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 120%;
    color: #3F3A49;
    text-wrap-mode: nowrap;
}
.appetizers .lists .image-content {
    margin-top: 24px;
}
.appetizers .lists .image-content img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 6px;
}

.select-container {
    position: relative;
    width: 100%;
    display: none;
}
.select-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #3F3A49;
    font-size: 14px;
}
.custom-select {
    position: relative;
    width: 100%;
}
.select-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px;
    border-radius: 12px;
    background-color: #F4F6F6;
    cursor: pointer;
    transition: all 0.2s ease;
}
.selected-value {
    color: #3F3A49;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
}
.arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}
.arrow.open {
    transform: rotate(-135deg);
}
.options-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.options-container.open {
    max-height: 240px;
    overflow-y: auto;
}
.option {
    padding: 24px 20px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #cccc;
}
.option:last-child {
    border-bottom: none;
}
.option.selected {
    background-color: #F4F6F6;
}

@media (max-width: 1280px) {
    .appetizers {
        padding: 0 24px;
    }
}

@media (max-width: 769px) {
    .category-content .categories {
        display: none;
    }
    .select-container {
        width: 100%;
        display: block;
    }
    .category-content {
        min-width: 311px;
    }
    .menu-content .menu-banner {
        height: 400px;
    }
    .menu-info-content {
        margin: 40px 0;
    }
    .appetizers .lists {
        column-count: 1;
    }
    .appetizers .lists .item:not(:last-child) {
        margin-bottom: 8px;
    }
}

@media (max-width: 573px) {
    .category-content .categories {
        display: none;
    }
    .select-container {
        width: 100%;
        display: block;
    }
    .category-content {
        min-width: 311px;
    }
    .menu-content .menu-banner {
        height: 300px;
    }
    .appetizers {
        padding: 0 16px;
    }
}

#sticky {
    text-align: center;
    background: #C50009;
    color: white;
    padding: 15px;
    font-size: 20px;
    transition: all 0.3s ease;
    opacity: 0;
}

#sticky.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    margin-top: 70px;
    opacity: 1;
}

.order-btn {
  color: white;
}

/* Add this to menu.css */
body.mobile-menu-open #sticky.fixed {
    display: none;
}
