﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}
body{
   font-family: "Montserrat", sans-serif;
    
}
.menu-align{
    display:flex;
    flex-direction:row;
    justify-content:space-evenly;
    width:100%;
}
/* mobile navbar */
.input-wrapper {
    position: relative;
    display: inline-block;
}
  /* navbar logo  */
.logo-1 {
    width: 100px !important;
}
  .input-wrapper span {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
    transition: 0.2s;
  }

  .input-wrapper input:focus + span,
  .input-wrapper input:not(:placeholder-shown) + span {
    opacity: 0;
  }

  .input-wrapper input {
    padding: 8px 10px;
  }
@media (max-width: 768px) {
  .navbar{
  display: flex;
  justify-content: space-between;
  box-shadow: 0px 0px 5px 0px rgb(82, 79, 79);
  padding: 26px 14px 26px 14px !important;
  
  top: 0px;
  z-index: 2;
  width: 100%;
  background-color: white;
 

 }
    .navbar h1 {
        color: #079839;
        font-size: 20px !important;
        font-family: "Montserrat", sans-serif;
        font-weight: 450;
    }
 .span1{
  margin-left: 8px;
  font-size: 24px;
 }
 .span2{
     font-size: 24px;
 }
 .navbar button{
  border: none;
  background: none;
 }
 .navbar button img{
  width: 43px;
 }
 /* book table start from here */
 .reservation{
  background-color: #efe9db;
  padding: 26px 14px 26px 14px !important;
z-index: 3;
margin-top: 0px !important;
 }

.text-book {
        padding: 20px 20px 20px 20px !important;
        color: #079839 !important;
        font-size: 15px !important;
        min-width: 250px !important;
    }

 .reservation div {
  background-color: #079839;
  width: 35px !important;
  height: 2px;
 }
    .reservation h1 {
        color: #ed2629;
        font-weight: 600;
        font-size: 22px !important;
        font-family: "Montserrat", sans-serif;
    }
 .span3{
  font-size: 24px !important;
    font-family: "Cinzel Decorative", serif !important;
 }
  
 .reservation p{
  font-size: 24px !important;
  color: rgb(73, 64, 64);
  
 }
 .text-1{
  padding: 35px 70px 35px 70px !important ;
  color: #079839;
   font-size: 15px !important;
   min-width: 250px !important;
 }

 .form-section{
  display: flex;
  flex-direction: column;
  margin: 14px 14px 28px 14px !important;
   box-shadow: none !important;
  background-color: #f5f5f5;
  padding: 28px 14px 38px 14px !important;
  gap: 14px;
  min-width: 95% !important;
 }
 .form-section button{
  width: 100% !important;
 }
 .text-input{
  height: 150px !important;
 }
    .form-section input,
    .form-section select {
        height: 55px;
        border: none;
        box-shadow: 1px 1px 1px -1px rgba(82, 79, 79, 0.5);
        width: 100%;
        padding-left: 18px;
    }
 
.form-section button{
  background-color: green;
  height: 50px;
  font-size: 15px;
  margin-top: 17px !important;
  border: none;
  color: white;
}
/* Order now mobile version page start from here */
.hero-section{
  background-color: #efe9db;  
  padding: 14px 14px 5px 14px!important;
}
    .order-text {
        font-size: 30px !important;
    }
    .hero-section .text-4 {
        font-size: 18px !important;
        margin-top: -5px !important;
    }
.line-2{
  margin-top: 10px !important;
}
.offer-text{
  font-size: 30px !important;
}
    .text-4 {
        font-size: 18px !important;
    }
.text-3{
  font-size: 18px !important;
  margin-bottom: 20px;
}
/* food menu start from here */
.food-menu{
  padding: 20px 14px !important;
  position: sticky;
}
.hamburger{
  display:block !important;
}

/* Desktop navbar menu */
.menu-desktop{
  display: none;
}
.desk-btn{
  display: none !important;
}
.container-4 .product-section{
    width: 100% !important;
  }
   
  
   .container-4{
    padding: 0px !important;
   }
}
 /* navbar start from here */
.navbar {
    display: flex;
    justify-content: space-between; /* Keeps logo on left, groups others on right */
    align-items: center;
    padding: 26px 42px 26px 68px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 0px 5px 0px rgb(82, 79, 79);
    position: sticky; /* Optional: keeps navbar at top */
    top: 0;
    z-index: 1000;
    box-sizing: border-box; /* Ensures padding doesn't break width */
}
/* Left Section: Logo */
.menu-desktop-align-image {
    flex-shrink: 0;
}

.logo-1 {
    height: 50px; /* Adjust based on your logo aspect ratio */
    width: auto;
    display: block;
}

.menu-align {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 25%;
}
/* Order Online Button Section */
.desk-btn {
    display: block;
    margin-left: 20px; /* Space between links and button */
}

    .desk-btn button {
        background-color: #079839;
        font-size: 20px;
        padding: 10px 20px;
        border-radius: 5px;
        border: none;
        cursor: pointer;
        color: white;
        transition: background-color 0.3s ease;
    }

        .desk-btn button:hover {
            background-color: #0ddf56;
        }

/* Container for all right-side elements */
/* We use margin-left: auto on the first right-side element to push everything */
.menu-desktop {
    margin-left: auto;
}
    .menu-desktop ul {
        display: flex;
        list-style: none;
        gap: 5px;
        margin: 0;
        padding: 0;
        align-items: center;
    }
        .menu-desktop ul a {
            text-decoration: none;
            color: #000000;
            font-weight: 500;
            font-size: 20px;
            padding: 10px 20px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
 .menu-desktop ul a:hover{
  background-color:#079839;
  color: white;
  
 

 }
 /* product and order page  */
  .container-4{
    display: flex;
    flex-wrap: wrap;
    padding: 0px 20px;
  justify-content: space-evenly;
  }
  .container-4 .product-section{
    width: 52%;
  }
  .contain-5  {
    width: 31%;
    padding: 0px;
    margin: 40px;
  }
  .order-section{
    width: 100%;
  }
   
  
 .navbar label img{
  width: 43px;
 }
/* Book table page start from here */

 .reservation{
  background-color: #efe9db;
  padding: 26px 14px 26px 68px;
z-index: 3;
margin-top: 0px;
 }

.text-book {
    padding: 20px 20px 20px 20px !important;
    color: #079839 !important;
    font-size: 15px !important;
    min-width: 250px !important;
}

 .reservation div {
  background-color: #079839;
  width: 85px;
  height: 2px;
 }
.reservation h1 {
    color: #ed2629;
    font-weight: 600;
    font-size: 48px;
    font-family: "Montserrat", sans-serif;
}
 .span3{
  font-size: 50px;
    font-family: "Cinzel Decorative", serif !important;
 }
 .reservation p{
  font-size: 24px;
  color: rgb(73, 64, 64);
  
 }
 .text-1{
  padding: 35px 70px 35px 70px;
  color: #079839;
   font-size: 22px;
   min-width: 650px;
   text-align: center;
   font-weight: 600;
 }
 .form-section-1{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
 }
 .form-section{
  display: flex;
  flex-direction: column;
  min-width: 650px;
  margin: 42px 62px 76px 62px;
   box-shadow: 0 4px 8px 0px rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  background-color: #f5f5f5;
  padding: 76px 42px 100px 42px;
  gap: 14px;
 }
 .text-input{
  height: 150px !important;
 }
 
.form-section input{
  height: 55px;
   border: none;
 box-shadow: 1px 1px 1px -1px rgba(82, 79, 79, 0.5);
color: #646363;
 
  padding-left: 18px;
}
.form-section input:focus {
  border: #079839 2px solid;
  outline: none;
}
.form-section input::placeholder{
  color: rgba(128, 128, 128, 0.514);
}
.form-section button{
  background-color: green;
  height: 50px;
  width: 240px ;
  font-size: 15px;
  margin: 10px auto;
  border: none;
  color: white;
  font-weight: 300 !important;
  cursor: pointer;
}


/* mobile Hamburger button */
.hamburger {
  font-size: 2rem;
  cursor: pointer;
  display: inline-block;
  z-index: 10;
  display:none;
}

/* Mobile menu styles */
.menu {
  position: absolute;
  top: 105px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column ;
  gap: 15px;
  background: #fff;
  padding: 1rem;
  text-align: center;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.menu a{
  text-decoration: none;
  color: black;
  padding: 10px 20px;
width: 150px;
margin: auto;
text-align: center;
border-radius: 5px;
}
.menu a:hover{
  background-color:#079839;
  color: white;
}

.menu a button{
  font-size: 1rem;
  color: white;
  border-radius: 5px;
  width: 150px;
 padding: 10px 20px;
  background-color: #079839;
  border: none;
 
  margin-left: -20px;
  cursor: pointer;
}
/* Show menu when checkbox is checked */
#menu-toggle:checked + .hamburger + .menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* hero section start from here */
.hero-section {
    background-color: #efe9db;
    padding: 20px 0px 0px 70px;
    /*    padding: 20px 70px;*/
}
.text-3 {
    font-size: 18px;
    margin-top: -10px;
}
.hero-section .text-4 {
    font-size: 18px;
    margin-top: -20px;
}
.hero-section p strong{
  color: #079839;
}
.line-1 {
background-color: #079839;
height: 2px;
width: 55px;
}
.line-2{
  background-color:#079839;
height: 2px;
width: 55px;
margin-top: 25px;
}
.order-text{
  font-family:"Cinzel Decorative", serif !important;
  color:#ed2629;
  font-size: 40px;
  font-weight:600;
}
.offer-text {
    font-family: "Cinzel Decorative", serif !important;
    color: #079839;
    font-size: 40px;
    font-weight: 600;
}
/* food menu start from here */
.food-menu{
  background-color: #ed2629;
  display: flex;
  justify-content: space-between;
  padding: 20px 70px;
  position: sticky;
  top: 0px;
  z-index: 2;
}
.box-1 p{
  color: white;
}

.box-1 {
    display: flex;
    align-items: center;
    font-size: 25px;
    gap: 5px;

}
.box-1 img{
  width: 30px;
  height:30px;
}
.option-section{
  padding: 5px 10px;
}
  details {
      position: relative;
      display: inline-block;
    }

    summary {
      list-style: none;
      cursor: pointer;
      background-color: #ffffff;
      color: rgb(0, 0, 0);
      padding: 10px 20px;
      border-radius: 4px;
      font-weight: 600;
    }
    summary img{
      width: 15px;
      margin-left: 5px;
    }

    details[open] summary {
      background-color: #ffffff;
    }

    details ul {
      position: absolute;
      
      background-color: #ffffff;
      margin: 0;
      padding: 0;
      list-style: none;
      border: 1px solid #ccc;
      width: 170px;
    }

    details ul li a {
      display: block;
      padding: 10px 16px;
      text-decoration: none;
      color: black;
      text-align: right;
    }

    details ul li a:hover {
      background-color: #ddd;
    }
    .home-page{
      background-color: #efe9db;
    }
    /* product section start from here */
    .product-section{
      background: #fff;
      margin: 40px;
       height: 100%;
    }
    .product-list{
      margin-top: 10px;
    }
    .text-2{
      color: #079839;
      font-weight: 600;
      margin-left:-15px;
    }
    /* responsive for tablet and ipad */
    @media only screen and (min-width: 768px) and (max-width: 1024px) {
      .container-4 .order-section{
        width: 100%;
      }
      .container-4 .product-section{
        width: 100%;
      }
      .contain-5{
        width: 100%;
      }
      .menu-desktop{
        display: none;
      }
      .desk-btn{
        display: none;
      }
      .hamburger{
  display:block;
}
    }
    /* responsive for mobile */
    @media (max-width: 768px) {
      /* product section start from here */
      .product-section{
        
        margin: 14px !important;
      }
      .box-1{
        font-size: 18px !important;
      }
       .card-1{

        margin: -14px 0px !important ;
         
    }
    .card-1 img{
      width: 110px !important;
      height: 110px !important;
    }
    .appetizeer{
       background-size: cover !important;
      padding: 24px !important;
       
      
     
    }
    /* order section start from here */
    .contain-5 {
     width: 100%;
      margin: 0px !important;
      padding: 14px !important;
    }
    .my-order{
      padding: 22px !important;
      background-size: cover !important;
       
    }
     .cart-1 div h5{
     font-size: 15px !important;
     }
     .in-card h5{
          
          font-size: 20px !important;
          margin-bottom: 5px;
    }
        .in-card div p {
            font-size: 16px !important;
            margin: 0 !important; /* Removes default paragraph gaps */
            padding: 0 !important; /* Removes internal padding */
            /* VERTICAL CLOSENESS */
            /* 1.0 is standard height. Try 0.9 or 0.8 to make them overlap slightly */
            line-height: 0.9 !important;
            /* HORIZONTAL CLOSENESS */
            /* Negative values pull words closer together */
            word-spacing: -3px;
            /* Optional: pull letters closer together */
            letter-spacing: -0.5px;
        }

      .in-card div button{
        width: 92px !important;
        
        font-size: 14px !important;
      }
        .text-5 {
            font-size: 14px !important;
            margin: -10px 0px;
        }
         
        .cart{
          padding: 4px !important;
          margin-top: 0px !important;
        }
        .box-3{
          width: 100% !important;
        }
        .details{
          margin: 15px 50px !important;
        }
        /* collection section start from here */
        .collection-section{
         margin: 28px 0px 14px 0px!important;
          padding: 28px 14px !important;
        }
        .checkout-section{
           margin-top: 14px !important;
        }
        .container {
            /*        margin:20px 10px !important;*/
            width: 95% !important;
        }
      /* checkout section start from here */
      .checkout{
        padding: 24px !important;
        background-size: cover !important;
        margin-top: 14px !important;
      }
      .input-section{
        padding: 14px !important;
      }
      .payment-section .img-4{
        width: 100% !important;
      }
      .payment-section .img-3{
        width: 100% !important;
      }
      .box-5{
     
    margin: 50px 0px !important;
    font-size: 18px !important;

  }
  .box-6 h5{
     
    font-size: 20px !important;
  }
  .box-6{
    padding: 40px !important;
    margin: 15px !important;
  }
  /* confirmation mobile version page start from here */
   .confir-hero{
     
    padding: 30px 15px 60px 15px !important;
    
  }
  .confir-hero h1{
    font-size: 30px !important;
  }
   .confir-hero p{
    font-size: 27px !important;
   }
   /* popup-select-option page mobile version start from here */

   .pop-up{
   width: 80% !important;
   
    }

    .option-select h1{
      font-size: 16px !important;
    }
    .card-text-2{
      margin: 5px 8px !important;
    }
    .card-text-2 h5{
      font-size: 15px !important;
    }
    .card-text-2 div button {
      width: 92px !important;
       
    }
    .option-select {
      padding: 20px 30px 30px 30px !important;
      margin-bottom: 10px !important;
      background-size: cover !important;
     }
 .btn-1{
  font-size: 15px !important;
 }
.popup-container{
  width: 80% !important;
} 
.button-1{
  width: 100% !important;
}
/* mobile navbar logo design */
.logo-1{
    width: 100px !important;
    
/*    height: 70px !important;*/
}
/*  order type in online order page*/
 .order-type{
  width: 100% !important;
 }
        .error-box p {
            padding: 15px 15px !important; /* Increased left padding for a clean look */
            font-size: 14px !important; /* Slightly larger for readability */
            margin-left: 0 !important; /* Reset this to 0 to keep it inside the panel */
            background-color: #f1bc29;
            color: black;
            text-align: left !important; /* Standard text alignment */
            /* Ensure the container behaves as a flexbox to align children */
            display: flex !important;
            justify-content: flex-start !important;
            align-items: center !important;
            width: 100%;
        }
        .error-box img {
            width: 100% !important;
            height: 40px !important;
            padding: 0px 15px !important;
        }
    
 .order-type .div-1{
  height: 40px !important;
  padding-top: 8px !important;
   
 }
 .order-type .div-2{
  height: 40px !important;
  padding-top: 8px !important;
   
 }
    }
    
   /* product-list start from here */
.card-1 {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px 10px 10px 10px;
    /*    border-bottom: rgba(128, 128, 128, 0.227) 1px solid;*/
    /*    padding-top: 10px;
    padding-bottom: 10px;*/
}
    .card-1 img{
      width: 130px;
      height: 130px;
    }
    .card-1 div {
      display: 100%;
    }
    .card-1 div div{
      display: flex;
      justify-content: space-between;
      align-items: center;
      
    }

.appetizeer {
    background-image: url(./Assets/vector4_colored.png);
    padding: 16px 0px 10px 40px;
    background-repeat: repeat-x;
    background-position: center;
    background-size: contain;
}
.in-card h5 {
    color: #ed2629;
    font-size: 22px;
    margin-bottom: 3px;
}
.in-card {
    border-bottom: rgba(128, 128, 128, 0.227) 1px solid;
    padding-bottom: 10px;
    margin-top: 0px;
    margin-bottom: 0px;
    width: 100%;
}
    
    .in-card div p {
        font-size: 20px !important;
        margin: 0 !important; /* Removes default paragraph gaps */
        padding: 0 !important; /* Removes internal padding */
        /* VERTICAL CLOSENESS */
        /* 1.0 is standard height. Try 0.9 or 0.8 to make them overlap slightly */
        line-height: 0.9 !important;
        /* HORIZONTAL CLOSENESS */
        /* Negative values pull words closer together */
        word-spacing: -3px;
        /* Optional: pull letters closer together */
        letter-spacing: -0.5px;
    }
    .in-card div button{
      background-color: #079839;
      width: 100px;
      height: 35px;
      color: white;
      border: none;
      cursor: pointer;

    }
     .in-card div button:hover {
      background-color: #0ddf56;
      font-weight: 500;
     }
.text-5 {
    font-size: 16px;
    margin-top: 8px;
    margin-bottom: 2px;
}
.text-6 {
    color: #079839;
    font-size: 14px;
    margin-bottom: -2px;
}
.text-7 {
    font-size: 14px;
    color: #ed2629;
    margin-bottom: -2px;
}
    .order-section{
       background: #fff;
       padding-bottom: 10px;
       height:fit-content;
       margin-left:0px;
    }
    /* my order section start from here */
.my-order {
    background-image: url(./Assets/vector1.png);
    /* Set up Flexbox for horizontal alignment */
    display: flex;
    justify-content:  space-between; /* Pushes the 'order-title' and 'order-total' to opposite ends */
    align-items: center; /* Vertically centers the content */
    /* Background and Sizing properties */
    background-position: center;
    background-repeat: repeat-x;
    background-size: contain;
    color: white;
    width: 100%;
    padding: 10px 25px; /* Added padding to give space from the edges */
    box-sizing: border-box; /* Ensures padding does not increase the overall width beyond 100% */
    
}

    /* Ensures H4 elements don't interfere with alignment */
    .my-order h4 {
        margin: 0; /* CRITICAL: Removes default top/bottom h4 margins */
        padding: 0; /* Ensures no padding is affecting spacing */
        font-size: 1.25rem;
        line-height: 1.2; /* Better line height for labels */
        margin-left: -12px;
    }

/* Optional: Style for the title container (Left Side) */
.order-title {
    flex-shrink: 0; /* Prevents the title from shrinking if space is limited */
    text-align: left ;
}
.moveemptycart {
    margin-left: 8px;
}

/* Optional: Style for the total label on the right */
.order-total {
    flex-shrink: 0; /* Prevents the total from shrinking */
    text-align: right;
}
    .cart{
       margin-top: 40px;
       padding: 0px 15px 10px 15px ;
       background-color:#fff;
      
    }
    .cart-1{
      display: flex;
      gap: 24px;
      margin: 7px 0px 0px 0px;
      
    }
    
    .div-1{
      border-bottom: 1px solid rgba(59, 56, 56, 0.395);
      padding-bottom: 7px;
    width: 100%;
    margin: 0px 8px 0px 8px;

    }
    .cart-1 img{
        width: 85px;
        height: 85px;
    }
.cart-1 div h5 {
    /*    color: #eb2727;#ed2629;*/
        color: #eb2727;
    font-size: 22px;
    font-weight:700;
 
}
    .cart div {
      width: 98% !important;
    }
    
    .box-2{
      display: flex;
      align-items: center;
      justify-content: flex-start;
      text-align: center;
      gap: 5px;
      height:fit-content;
/*      margin-top: 5px;*/
    }
    .box-2 img{
      width: 30px;
      height: 30px;
    }

        .botton-1 {
            margin-left: 5px;
            margin-right: 5px;
        }
    .box-2 h4{
      font-size: 25px;
      background:#ed2629;
      color: white;
       border: none;
      min-width: 30px;
       margin-top: 6px;
       min-height: 30px;
       text-align: center;
    }
    .box-2 button{
      border: none;
    }
    .img-1{
       width: 16px;
      height: 16px;
      padding: 4px;
      border: 2px solid black;
    }
.img-edit {
    margin-right: 12px;
    border: 0px solid black;
}
    .box-3{
      display: flex;
       justify-content: space-between;
     width:100%;

    } 
    .box-3 p{
      margin-top: 6px;
      font-size:larger;
    }
    .details{
      margin: 0px 50px 0px 50px;
      
    }
    .details div{
      display: flex;
      justify-content: space-between;
      margin-bottom:-10px;
    }

        .details .ordertotal {
            font-weight: 500;
            font-size: larger;
            margin-top: 5px;
            border-top: rgba(128, 128, 128, 0.438) 1px solid;
/*            border-top: 1px solid black;*/
        }


        .box-4 {
            background: #079839;
            margin: 15px;
            padding: 8px;
            color: white;
        }
    .box-4 p {
      line-height: 25px;
      padding: 5px 25px 0px 25px;
      font-size:20px;
    }
    /* collection section start from here */
    .collection-section{
      background:#079839;
       margin: 40px 0px;
      padding:  40px 20px;
      width: 100%;
    }
    .date-1{
      display: flex;
    }
    .date-1 h2{
        font-size: 33px ;
        color: rgba(255, 255, 255, 0.636);
    }
    .date-1 div{
      height: 2px;
      width:100%;
      background-color: rgba(255, 255, 255, 0.636);
      margin-top: 31px;
      margin-left: -3px;

    }
    .collection-section p{
      background:#cccccc52;
      margin-bottom: 10px;
      font-size: 23px;
      padding-left: 15px;
      padding-top: 10px;
      padding-bottom: 10px;
    }
    /* payment section start from here */
     .payment-section {
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 10px;
  
     }
    .payment-section span{
      display: flex;
   
    }
    .img-3{
      justify-content: space-between;
          width: 240px;
        color: #079839;
        padding: 8px 18px;
        background-color:#ddd9cd95 ;
        cursor: pointer;
        
         
    }
  
    .img-3 p{
      font-weight: 600;
    }
    .img-4 p{
      font-weight: 600;
      color: white;
    }
    .img-4 {
      justify-content: space-between;
         width: 240px;
         
        background-color: #079839;
        cursor: pointer;
        height: 40px;
        align-items: center;
        padding: 8px 14px;
        display: flex;
        
    }
    .payment-section span img{
        width: 20px;
        height: 20px;
    }

.error-box {
    display: flex;
    /*      flex-wrap:wrap;*/
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: auto;
    margin-top: 20px;
    margin-bottom : 20px;
}
    .error-box img{
      width:100%;
      height: 40px;
      z-index: 2;
    }
    .error-box p {
        padding: 15px 15px !important; /* Increased left padding for a clean look */
        font-size: 14px !important; /* Slightly larger for readability */
        margin-left: 0 !important; /* Reset this to 0 to keep it inside the panel */
        background-color: #f1bc29;
        color: black;
        text-align: left !important; /* Standard text alignment */
        /* Ensure the container behaves as a flexbox to align children */
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center !important;
        width: 100%;
    }
        .error-box p::before {
            content: "⚠️"; /* Unicode warning sign */
            margin-right: 10px;
            font-size: 16px;
            color:red;
        }
    /* checkout section start from here */
    .checkout{
      background-image: url(./Assets/vector1.png);
      background-position: center;
      background-size: cover;
      
      background-repeat: repeat-x;
      padding:    25px;
      color: white;
    }
    .checkout-section{
      background:#fff;
      
      padding-bottom: 10px;
      width: 100%;
    }
    .input-section{
      display: flex;
      flex-direction: column;
      background-color: #f5f5f5!important;
      padding: 30px;
      gap: 15px;
      margin-top:10px;
/*      width:80%; */
    }

        .input-section input {
/*            background-color: #ddd9cd95;*/
            background-color: #fff;
            border: none;
            height: 50px;
            padding-left: 20px;
        }
   .input-section input:focus{
     border: #079839 2px solid;
  outline: none;
   }
  .order-type-1{
      margin-top:-5px;
    margin-bottom: -8px;
  }
  .input-section select{
    background-color:#fff;
    border: none;
    height: 50px;
    padding-left: 20px;
    padding-right: 20px;
    color: #978787;
    
  }
  .input-section select:focus{
     border: #079839 2px solid;
    outline: none;
  }

.container {
/*    background: #ddd9cd95;*/
    padding: 25px;
    margin: 8px;
    width: 95% !important;
}

  .order-type{
    display: flex;
    justify-content: center;
    justify-items:center; 
    gap: 20px;
  }
  /* Deliver button hover */
   .order-type .div-1:hover{
    background: #079839;
    color: white;
   }
   /* Collection button hover */
    .order-type .div-2:hover{
    background: #079839;
    color: white;
   }
   /* deliver button */
    .order-type .div-1 {
        background: #079839;
        border: solid 2px #079839;
        width: 240px;
        height: 50px;
        text-align: center;
        padding-top: 10px;
        color: #ffffff;
        font-weight: 600;
        cursor: pointer;
    }
  /* collection button */
    .order-type .div-2 {
        /*background: transparent;
        border: solid 1px #079839;
        width: 240px;
        height: 50px;
        text-align: center;
        padding-top: 5px;*/
        color: #079839;
        /*font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;*/ /* smooth hover effect */
        display: flex;
        width: 240px;
        border: solid 1px #079839;
        text-decoration: none;
        align-items: center;
        background: transparent;
        padding: 10px 10px;
        justify-content: space-between;
        cursor: pointer;
    }
  .div-3{
    display: flex;
    flex-direction:column;
    gap:5px;
    justify-content: center;
    margin-top:10px;
  }

    .div-3 p {
        font-size: 16px;
        padding: 10px 10px;
        background: white;
        /*      margin-left: -20px;*/
        text-align: center;
        border: 0px rgba(255, 0, 0, 0.3) solid;
        color: red;
        font-weight:500;
        margin-bottom:7px;
    }
  /* submit button */
.button-1 {
    background-color: #ed2629;
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    margin: auto;
    height: 50px;
    color: white;
    /*    margin-top: 0px;*/
    border: none;
    cursor: pointer;
}
  /* confirmation page start from here */
  .confir-hero{
     
    padding: 80px;
    background:#efe9db;
  }
  .confir-hero div{
    background-color: #079839;
    height: 2px;
    width: 40px;
  }
  .span-4{
          font-family:"Cinzel Decorative", serif !important;

  }
.confir-hero h1 {
    font-size: 35px;
    color: #ed2629;
    font-family: "Montserrat", sans-serif;
}
  .confir-hero p{
    font-size: 30px;
    color: rgb(26, 23, 23);
    font-weight: 300;
  }
  .box-5{
    text-align: center;
    margin: 80px 0px;
    font-size: 25px;

  }
  .box-5 h4{
    margin: 50px 0px;
    color: #079839;
    font-weight: 500;
  }
  .box-6{
    background-color:#f5f5f5;
    padding: 50px 0px 25px 0px;
    margin: 60px;
    text-align: center;
    
  }
  .box-6 h5{
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 12px;
  }
  .box-6 p{
    margin-bottom: 24px;
    font-size: 15px;
  }
   /* pop-up select option start from here */
.pop-up{
   width: 600px;
   
   margin: auto;
   margin-top: 200px;
   background: #fff;
   padding-bottom: 18px;

}
.option-select h1{
  text-align: center;
}
.option-select{
        background-image: url(./Assets/vector2.png);
      background-position: center;
      background-size: contain;
      background-repeat: repeat-x;
      padding:    14px 30px 30px 40px;
      color: white;
}

.container-1{
   background-color: rgba(0, 0, 0, 0.232); /* black with 50% transparency */

  height: 100%;
}
.option-select h1{
  font-size: 25px;
  font-weight: 300;
}
.card-text-2{
/* margin: 10px 40px;*/
 border-bottom: 1px rgba(128, 128, 128, 0.438) solid;
 padding-bottom: 5px;
}
    .card-text-2 div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: -10px 0px 2px 0px;
    }
.card-text-2 div button {
   background: #ed2629;
   width: 92px;
   color: white;
   border: none;
   cursor: pointer;
   height: 30px;
}
.card-text-2 h5{
  color: #ed2629;
  font-size: 18px;
}
.card-text-2 p{
  font-weight: 300;
}

.btn-1 {
    background: #079839;
    width: 60%;
    height: 50px;
    border: none;
    color: white;
    font-weight: 500;
    font-size: 20px;
    margin: 0px 25px 0px 25px;
}
.btn-box{
  display: flex;
  justify-content: center;
}
.btn-box button{
  cursor: pointer;
}
/* popup special start from here */
.special-popup{
 background-color: rgba(0, 0, 0, 0.2); /* black with 50% transparency */

}
.popup-container{
  width: 50%;
  margin: auto;
  background: #fff;
  margin-top: 150px;
}
.hearder-section-1{
  background-color: #80ace548;
  margin-bottom: 15px;
}
.header-text{
  display: flex;
  justify-content: space-between;
  color: #079839;
  font-weight: 500;
  padding: 15px 30px;
}

.header{
  background-image: url(./Assets/vector2.png);
}
.card-3{
  padding: 8px 30px 5px 30px;
  
}
.card-3 p{
  color: #ed2629;
  font-weight: 500;
  margin-bottom: 7px;
}
.card-3 select{
  width: 100%;
  height: 35px;
   color: gray;
   padding: 0px 10px;
}
.card-3 select:focus{
  border:#079839 solid 2px;
  outline: none;
}
 .container-3{
  background:#fff;
  padding-bottom: 20px;

 }
 .cont-4{
    display: flex;
  justify-content: center;
  margin: 45px 0px 15px 0px !important;
 }
 .cont-4 button{
  background:#ed2629;
 cursor: pointer;
  height: 40px;
  color: white;
  border: none;
   width: 240px;
   
 }
 .btn-3{
  background: #80ace548;
   display: flex;
   justify-content: center;
   padding: 20px 0px;
 }
 .btn-3 button {
  background :#079839;
cursor: pointer;
 width: 240px;
  height: 50px;
  margin: auto;
  border: none;
  color: white;
 }
/* some css for book table page   */
 select {
  appearance: none; 
  -webkit-appearance: none;  
  -moz-appearance: none; 
  background: url('/Assets/arrow-down-sign-to-navigate.png') no-repeat  right 1.5rem center;
  background-size: 1em;
  padding: 0.5rem 3rem 0.5rem 1rem; 
}

#date-select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

   background-size: 1rem;

  padding: 0.5rem 1.5rem 0.5rem 1rem; 
}
#time-select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

   background-size: 1rem;

  padding: 0.5rem 1.5rem 0.5rem 1rem; 
}
input[type="time"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}
 
.details-1{
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: -5px;
}
.note{
  height: 80px !important;
 
   
}
.payment-m {
    margin-top: 1px;
    margin-bottom: 1px;
    padding-bottom:8px;
    font-weight: 600;
    border-bottom: 1px rgba(128, 128, 128, 0.438) solid;
}


/*this is for orderpage footer */

/* General Footer Styling */
.site-footer {
    background: linear-gradient(rgba(0, 0, 0, 0.918), rgba(0, 0, 0, 0.88));
    color: #fff;
    font-family: "Montserrat", sans-serif;
    padding: 20px 15px;
    text-align: center;
}

/* Row 1: Logo + Tagline */
.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 120px;
    margin-bottom: 10px;
}

.footer-text {
    font-size: 14px;
}

/* Row 2: 4 Columns (Desktop) */
.footer-middle {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0;
}


/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.social-img {
    width: 60px;
    height: 60px;
    border-radius: 8px; /* optional rounded edges */
    transition: transform 0.2s, opacity 0.3s;
}

    .social-img:hover {
        transform: scale(1.1);
        opacity: 0.8;
    }

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

    .footer-links a {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        transition: font-weight 0.2s;
    }

        .footer-links a:hover {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
        }

/* App Store Buttons */
.app-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.app-btn {
    max-width: 200px;
}

/* Row 3: Copyright */
.footer-bottom {
    margin-top: 15px;
    font-size: 13px;
    border-top:1px solid white;
    padding-top:7px;
}
    .footer-bottom p{
        font-size:small;
        text-decoration:none ;
        color:white;
    }

    .footer-bottom a {
        font-size: small;
        text-decoration: none;
        color: white;
    }

    .footer-bottom a:hover {
        font-size: small;
        text-decoration: none;
        color: white;
        font-weight:600;
    }

    /* Responsive Layout: Mobile */
    @media (max-width: 768px) 
    {
        .footer-middle {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    /* Social goes first */
    .social-icons {
        order: 1;
    }

    /* Links grouped in the middle, side by side */
    .footer-links {
        order: 2;
    }

    .footer-links-row {
        display: flex;
        justify-content: center;
        gap: 40px;
    }

    /* Apps at bottom */
    .app-icons {
        order: 3;
        flex-direction: column; /* keep side by side */
        gap: 15px;
    }
}

