.header .logo {
    order: 0;
}
.clickcollect-section {
    padding: 100px 0;
}
/* Menu Item Container */
.menu-item {
    display: flex;
    flex-direction: column; /* Ensure the elements stack vertically */
    align-items: center; /* Center the content horizontally */
    text-align: center; /* Center the text content */
    margin-bottom: 20px; /* Space between menu items */
}

/* Image Styling */
.menu-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px; /* Space between image and text */
}

/* Quantity Control Container */
.quantity-control-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 10px; /* Space above quantity control */
}

.quantity-control {
    display: flex;
    align-items: center;
    margin-right: 10px; /* Space between quantity control and Add to Cart button */
}

.quantity-control button {
    background-color: #ff7303; /* Bright yellow for buttons */
    color: black;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quantity-control input {
    text-align: center;
    width: 50px;
    border: none;
    outline: none;
    font-size: 18px;
    color: #333;
    background-color: #fff; /* Input background */
}

.quantity-control button:hover {
    background-color: #ff7303; /* Darker yellow on hover */
}

/* Add to Cart Button */
.add-to-cart {
    background-color: #ff7303;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    height: 40px; /* Make height equal to the buttons */
}

/* Add to Cart Button */
.buttondetails {
    background-color: #ff7303;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    align-items: center;
    width: 120px;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    height: auto; /* Make height equal to the buttons */
}
.buttondetails:disabled{
    background-color: grey;
}
.mraginleft{
    margin-left: auto;
}


.add-to-cart i {
    margin-right: 8px; /* Space between icon and text */
}

.add-to-cart:hover {
    background-color: #ff7303; /* Darker yellow on hover */
}

.deliverybutton{
    background-color: #ff7303!important;
    border-color: none!important;
    border-bottom: none!important;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    align-items: center;
    width: 120px;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    height: auto; /* Make height equal to the buttons */
}

#checkoutButton:disabled{
    background-color: grey!important;
}

.deliverybutton:hover {
    background-color: #ff7303; /* Darker yellow on hover */
}
.deliverybutton:active{
    background-color: black;
}


/* Basic modal styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
}

/* Cart item styling */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.cart-item img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.cart-item-details {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.cart-item-name {
    width: 250px;
    font-size: 16px;
}

.quantity-control {
    display: flex;
    align-items: center;
}

.quantity-control button {
    background-color: #ff7303;
    border: none;
    padding: 5px 10px;
    font-size: 16px;
    cursor: pointer;
}

.quantity-control .quantity {
    margin: 0 10px;
    font-size: 16px;
}

.cart-item-price {
    font-size: 16px;
    width: 50px;
}

.remove-btn {
    background-color: transparent;
    border: none;
    font-size: 20px;
    color: red;
    cursor: pointer;
}

.remove-btn:hover {
    color: darkred;
}
.cart-total {
    text-align: right;
    margin-top: 20px;
    font-size: 18px;
}

.cart-total span {
    font-size: 18px;
}

#modal-total {
    font-weight: bold;
}

.instructions { color: red; margin-top: 10px; }
.order-summary { max-width: 600px; margin: 20px auto; padding: 20px; border: 1px solid #ccc; border-radius: 5px; }

.checkoutcontainer{
    text-align: center;
}

.paddingzero{
    padding-bottom: 10px;
}

.divcheckout{
    padding-bottom:25px;
}
.inputcheckout{
    width: 250px;
}
.labelcheckout{
    width: 150px;
}

.autocomplete-container {
    position: relative; /* Container for proper positioning */
    width: 300px;       /* Match input width */
}

#address {
    width: 100%;
    padding: 10px;
}

#suggestions {
    border: 1px solid #d4d4d4;
    max-height: 200px;
    overflow-y: auto;
    background-color: #ffffff;
    position: absolute; /* Positioned absolutely within the container */
    top: 100%;          /* Position directly below the input field */
    left: 0;            /* Align with the left of the container */
    width: 100%;        /* Match the width of the input field */
    z-index: 1000;      /* Ensure it appears above other elements */
    display: none;      /* Initially hidden */
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1); /* Optional: for a better dropdown effect */
}

#suggestions div {
    padding: 10px;
    cursor: pointer;
}

#suggestions div:hover {
    background-color: #e9e9e9;
}

.checkoutformmargin{
    margin-top: 20px;
}

/* Small screens (phones) */
@media (max-width: 767px) {

.quantity-control {
    display: block;
    align-items: center;
    text-align: center;
    margin-right: 0px;
}
#alert-box {
    transform: translateX(140%)!important;
}
}

#alert-box {
    position: fixed;
    transform: translateX(800%);
    padding: 15px;
    background-color: #ff7303;
    color: white;
    border-radius: 5px;
    z-index: 1000;
    font-family: Arial, sans-serif;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }
  