
.main-logo {
    transition: all 0.2s ease;
}

a {
    color: #5a5a5a;
}

a:hover {
    color: #aaa;
}

.main-logo:hover {
    opacity: 0.5;
}


.services {
}

.text-justify {
    text-align: justify;
}

.home-services {
}

.home-service {
    background-position: center;
    background-size: auto 100%;
    position: relative;
    border-radius: 24px;
    padding-top: 65%;
    border: solid 10px white;
    transition: all 0.3s ease;
}

.home-service:hover {

    background-size: auto 102%;
}

.home-service1 {
    background-image: url('../img/delivery1.jpg');
}

.home-service2 {
    background-image: url('../img/keytering1.jpg');
}

.home-service3 {
    background-image: url('../img/banket1.jpg');
}

.home-service4 {
    background-image: url('../img/b2b.jpg');
}

.home-service-title {
    color: white;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    padding-bottom: 10px;
}

.home-service-desc {
    font-size: 13px;
}

.home-service-text {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 40px 0 0 40px;
    padding: 10px 15px;

    font-weight: bold;
    text-transform: uppercase;
    right: 0;
    bottom: 20%;
    position: absolute;
    transition: padding 0.3s ease;
}

@media (min-width: 992px) {
    .home-service-text {
        font-size: 19px;
    }
}

@media (min-width: 1200px) {

    .home-service {

        padding-top: 35%;
    }

    .home-service-text {
        font-size: 22px;
    }
}

@media (min-width: 1400px) {
    .home-service-text {
        font-size: 26px;
    }
}

.home-service:hover .home-service-text {
    padding-right: 25px;
}


.home-plus-img > img {
    height: 120px;
    width: 120px;
}

.home-plus-text {
    font-size: 20px;
    margin-top: 20px;
}

.home-plus, .officelunch-plus {
    margin-bottom: 40px;
}

.pluses {
    margin-bottom: 80px;
}


.bs-popover-top {
    text-align: center;
}



.btn-white, .btn-white.disabled {
    background-color: white;
    border: 0;
}

.btn-white:hover {
    background-color: #f0f0f0;
    border: 0;
}

.btn-delete, .btn-delete.disabled {
    background-color: #ffeded;
    color: #dc3948;
}

.btn-delete:hover, .btn-delete:focus {
    background-color: #fed7d7;
    color: #ee1025
}

.btn-dish, .btn-grey, .btn-dish:focus, .btn-grey:focus, .btn-dish.disabled, .btn-grey.disabled .btn-grey:disabled, .btn.btn-grey:disabled {
    background-color: #f0f0f0;
    border: 0;

}

.btn-dish:hover, .btn-grey:hover {
    background-color: #f6f6f6;
    border: 0;
}

.btn-dish:active, .btn-grey:active {
    transition: none;
    background-color: #ddd;
    border: 0;
}

.btn-dish-selected, .btn-dark-grey, .btn-dish-selected.disabled, .btn-dark-grey.disabled, .btn-dark-grey:disabled {
    background-color: #333;
    color: white;
    border: 0;
}

.btn-dish-selected:focus, .btn-dark-grey:focus {
    background-color: #333;
    border: 0;
    color: white
}

.btn-dish-selected:hover, .btn-dark-grey:hover {
    background-color: #444;
    border: 0;
    color: white
}

.btn-dish-selected:active, .btn-dark-grey:active {
    background-color: #555;
    border: 0;
    color: white
}

.btn-light-orange, .btn-light-orange:focus, .btn-light-orange.disabled, .btn-light-orange:disabled {
    background-color: var(--light-orange);
    color: var(--dark-orange);
    border: none;
}

.btn-light-orange:hover {
    background-color: var(--secondary-orange);
    color: white;
}

.btn-light-orange:active {
    background-color: var(--dark-orange);
    color: white;
}

button.btn:focus {
    box-shadow: none;
}

.fade {
    transition: opacity .15s ease;
}

.modal.fade:not(.show) .modal-dialog {
    transition: transform .1s ease-in;
    transform: scale(0.95);
}

.alert {
    border-radius: 12px;
}

.services-gradient {
    display: none;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    height: 100px;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}

/* Common Mouse Scroll Ele */
.scroll-down {
    display: none;
    position: absolute;
    left: 50%;
    width: 75px;
    height: 80px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    bottom: 20px;
    transform: translateX(-50%);
}

.scroll-down span {
    position: absolute;
    display: inline-block;
    top: 20px;
    height: 25px;
    width: 2px;
    left: calc(50% - 1px);
    animation: animateArrows 1.25s infinite linear;
}

@keyframes animateArrows {
    0%, 40%, 100% {
        opacity: 0;
    }
    75% {
        opacity: 1;
    }
}

.scroll-down span:first-child {
    top: 35px;
    animation-delay: 0s;
}

.scroll-down span:nth-child(2) {
    top: 35px;
    animation-delay: .33s;
}

.scroll-down span:last-child {
    top: 50px;
    animation-delay: .66s;
}

.scroll-down span::before,
.scroll-down span::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    border-radius: 3px;
}

.scroll-down span::before {
    transform-origin: bottom;
    transform: rotate(-45deg);
    border-radius: 3px;
}

.scroll-down span::after {
    transform-origin: bottom;
    margin-left: -1px;
    transform: rotate(45deg);
    border-radius: 3px;
}

.team-item {
    margin-bottom: 30px;
    text-align: center;
}

.team-name {
    margin-top: 10px;
    font-size: 22px;
    font-weight: bold;
}

.main-content {
    text-align: justify;
}


.social a:hover > i {
    background: #333;
    color: white;
}

.back-grey {
    background: #f0f0f0
}


.ingredients {
    font-weight: normal;
    color: #555;
    border-bottom: 1.5px dashed #555;
    text-decoration: none;
    display: inline-block;
    line-height: 1.05rem;
}

.day-item {
    border-radius: 24px;
    border: solid 1px #e1e1e1;
    background: #f7f7f7;
}


.dayofweek {
}


.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link {
    font-size: 22px;
    color: #333
}

.calc-back {
    background: white;
    border-radius: 15px;
    padding: 15px;
}

.calc-price {
    text-align: right;
}

.calc-itogo {
    font-weight: bold;
}

.dish-item {
    padding: 10px;
    background: white;
    transition: box-shadow 0.2s ease;
    border-radius: 16px
}

.dish-item a[data-fancybox]:hover {
    cursor: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='a' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 55.02 55.02' width='20px' height='20px'%3E%3Cdefs%3E%3Cstyle%3E.b%7Bfill:%23fff;%7D.c%7Bfill:%231d1d1b;%7D%3C/style%3E%3C/defs%3E%3Ccircle class='b' cx='20.8' cy='20.89' r='14.36'/%3E%3Cpath class='c' d='M53.27,44.79l-11.36-11.36c-.96-.96-2.18-1.51-3.43-1.68,2.03-3.26,3.13-7.02,3.13-10.95,0-5.56-2.16-10.78-6.1-14.71C27.4-2.03,14.2-2.03,6.08,6.08s-8.11,21.32,0,29.43c3.93,3.93,9.16,6.09,14.72,6.09,3.93,0,7.69-1.1,10.95-3.13,.17,1.25,.72,2.47,1.68,3.43l11.36,11.36c1.17,1.17,2.71,1.76,4.24,1.76s3.07-.59,4.24-1.76c2.34-2.34,2.34-6.14,0-8.49Zm-32.47-10.18c-3.69,0-7.16-1.44-9.77-4.04-5.38-5.38-5.38-14.15,0-19.53,2.69-2.69,6.23-4.04,9.77-4.04s7.07,1.35,9.76,4.04h0c2.61,2.61,4.04,6.08,4.04,9.76s-1.44,7.16-4.05,9.77c-2.61,2.61-6.08,4.04-9.76,4.04Z'/%3E%3Cpath class='c' d='M26.61,18.34h-3.3v-3.34c0-1.38-1.12-2.5-2.5-2.5s-2.5,1.12-2.5,2.5v3.34h-3.3c-1.38,0-2.5,1.12-2.5,2.5s1.12,2.5,2.5,2.5h3.3v3.26c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5v-3.26h3.3c1.38,0,2.5-1.12,2.5-2.5s-1.12-2.5-2.5-2.5Z'/%3E%3C/svg%3E") 8 8, pointer;
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
    cursor: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 55.02 55.02' width='20px' height='20px'%3E%3Cdefs%3E%3Cstyle%3E.c%7Bfill:%23fff;%7D.d%7Bfill:%231d1d1b;%7D%3C/style%3E%3C/defs%3E%3Cg id='a'/%3E%3Cg id='b'%3E%3Ccircle class='c' cx='20.8' cy='20.89' r='14.36'/%3E%3Cpath class='d' d='M53.27,44.79l-11.36-11.36c-.96-.96-2.18-1.51-3.43-1.68,2.03-3.26,3.13-7.02,3.13-10.95,0-5.56-2.16-10.78-6.1-14.71C27.4-2.03,14.2-2.03,6.08,6.08s-8.11,21.32,0,29.43c3.93,3.93,9.16,6.09,14.72,6.09,3.93,0,7.69-1.1,10.95-3.13,.17,1.25,.72,2.47,1.68,3.43l11.36,11.36c1.17,1.17,2.71,1.76,4.24,1.76s3.07-.59,4.24-1.76c2.34-2.34,2.34-6.14,0-8.49Zm-32.47-10.18c-3.69,0-7.16-1.44-9.77-4.04-5.38-5.38-5.38-14.15,0-19.53,2.69-2.69,6.23-4.04,9.77-4.04s7.07,1.35,9.76,4.04h0c2.61,2.61,4.04,6.08,4.04,9.76s-1.44,7.16-4.05,9.77c-2.61,2.61-6.08,4.04-9.76,4.04Z'/%3E%3Cpath class='d' d='M26.73,23.3H14.88c-1.38,0-2.5-1.12-2.5-2.5s1.12-2.5,2.5-2.5h11.85c1.38,0,2.5,1.12,2.5,2.5s-1.12,2.5-2.5,2.5Z'/%3E%3C/g%3E%3C/svg%3E") 8 8, pointer;
}

.dish-item.active {
    padding: 8px;
    border: solid 2px #aaeaaa;
    box-shadow: 0 0 10px #aaeaaa;
}

.dish-img {
    border-radius: 8px;
    height: auto !important;
}

.dish-name {
    text-align: center;
    font-weight: bold;
    font-size: 1.05rem;
    line-height: 1.1em
}

.lunch-price {
    font-size: 1.6rem
}

.dish-kbzu-item {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.2em;
}

.price-calc {

}

.day-item {

}

.pack-header .form-control-sm {
    border: 0;
    border-radius: 8px
}

.pack-header .form-control-sm:focus {
    box-shadow: 0 0 0 1px #333;
    border: 0
}

.dish-select {
    padding: 10px;
    background: white;
    border-radius: 17px;
}

.dish-item > .row > .col {
}

#complex .dish-item {

    background: none;
}

.day-disable {
    color: #999;
    opacity: 0.7
}

.day-disable img {
    opacity: 0.7;
    transition: opacity 0.2s ease
}

.day-disabled .btn-dish, .accordion-collapse .btn-dish {
    display: none;
}

.day-disable img:hover {
    opacity: 1;
}

.day-disable .nice-number {
    display: none !important;
}

.now-deleted {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(240 240 240 / 64%)
}

#complex .accordion-item {
    border: 0;
    border-radius: 15px

}


#complex .accordion-button:after {
    position: absolute;
    top: 50%;
    margin-top: -0.625rem;
    height: 1.25rem;
    right: 20px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");


}

#complex .accordion-collapse {

    padding: 5px 15px 1px 15px;
}

#complex .accordion-button {
    color: #333;
    border: solid 1px #e1e1e1;
    background: #f7f7f7;
    border-radius: 15px;
    box-shadow: none;
    font-size: 1.5rem;
    display: block;
    text-align: center;
}

#complex .accordion-button:not(.collapsed) {
    background: none;
    border-color: transparent;
}

#complex .btn-outline-dark:focus,
#complex .btn-outline-dark:active {
    color: #333;
    background: none;
}

#complex .btn-outline-dark:hover {
    color: #333;
    background: #eee;
}

.complex-price {
    font-weight: bold
}

.dayofweek p {
    font-size: 1.2em
}

.complex-itogo {
    font-size: 1.2em;
    font-weight: bold
}

.dish-ingredients {
    display: none
}

.dish-info {
    border: solid 1px #f0f0f0;
    border-radius: 8px;
}

.dish-info > .col:nth-child(2) {
    border-left: solid 1px #f0f0f0;
}

.sticker-new {
    position: absolute;
    top: 0;
    right: -7px;
    cursor: default;
    font-size: 13px;
    border-radius: 24px;
    background: #f51313;
    color: white;
    padding: 5px 10px;
    box-shadow: 0px 0px 10px 0px #ff1d0070;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 10;
}

.cart-button {
    position: relative
}

.cart-button > span, .mobile-cart-counter {
    position: absolute;
    right: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    border-radius: 50%;
    background-color: #f60000;
    color: white;
    font-size: 10px;
    font-weight: bold;
}

.mobile-cart-counter {
    top: 3px;
    right: -3px;
}

.menu-cart-counter {
    display: inline-block;
    background-color: #f60000;
    color: white;
    line-height: 20px;
    width: 20px;
    border-radius: 15px;
    text-align: center;
    font-size: 14px;
}

.pack-title {
    border-bottom: 1.5px dashed #ccc;
    line-height: 1.4rem;
}

.form-control:focus {
    border: solid 1px #888;
    box-shadow: 0 0 0 4px #ddd
}


.nice-number {
    width: 100%;
    border-radius: 8px;
    touch-action: manipulation;
}

.nice-number input {
    border: 0;
    border-bottom: solid 1px #ddd;
    border-top: solid 1px #ddd;
    line-height: 27px;
    width: 100%;
    border-radius: 0
}

.complex-quantity .nice-number input {
    line-height: 34px;
}

.nice-number:hover input, .nice-number:hover button {
    background: #f1f1f1
}

.nice-number:active input, .nice-number:active button {
    background: #ddd;
}

.nice-number input:focus {
    outline: 0;
}

.nice-number button {
    background: white;
    color: #333;
    width: 50px;
    border: solid 1px #888;
    text-align: center;
    padding: 0;
}

.nice-number button:nth-last-child(1) {
    border-radius: 0 8px 8px 0;
    padding-right: 2px;
    border-left: 0;
}

.nice-number button:nth-child(1) {
    border-radius: 8px 0 0 8px;
    padding-left: 2px;
    border-right: 0;
}

.nice-number button, .nice-number input {
    border-color: #ddd;
}

#cart-wrapper {
    text-align: left;
}

.cart-day {
    margin-bottom: 20px;
}

.pack {
    background: white;
    border-radius: 15px;
    padding: 10px;
}

.pack-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom:10px;
}

.pack-item {
}

.pack-item-title {
    font-weight: bold;
    padding-left: 6px;
    padding-top: 3px;
}

.pack-item-price {
    font-size: 18px;
    font-weight: bold;
    width: 75px;
}

.pack-item li {
    text-align: left;
}

.pack-item .col-lg-4, .pack-item .col-lg-3 {
    text-align: right;
}

.pack .alert-dismissible {
    margin-bottom: 0;
    padding: 1rem 2.2rem;
}

span.question {
    background: #eee;
    width: 22px;
    height: 22px;
    display: inline-block;
    text-align: center;
    line-height: 22px;
    border-radius: 50%;
    font-size: 14px;
}

.item-disabled {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.6);
}

.pack-item-disabled, .cart-day-disabled {
    color: #bbb
}

.cart-day-disabled .btn-rename-pack {
    display: none;
}

.cart-item-img {
    width: 44px;
    height: 36px;
    min-width: 44px;
    min-height: 36px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin-top: 2px;
    margin-bottom: 2px;
    border: solid 1px #eee;
    border-radius: 7px;
}

.pack-item-disabled .cart-item-img {
    opacity: 0.2;
}

.cart-total-wrapper {
    font-size: 24px;
    text-align: right;
    line-height: 1.5rem
}


.dish-icon:before {
    position: absolute;
    left: 0;
    top: 2px;
    content: '';
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: 20px auto;
    background-position: 0 50%;
}

.dish-icon {
    position: relative;
    padding-left: 26px;
    list-style: none;
}

.pack-item-disabled .dish-icon:before {
    opacity: 0.5
}

.dish-icon.icon-salad:before {
    background-image: url(../img/cart/salad-icon.svg)
}

.dish-icon.icon-soup:before {
    background-image: url(../img/cart/soup-icon.svg)
}

.dish-icon.icon-hot:before {
    background-image: url(../img/cart/hot-icon.svg)
}

.sticker-new {
    position: absolute;
    top: 0;
    font-size: 13px;
    cursor: default;
    right: -7px;
    border-radius: 24px;
    background: #f51313;
    color: white;
    padding: 5px 10px;
    box-shadow: 0 0 10px 0 #ff1d0070;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 10;
}

.sticker-new:hover {
    -webkit-animation: jello-horizontal 0.9s forwards;
    animation: jello-horizontal 0.9s forwards;
}

.print .day-item {
    background: white !important
}

.print .d-flex.mt-auto.flex-column.align-items-center {
    display: none !important
}

.print .dish-select > .text-center {
    display: none;
}

.print .dish-select {
    padding: 0 !important
}

.print .dish-select .col-6 {
    margin-top: 0 !important
}

.print h4.mt-3.mb-0.text-center {
    font-size: 18px !important;
    font-weight: bold !important;
    margin-top: 11px !important;
    margin-bottom: 0 !important;
}

.dish-kbzu-mass {
    color: white;
    background: black;
    line-height: 2em;
    font-size: 1rem;
    border-radius: 8px 8px 0 0;
    padding: 0 10px;

}


.dish-kbzu-wrapper {
    border-radius: 0 0 8px 8px;
    padding: 5px 10px 5px 10px;
    border: solid 2px black
}


#bakery .dish-kbzu-mass, #bakery .dish-kbzu-wrapper {
    display: none
}

.form-check-input:checked {
    background-color: #000000;
    border-color: #000000;

}

.form-check-input:active {
    background-color: #000000;
    border-color: #000000;

}

.form-check-input:focus {
    border-color: #ccc;
    box-shadow: 0 0 0 3px #ccc;
}

.form-switch .form-check-input {
}

.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='rgba(0,0,0,0.25)'/></svg>");
}

.form-switch .form-check-input:checked {

    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='rgba(255,255,255,1.0)'/></svg>");
}

.form-control:focus {
    border: solid 1px #888;
    box-shadow: 0 0 0 4px #ddd
}

#promo_code.is-valid {
    cursor: default;
}

#promo_code.is-valid:focus {
    box-shadow: none;
}

.grecaptcha-badge {
    visibility: hidden;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --bs-border-radius: 0.75rem;
    --primary-orange: #FF6B35;
    --secondary-orange: #FF8C42;
    --dark-orange: #E55528;
    --light-orange: #FFE5DC;
    --text-dark: #1d1d1f;
    --text-muted: #6e6e73;
    --bg-light: #f5f5f7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Glassmorphism Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark) !important;
    letter-spacing: -0.5px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 1rem !important;
    border-radius: 12px;
}

.nav-link:hover {
    color: var(--primary-orange) !important;
    background: rgba(255, 107, 53, 0.08);
}

.btn-primary {
    background: var(--primary-orange);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--bs-border-radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.25);
}

.btn-primary:hover {
    background: var(--dark-orange);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f7 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.6;
}

.hero-image {
    position: relative;
    z-index: 2;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Week Navigation */
.week-nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    margin-bottom: 3rem;
    position: sticky;
    top: 90px;
    z-index: 100;
}

.day-tab {
    padding: 1rem;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    background: transparent;
    font-weight: 600;
    color: var(--text-dark);
}

.day-tab:hover {
    background: rgba(255, 107, 53, 0.08);
}

.day-tab.active {
    background: var(--primary-orange);
    color: white;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.day-tab strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.day-tab small {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Dish Card */
.dish-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.dish-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 107, 53, 0.3);
}

.dish-card img {
    height: 280px;
    object-fit: cover;
    width: 100%;
}

.dish-image-wrapper {
    overflow: hidden;
    position: relative;
}

.dish-category {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--primary-orange);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.dish-card .card-body {
    padding: 2rem;
}

.dish-card .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.dish-card .card-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.dish-price {
    color: var(--primary-orange);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.category-section {
    margin-bottom: 5rem;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-title i {
    color: var(--primary-orange);
}

.cart-badge {
    background: var(--dark-orange);
    color: white;
    border-radius: 50%;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    position: absolute;
    top: -8px;
    right: -8px;
}

.cart-btn {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-btn:hover {
    background: white;
}

.cart-btn i {
    color: var(--text-dark);
}

.daily-dish-badge {
    background: rgba(52, 199, 89, 0.15);
    color: #34c759;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 8px;
}

footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-link:hover {
    color: var(--secondary-orange);
}

.add-to-cart-btn {
    border-radius: 16px;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    background-color: var(--light-orange);
    color: var(--dark-orange);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.add-to-cart-btn:hover {
    background-color: var(--secondary-orange);
    color: white;
}

.freemenu-add-to-form {
    font-size: 15px;
    padding: 0.7rem 0.4rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.info-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.info-icon {
    font-size: 3.5rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.info-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .category-title {
        font-size: 2rem;
    }

    .dish-card img {
        height: 220px;
    }
}

/* Floating Action Button */
.fab-cart {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 64px;
    height: 64px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.fab-cart:hover {
    box-shadow: 0 10px 36px rgba(255, 107, 53, 0.5);
}

.fab-cart i {
    color: white;
    font-size: 1.5rem;
}
.nav-link.active {
    color: var(--primary-orange) !important;
}