
.order-option{
    line-height: normal;
 }
 .cart-items-box{
     /* height: calc(-100px + 30vh); */
     overflow-y: scroll;
     padding-bottom: 50px;
     border-radius: 10px;
     /* background-color: #C1DADE; */
 }
 .unclickable {
    pointer-events: none;
  }
  
 #cart-container {
     width: 100%;
     /* position: absolute; */
     /* top: 150px; */
     /* height: calc(100vh - 140px); */
     max-width: 100%;
     z-index: 11;
 /* position: inherit; */

    
 
 }
 @media only screen and (max-width: 768px) {
    #cart-container {
        z-index: 1100;
    }
}

  .counter-box{
    background: #F5F3F1;
    width: fit-content; /* Adjusts to content */
    display: inline-block; /* Ensures width fits content */
    padding: 3px; /* Optional padding */
    border: 1px solid gray; /* Optional border */
    border-radius: 20px;
  }
.cart-container {
    position: fixed;
    bottom: 106px;
    right: 20px;
    z-index: 4000;
}

.cart-btn {
    width: 60px;
    height: 60px;
    background-color: black; /* Blue color */
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, transform 0.2s ease;
    position: relative;
}

/* Hover Effect */
.cart-btn:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

/* Cart Counter */
.cart-counter {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: red;
    color: white;
    font-size: 8px;
    font-weight: bold;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
}

 .small-screen-cart{
    width: 100%;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100vh !important;
    z-index: 9999 !important;
 }
 
 #cart-small-screen-content {
     z-index: 11; /* Ensure it appears above other content */
 }
 
 @media (max-width: 992px) {
     /* Hide the cart content for large screens on small screens */
     #cart-container .d-lg-block {
         display: none;
     }
     
     /* Show the cart content for small screens when the checkout button is clicked */
     #cart-small-screen-content {
         display: block;
     }
 }
 

 
 .w-100{
     width: 100% !important;
 }
 .cart-area {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cart-area .btn-dark {
    background-color: #0c0303;
}

.cart-area .fa-trash {
    cursor: pointer;
}

.cart-area .border-top {
    border-top: 1px solid #e0e0e0;
}
#cart-container-large{
    position: fixed;
    top: 200;
    height: calc(100vh - 40px);
    width:450px;
    z-index: ;
}


.delivery-collection-switch {
    background-color: #f5f5f5;
    border: 1px solid #d1d1d1;
    overflow: hidden;
    width: 100%
}

.option {
    cursor: pointer;
    font-weight: 200;
    color: #333;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.option.active {
    background-color: gray; /* Just Eat Orange */
    color: white;
    border-radius: 50px;
}

.option:hover {
  

}
.cart-item-name{
    color: #242e30 !important;
    font-weight: bolder;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    font-family: JETSansDigital, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;
}
.cart-item-price{
    color: #242e30 !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    font-family: JETSansDigital, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;
    white-space: nowrap;
    font-style: normal;
}
.cart-item-topings{
    color: #242e30 !important;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    font-family: JETSansDigital, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;
    white-space: nowrap;
    font-style: normal;
}
.option i {
    font-size: 1.2rem;
}

.btn2{
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
/* Hides the element on large screens and up */
.d-lg-none {
    display: none;
}

/* Displays the element as block on small screens */
.d-sm-block {
    display: block;
}

/* Media queries for responsiveness */
@media (min-width: 576px) {
    .d-sm-block {
        display: block;
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none;
    }
}


    #footer{
        z-index: 1000 !important;
        position: relative !important;
    }