﻿*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    background: #BABABA;
}

*::-webkit-scrollbar-thumb {
    background-color: #000000;
    border-radius: 20px;
    border: 3px solid #BABABA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: #000000 #BABABA;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #BABABA;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

#LWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1000;
}

#LContent {
    display: flex;
    justify-content: center;
    align-items: center;
}

.LImg {
    max-width: 200px;
    max-height: 200px;
    display: block;
}

.SImg {
    max-width: 45px;
    max-height: 45px;
    display: block;
}

.CartPrd {
    color: #059FB3;
    position: absolute;
    font-size: 1.2rem;
    background: #E6FBFE;
    border-radius: 50%;
    width: 27px;
    height: 27px;
    text-align: center;
    font-weight: 600;
    margin-left: 10px;
    top: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: CartColor 1.2s ease-in-out infinite;
    display: none;
}

@keyframes CartColor {
    0% {
        background-color: #059FB3;
        color: #E6FBFE;
        transform: scale(1);
    }
    50% {
        background-color: #E6FBFE;
        color: #059FB3;
        transform: scale(1.1);
    }
    100% {
        background-color: #059FB3;
        color: #E6FBFE;
        transform: scale(1);
    }
}

.phone-container {
    width: 100%;
    height: 100vh;
    background: white;
    overflow-y: auto;
}

.screen {
    display: none;
    min-height: 100vh;
    background: white;
}

.screen.active {
    display: block;
}

.header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}

.header-title {
    flex: 1;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.header-icon {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    position: relative;
}

/* Sidebar Menu */
.sidebar {
    position: fixed;
    right: -300px;
    top: 0;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: hidden;
}

.sidebar.active {
    right: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 999;
}

.sidebar-overlay.active {
    display: block;
}

.sidebar-header {
    padding: 20px;
    background: linear-gradient(135deg, #000000 0%, #5C5C5C 100%);
    color: white;
}

.sidebar-capo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.capo-cart {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.capo-info>h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: normal;
}

.capo-cart>img {
    width: 40px
}

.capo-info p {
    font-size: 13px;
    opacity: 0.9;
}

.sidebar-menu {
    padding: 0;
}

.sidebar-item {
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: background 0.2s;
    border-right: 3px solid transparent;
}

.sidebar-item:hover {
    background: #f8f8f8;
}

.sidebar-item.active {
background: #fff5e6;
border-right-color: #FF9933;  /* Changed from border-left-color */
}
.sidebar-item-icon {
    margin-top: 7px;
    margin-right: 5px;
    width: 30px;
    text-align: center;
}

.sidebar-item-icon>img{
    width: 35px;
}

.sidebar-item-text {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    text-decoration: none
}

/* Home Screen */
.home-screen {
    background: #f8f8f8;
}

.top-header {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.logo>img {
    width: 70px;
}

.logo-main {
    font-size: 28px;
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 500;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    color: white;
    font-size: 2.3rem;
    transition: color 0.2s;
    cursor: pointer;
    margin-right: 30px;
}

.social-link:hover {
    color: #dc2626;
}

.social-link>img {
    width: 30px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.TMenu {
    width: 45px !important;
    margin-left: 10px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 70px;
    font-weight: 700;
    letter-spacing: 15px;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #630F02;
    background-image: linear-gradient( -225deg, #F7C80C 0%, #02DBFE 30%, #FE5D1E 67%, #FE1EF8 100% );
    background-image: linear-gradient(
        -225deg,
        #F7C80C 0%,
        #02DBFE 30%,
        #FE5D1E 67%,
        #FE1EF8 100%
    );
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
}

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}

.hero-btn {
    background: white;
    color: black;
    border: 2px solid white;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-btn:hover {
    background: #058194;
    color: #D8F8FD;
    border: 2px solid #D8F8FD;
}

.content-wrapper {
    padding: 80px 0;
}

.location-bar {
    background: white;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.location-bar span {
    font-size: 14px;
    color: #666;
}

.location-bar strong {
    font-size: 15px;
    color: #333;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 10px 60px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .food-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
        padding: 10px 20px;
    }
}

.food-card {
    background: white;
    border-radius: 15px;
    padding: 10px;
    cursor: pointer;
    transition: transform 0.2s;
    position: relative;
    box-shadow: 0px 3px 7px 2px #E3A6A8;
}

.food-card:hover {
    transform: translateY(-5px);
}

.food-img {
    width: 100%;
    height: 230px;
    background: #D9D9D9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin-bottom: 10px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.food-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color :#A33337;
    background: #F4DCDD;
    border-radius: 8px;
    padding: 7px 12px;
}

.food-sname {
    font-size: 1rem;
    margin-bottom: 5px;
    line-height: 30px;
    text-align: left;
    text-justify: auto;
    text-align: left;
    height: 80px;
    overflow-y: auto;
}

.food-price {
    font-size: 1.2rem;
    margin: 5px 0;
    position: relative;
    float: right;
    top: -235px;
    padding: 3px 8px;
    border-radius: 8px;
    right: 12px;
    animation: changeColor 2s infinite ;
}

@keyframes changeColor {
    0% {
        background-color: white;
        color: #7C272A;
    }
    100% {
        background-color: #7C272A;
        color: white;
    }
}

.food-info {
    font-size: 12px;
    color: #666;
    text-align: right;
    position: relative;
    margin-top: 15px;
}

.add-btn {
    background: linear-gradient(30deg, #7C272A 0%, #CC5C60 100%);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    padding: 12px 15px;
    letter-spacing: 1px
}

.add-btn>* {
    color: white;
}

.mdi-cart-plus {
    font-size: 1.3rem;
    margin-right: 2px;
}

/* Footer */
.footer {
    background: #2d2d2d;
    color: #fff;
    padding: 60px 40px 0;
    line-height: 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    padding-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color:#DBA9AA
}

.footer-section p, .footer-section a {
    color: #aaa;
    line-height: 2;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #FF9933;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-icon {
    font-size: 1.4rem;
    margin-top: 3px;
}

.soc-item {
    display: flex;
}

.soc-item>a {
    font-size: 2.5rem;
    color: white;
    margin-right: 10px;
    margin-top: -30px;
}

.soc-item>a:hover{
    color:#BC5C5F
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-item {
    aspect-ratio: 1;
    background: #444;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-bottom {
    background: #1a1a1a;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
}

.footer-bottom-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #FF9933;
    transform: translateY(-3px);
}

.footer-copyright {
    color: #888;
}

.footer-copyright a {
    color: #FF9933;
    text-decoration: none;
}

.scroll-top {
    background: #FF9933;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s;
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 996;

}

.scroll-top:hover {
    background: #FFB84D;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
    }
}

.section-header {
    display: block;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-header>h2 {
    font-weight: normal;
    font-size: 2rem;
    color:#A33337;
    text-align: center;
}

.Sepr {
    border: 1px solid #A33337;
    width: 80%;
    max-width: 300px;
    max-width: 1020px;
    margin: auto;
    margin-top: 20px
}

.catering {
    color: white;
    text-align: center;
    padding: 10px 20px;
    position: relative;
}

.overlay {
    padding: 30px 0;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 10px 50px;
}

@media (max-width: 768px) {
    .cards {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
        padding: 10px 20px;
    }
}

.card {
    background: #fff;
    color: #000;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 20px;
    border-radius: 11px;
    box-shadow: 0px 3px 21px 2px #B5B5B5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.card img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.2rem;
    font-weight: normal;
    color:#BB0240
}

.PFade {
    display: none;
}

.LProds {
    margin-bottom: 40px
}

.mainret {
    background: #FF9933;
    color: white;
    border: none;
    letter-spacing: 2px;
    padding: 10px 17px;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    position: fixed;
    left: 15px;
    top: 100px;
    z-index: 996;
    animation: animateBackground 0.8s infinite alternate;
    display: none;
}

@keyframes animateBackground {
    0% {
        background-color: #F57A00;
    }
    50% {
        background-color: #D501B2;
    }
    100% {
        background-color: #15808E;
    }
}

.mainret>span {
    font-size: 1.2rem;
}

.mainret:hover {
    background: #FFB84D;
    transform: translateY(-3px);
}

.SubMn {
    font-size: 1.5rem;
    color: #01606F;
    text-align: center;
    background: #BDF5FF;
    max-width: 600px;
    margin: auto;
    width: calc(100% - 50px);
    padding: 10px 0;
    border-radius: 10px;
    display: none;
}

.SeprMn {
    border: 1px solid #01606F;
    width: 80%;
    max-width: 300px;
    max-width: 1020px;
    margin: auto;
    margin-top: 20px;
    display: none;
}

.ErrMsg {
    font-size: 1.1rem;
    color: #E00000;
    text-align: center;
    background: #FFDBDB;
    max-width: 600px;
    margin: auto;
    width: 100%;
    padding: 10px 0;
    border-radius: 10px;
}

.cart-container {
    width: 100%;
    overflow-y:auto;
}

.close-btn {
    color: #FFBDBD;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    margin-left: auto;
    font-weight: bold;
}

.ccontent {
    padding: 6px 5px;
    text-align: center;
    overflow-y: auto;
    height: calc(100vh - 290px);
}

.empty-cart {
    color: #A33337;
    font-size: 1.2rem;
    margin: 15px 0;
}

.cfooter {
    padding: 20px;
    background: linear-gradient(135deg, #000000 0%, #5C5C5C 100%);
    border-top: 1px solid #333;
    bottom: 0;
    position: fixed;
    width: 300px;
}

.ctotal {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.ctotal span {
    color: #11A4D4;
    font-size:1.2rem;
}

.CapoBtn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.SendOrder {
    background: #25BB89;
    color: #fff;
    font-size:1rem;
    cursor: pointer;
    letter-spacing: 1px;
}

.SendOrder:hover {
    background-color: #1A8461;
    transform: translateY(-2px);
}

.EmptyCart {
    background: #FE5461;
    color: #fff;
    font-size:1rem;
    cursor: pointer;
    letter-spacing: 1px;
}

.EmptyCart:hover {
    background-color: #FE1629;
    transform: translateY(-2px);
}

.PItem {
    background: linear-gradient(135deg, #000000 0%, #5C5C5C 100%);
    border-radius: 7px;
    padding: 5px;
    margin-bottom: 5px;
}

.CProdc {
    font-size: 1.1rem;
    color: White;
    text-align: left;
    padding: 0 3px;
    border-bottom: 1px solid White;
    padding-bottom: 8px;
}

.CPrice {
    color: #11A4D4;
    font-size:1.1rem;
    text-align: left;
    padding-left: 3px;
}

.CtrT {
    line-height: 0px;
    width:180px;
    padding-top: 5px;
}

.CtrT>div {
    background: #fff;
    border-radius: 8px;
    padding: 5px 0 4px 0;
}

.CrtP, .CrtM, .CrtR {
    width: 40px;
    text-align: center;
    padding: 0 5px;
}

.CrtP>img, .CrtM>img, .CrtR>img {
    width: 35px;
    cursor: pointer;
}

.CrtQ {
    font-size: 1.2rem;
    width: 25px;
}

.CrtQ>div {
    font-size: 1.1rem;
    width: 60px;
    border: 1px solid #882B2E;
    color: #882B2E;
    height: 35px;
    line-height: normal;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.DChoice {
    border-radius: 7px;
    border: 1px solid #D3D7E9;
    margin-bottom: 10px;
}

.EChoice {
    border: 1px solid #FF5757 !important;
}

.ChoiceTT {
    text-align: center;
    font-size: 1rem;
    color: #1b223c;
    padding: 7px 0;
    border-bottom: 1px solid #D3D7E9;
}

.ChoiceP {
    text-align: center;
    padding-top: 10px;
    cursor: pointer;
}

.ChoiceP>img {
    width: 60px;
    border: 1px solid #AF4D51;
    border-radius: 15px;
}

.ChoiceS {
    text-align: center;
    font-size: 1rem;
    color: #AF4D51;
    padding-bottom: 6px;
    cursor: pointer;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background-color: white;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideDown 0.3s ease;
    display: none;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

.close-btn:hover {
    color: #000;
}

.ErrClose {
    background: #FE5461;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 10px;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    margin: 15px 0 5px 0;
}

.ErrClose:hover {
    background: white;
    color: #FE5461;
    border: 1px solid #FE5461;
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #e5e9f2;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}
.modal-title {
    margin-bottom: 3px;
    line-height: 1.5;
    font-weight: normal;
    font-size: 1.1rem;
    color:#A33337
}
.modal-header .close {
    padding: 0.4rem 0.5rem;
    margin: -0.4rem -0.5rem -1rem auto;
}
.close {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1;
    color: #FE5461;
    text-shadow: 0 1px 0 #ffffff;
    background: white;
    border: none;
    cursor: pointer;
}
.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
    display: none;
}
.modal-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #e5e9f2;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}
.form-group, .input-group {
    margin-bottom: 1.25rem;
}
.form-group label, .input-group label {
    color: #1b223c;
    font-size: 1rem;
}
.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    margin-top: 15px;
}
.input-group-prepend {
    margin-right: -1px;
    display: flex;
    border: 1px solid #e5e9f2;
    background: #f5f6fa;
    width: 40px;
}
.input-group > .input-group-prepend > .input-group-text {
    background-color: #f5f6fa;
    border-color: #e5e9f2;
    margin: auto;
}

.form-group .form-control, .input-group .form-control {
    font-size: 1rem;
    padding: .6rem 1.06rem;
    border-color: #e5e9f2;
    color: #3D3D3D;
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0;
}
.input-group > .form-control:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.form-control::placeholder {
    color: rgba(138, 144, 157, 0.7);
    opacity: 1;
}
.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 1.18rem + 2px);
    padding: 0.59rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
        border-top-color: rgb(206, 212, 218);
        border-right-color: rgb(206, 212, 218);
        border-bottom-color: rgb(206, 212, 218);
        border-left-color: rgb(206, 212, 218);
    border-radius: 0.25rem;
        border-top-left-radius: 0.25rem;
        border-bottom-left-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

.BtnCancel {
    background: white;
    color: #FE5461;
    border: 1px solid #FE5461;
    padding: 10px 20px;
    border-radius: 7px;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    margin-left:15px;
}

.BtnCancel:active {
    background: #FE5461;
    color: white;
}

.BtnNext {
    padding: 10px 20px;
    border-radius: 7px;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    margin-left:15px;
}

.Prm {
    background: #0285E8;
    color: white;
    border: 1px solid #0285E8;
}

.Prm:hover {
    background: #0262AC;
    color: white;
}

.Succ {
    background: #25BB89;
    color: white;
    border: 1px solid #25BB89;
}

.Succ:active {
    background: #187757;
    color: white;
}

.form-control.is-invalid {
    border-color: #fe5461;
    padding-right: calc(1.5em + 1.18rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23fe5461' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23fe5461' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.295rem) center;
    background-size: calc(0.75em + 0.59rem) calc(0.75em + 0.59rem);
}

.tabs {
    display: flex;
    gap: 10px;
}

.tab {
    padding: 12px 0;
    background: #2B2B2B;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid black;
    transition: all 0.3s ease;
    width: 33%;
    text-align: center;
}

.tab:hover {
    color: white;
    border: 1px solid black;
    background: black
}

.tab.active {
    color: white;
    border: 1px solid #1593CA;
    background: #1593CA
}

.tab-content {
    display: none;
}

.tab-content.tactive {
    display: block;
}

.drinks-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 20px;
    overflow-y: auto;
    max-height: 450px;
    padding-right: 10px;
}

.drink-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.drink-image {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
    background-color: #f8f9fa;
    border-radius: 7px;
}

.drink-name {
    color: #954144;
    margin-bottom: 8px;
    font-size: 1rem;
}

.drink-price {
    color: #0F91BD;
    font-size: 1rem;
    margin-bottom: 10px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.DQty {
    font-size: 1rem;
    width: 40px;
}

.DQty>div {
    font-size: 1rem;
    width: 40px;
    border: 1px solid #636363;
    color: #636363;
    height: 30px;
    line-height: normal;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
}

.DQtyE {
    border: 2px solid #1593CA;
    box-shadow: 0 2px 8px rgba(21, 147, 202, 0.3);
    background: #ECF8FD
}

.DQtyV {
    border: 1px solid #1593CA !important;
    color: #1593CA !important;
}

.DQtyE>img {
    background: #EAFBF5;
}

.DTotal {
    position: absolute;
    left: 15px;
    background: #9E9E9E;
    color:white;
    border-radius: 7px;
    width: 100px;
    text-align: center;
    padding: 10px 0px;
}

.BtnClose {
    background: #22A55F;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 7px;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    margin: 15px 0 5px 0;
}

.BtnClose:hover {
    background: white;
    color: #22A55F;
    border: 1px solid #22A55F;
}

.grecaptcha-badge {
    bottom: 80px !important;
}