/* ----------------------------------------Navigation Bar------------------------------------------------------------------------ */
body, h1, h2, h3, p, img, nav, a {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}


.topnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: Georgia, 'Times New Roman', Times, serif;
}


.topnav .logo {
    height: 80px;
    width: 100px;
}


.topnav .tagline {
    font-size: 27px;
    color: #9C6A07;
    margin-left: 20px;
    flex-grow: 1;
}

.nav-links {
    display: flex;
    gap: 15px;
}


.nav-links a {
    color: #C68507;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

#logBtn {
    background-color: #B2700C;
    color: #ffffff;
    border-radius: 10px;
    border: 0px solid #B2700C; 

}

.addtocartbtnsection{
  margin-top:10px;
  margin-bottom: 20px;
  margin-left: 1410px;
  position: fixed;
  
}
#addcart{
  background-color: #eae3a9;
    color: #000000;
    border-radius: 10px;
    border: 0px solid #afb20c; 
    margin-right: 10px;
}

#addcart:hover {
  background-color: #e2d375;
    color: #ffffff;
    border-radius: 10px;
    border: 0px solid #B2700C; 

}
#logBtn:hover {
    background-color: #ebb059;
    color: #000000;
    border-radius: 10px;
    border: 0px solid #B2700C; 
}



#viewCart{
  background-color: #B2700C;
  color: #ffffff;
  border-radius: 10px;
  border: 0px solid #B2700C; 
  margin-top: 100px;
  margin-bottom: 200px;

}
#viewCart:hover {
  background-color: #ebb059;
  color: #000000;
  border-radius: 10px;
  border: 0px solid #B2700C; 
}


.nav-links a:hover {
    color: black;
    background-color: #f0f0f0;
}

.nav-links a.active {
    color: rgb(40, 36, 1);
    font-weight: bold;
}

/* ---------------------------------------------   Banner Side   ---------------------------------------------------------------------- */

/* Banner container */
.banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;  
    padding-bottom: 40px;
    margin-top: 30px;
    margin-bottom: 20px;
}

/* Banner image */
.banner-img {
    width: 580px;
    height: 580px;
    object-fit: cover;
    margin-left: 120px;
    border-radius: 10px; 
    border: 3px solid #838300; 
    border-radius: 10px; 
    
}

/* Banner text container */
.bannertext {
    color: #CF8B06;
    text-align: left;
    padding-left: 140px;
    flex: 1;
}

/* Banner title */
.bannertitle {
    font-size: 100px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    cursor: alias;
    
}

/* Banner subtitle */
.bannersub {
    font-size: 30px;
    margin-bottom: 20px;
    padding-left: 80px;
    cursor: alias;
}

/* Banner button */
.bannerbtn {
    font-size: 20px;
    color: #ffffff;
    background-color: #B2700C;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;

    margin-left: 180px;
    margin-top: 20px;
}

.bannerbtn:hover {
    background-color: #944a0c;
}

/* -----------------------------------------------Hot Deals---------------------------------------------------------------------------- */
.hotDeals{
    background-color: #eae3a9;
    padding-top: 10px;
    padding-bottom: 0px;
    display: flex;
    gap: 15px;
}

.hotDealsTitle{
    font-size: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #724d08;
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding-left: 80px;
}

/* ----------------------------------------------Item Cards------------------------------------------ */
.container {
    margin-top: 25px;
    margin-left: 100px;
    margin-bottom: 55px;
    display: flex; /* Use flexbox to align items horizontally */
    gap: 20px; /* Space between item cards */
}

.item-card {
    border: 3px solid #7e723c; /* Border color to match your example */
    border-radius: 8px; /* Optional: adding rounded corners */
    padding: 15px; /* Optional: adding padding inside the border */
    display: flex; /* Flex display to handle content within */
    flex-direction: column; /* Ensure vertical stacking of content within card */
    align-items: center; /* Center align items horizontally */
    width: 300px; /* Adjust the width as needed */
    box-sizing: border-box; /* Ensure padding and border are included in the width */
    margin-right: 10px;
}

.product-title {
    margin: 15px 0; /* Margin to add spacing vertically */
    font-size: 20px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #9C6A07;
    text-align: center; /* Center align the title text */
}

.product-price {
    font-size: 15px;
    margin-top: 10px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center; /* Center align the price text */
}

.add-to-cart-btn {
    background-color: #B2700C;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    margin-top: 10px; /* Added some margin-top for spacing */
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.25s ease;
}

.add-to-cart-btn:hover {
    background-color: #e69f35;
    color: #ffffff;
}

#offerimg{
  width: 1000px;
  margin-top: 5px;
  margin-left: 250px;
  margin-bottom: 15px;
}

.searchBar{
  margin-top: 40px;
  margin-left: 560px;
}
#searchBar {
  padding: 10px;
  border: 2px solid #d3cd15;
  border-radius: 25px 0 0 25px;
  width: 300px; /* Adjust the width as needed */
  font-size: 1em;
  outline: none;
  transition: all 0.3s ease;
}

#searchBar:focus {
  border-color: #d3b300;
  box-shadow: 0 0 10px rgba(228, 213, 55, 0.5);
}

#searchBtn {
  padding: 10px 20px;
  background-color: #b0a918;
  color: white;
  border: 2px solid #9a9a11;
  border-radius: 0 25px 25px 0;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

#searchBtn:hover {
  background-color: #d0ca12;
  border-color: #d0ca12;
  color: #000000;
}



table {
  width: 90%;
  border: 1px solid #000000;
  border-collapse: collapse;
  margin-top: 40px;
  margin-left: 80px;
  padding-right: 10px;
}

th, td {
  border: 1px solid #000000;
  padding: 8px;
  text-align: center;
}

th {
  background-color: #eae3a9;
  color: #333;
  text-align: center;
  padding-left: 82px;
}

tr:nth-child(even) {
  background-color: #f9f9f9;
}

tr:hover {
  background-color: #f1f1f1;
}

/* Footer styles */
.site-footer {
  background-color: #f3a531;
  padding: 5px 0 2px;
  font-size: 15px;
  line-height: 25px;
  color: #000000;
  margin-top: 130px; /* Ensures footer is pushed to the bottom */
}

.site-footerReports {
  background-color: #f3a531;
  padding: 5px 0 2px;
  font-size: 15px;
  line-height: 25px;
  color: #000000;
  margin-top: 210px; /* Ensures footer is pushed to the bottom */
}

.site-footerlast {
  background-color: #f3a531;
  padding: 5px 0 2px;
  font-size: 15px;
  line-height: 25px;
  color: #000000;
  margin-top: 20px; /* Ensures footer is pushed to the bottom */
}

.site-footer hr {
  border-top-color: #000000;
  opacity: 0.5;
}

.site-footer hr.small {
  margin: 20px 0;
}

.site-footer h6 {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 2px;
}

.site-footer a {
  color: #000000;
}

.site-footer a:hover {
  color: #ffffff;
  text-decoration: none;
}

.footer-links {
  padding-left: 0;
  list-style: none;
}

.footer-links li {
  display: block;
}

.footer-links a {
  color: #737373;
}

.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
  color: #3366cc;
  text-decoration: none;
}

.footer-links.inline li {
  display: inline-block;
}

.site-footer .social-icons {
  text-align: right;
}

.site-footer .social-icons a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-left: 6px;
  margin-right: 0;
  border-radius: 100%;
  background-color: #ffffff;
}

@media (max-width: 991px) {
  .site-footer [class^=col-] {
      margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .site-footer {
      padding-bottom: 0;
  }
  .site-footer .copyright-text,
  .site-footer .social-icons {
      text-align: center;
  }
}

/* ---------------------------------Checkout----------------------------------------------------------- */
.mainCart{
  display: flex; /* Use flexbox to align items horizontally */
  gap: 10px; /* Space between item cards */
}
.cartPage{
  margin-top: 50px;
  width: 45%;
  margin-left: 4%;
  background-color: #ede9c1;
  padding: 35px;
  color: #494901;
  border-radius: 2%;
  border-color: #000000;
  border: 12px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  
}

.cusDetailsHead{
  margin-bottom: 45px;
}



.orderttable{
  width: 90%;
  padding: 50px;
  margin-bottom: 20px;
}
.orderdetailsPage{
  margin-top: 50px;
  width: 45%;
  margin-left: 2%;
  background-color: #ede9c1;
  padding: 35px;
  color: #494901;
  border-radius: 2%;
  border-color: #000000;
  border: 12px;
  font-family: Georgia, 'Times New Roman', Times, serif;
}
.form-controll {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  background-color: #fbffde;
  color: #495057;
  cursor: not-allowed;
}
.orderbtns{
  margin-top: 40px;
  margin-left: 75%;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.placeOrder{
    background-color: #B2700C;
    color: #ffffff;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    border-radius: 10px;
    border: 10px solid #B2700C; 
    margin-right: 5px;
    font-size: 18px;
}
.back{
  background-color: #ff0000;
    color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #000000; 
    margin-right: 5px;
    font-size: 18px;
}
.placeOrder:hover {
  background-color: #d7942f;
  color: #000000;
  border-radius: 10px;
  border: 10px solid #d7942f; 
  cursor: pointer;
}
.back:hover {
  background-color: #f18282;
  color: #000000;
  border-radius: 10px;
  border: 1px solid #e1e0e0; 
  cursor: pointer;
}
.loginAdmin{
  margin-top: 0px;
  margin-left: 20%;
  font-size: 35px;
  font-family:Georgia, 'Times New Roman', Times, serif;
  color: #81520c;
}
.loginSec{
  background-color: #edf3bd;
  padding: 24px;
  width: 40%;
  margin-left: 30%;
  margin-top: 40px;
  border: 2px solid #000000;
  border-radius: 20px;
}
.mb-3{
  width: 88%;
  margin-top: 45px;
  margin-left: 5%;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  padding-bottom: 20px;
  padding-top: 12px;
}
.logbtns{
  margin-top: 40px;
  margin-left: 80%;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.remBtn{
  background-color: #b2300c;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    margin-top: 10px; /* Added some margin-top for spacing */
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.25s ease;
}
.remBtn:hover{
  background-color: #ca5d5d;
    color: #000000;
    border: none;
    padding: 10px 20px;
    margin-top: 10px; /* Added some margin-top for spacing */
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.25s ease;
}
.addNewbtn1{
  background-color: #a8a005;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.25s ease;
    margin-top: 10px;
    margin-left: 930%;
  
}
.addNewbtn2{
  background-color: #a8a005;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.25s ease;
    margin-top: 10px;
    margin-left: 860%;
  
}
.addNewbtn3{
  background-color: #a8a005;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.25s ease;
    margin-top: 10px;
    margin-left: 980%;
  
}
.addNewbtn4{
  background-color: #a8a005;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.25s ease;
    margin-top: 10px;
    margin-left: 970%;
  
}
.addNewbtn5{
  background-color: #a8a005;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.25s ease;
    margin-top: 10px;
    margin-left: 930%;
  
}
.addNewbtn6{
  background-color: #a8a005;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.25s ease;
    margin-top: 10px;
    margin-left: 890%;
  
}
.addNewbtn7{
  background-color: #a8a005;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.25s ease;
    margin-top: 10px;
    margin-left: 950%;
  
}
.addNewbtn8{
  background-color: #a8a005;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.25s ease;
    margin-top: 10px;
    margin-left: 920%;
  
}
.goUp{
  margin-top:0px;
  margin-bottom: 20px;
  margin-left: 1410px;
 
}
#upBtn{
  background-color: #dddddd;
    color: #000000;
    border-radius: 10px;
    border: 0px solid #000000; 
    margin-right: 10px;
    cursor: pointer;
}

#addItem{
  margin-bottom: 30px;
}
#addItemtext{
  margin-left: 170px;
}

#categoryinAddNew{
  margin-top:15px;
}
.printbtn{
  margin-top: 30px;
  margin-left: 47%;
  background-color: #efc108;
    color: #000000;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.25s ease;
    width: 180px;
}

/* Style the quantity select dropdown */
.quantity-select {
  padding: 3px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f7e9b8;
  cursor: pointer;
  margin-top: 10px;
}

/* Style the options within the select */
.quantity-select option {
  font-size: 16px;
  padding: 5px;
}

/* Add hover effect to the dropdown */
.quantity-select:hover {
  border-color: #000000;
}

/* Add focus effect to the dropdown */
.quantity-select:focus {
  outline: none;
  border-color: #000000;
  box-shadow: 0 0 5px rgb(0, 189, 157);
}


/* Mobile Styles */
@media (max-width: 991px) {
  .topnav {
    padding: 10px 15px;
    font-size: 14px;
  }

  .topnav .logo {
    height: 60px;
    width: 80px;
  }

  .topnav .tagline {
    font-size: 22px;
    margin-left: 15px;
  }

  .nav-links a {
    font-size: 18px;
    padding: 10px 12px;
  }

  #logBtn, #addcart, #viewCart {
    font-size: 16px;
    padding: 8px 16px;
  }

  #logBtn:hover, #addcart:hover, #viewCart:hover {
    font-size: 16px;
  }

  .banner {
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .banner-img {
    width: 100%;
    height: auto;
    margin-left: 0;
  }

  .bannertext {
    padding-left: 0;
    text-align: center;
  }

  .bannertitle {
    font-size: 60px;
  }

  .bannersub {
    font-size: 24px;
  }

  .bannerbtn {
    font-size: 18px;
    margin-left: 0;
    margin-top: 15px;
  }

  .hotDeals {
    flex-direction: column;
    padding-top: 10px;
  }

  .hotDealsTitle {
    font-size: 30px;
    padding-left: 0;
  }

  .container {
    flex-direction: column;
    margin-left: 0;
    margin-top: 20px;
  }

  .item-card {
    width: 100%;
    margin-right: 0;
  }

  .product-title, .product-price {
    font-size: 18px;
  }

  .add-to-cart-btn {
    font-size: 16px;
    padding: 8px 16px;
  }

  #offerimg {
    width: 100%;
    margin-left: 0;
  }

  .searchBar {
    margin-left: 0;
  }

  #searchBar {
    width: calc(100% - 80px);
    font-size: 0.9em;
  }

  #searchBtn {
    padding: 8px 16px;
  }

  table {
    width: 100%;
    margin-left: 0;
  }

  .site-footer {
    font-size: 13px;
    padding: 10px 0;
  }

  .site-footer h6 {
    font-size: 14px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .mainCart, .cartPage, .orderdetailsPage {
    width: 100%;
    margin-left: 0;
  }

  .cartPage, .orderdetailsPage {
    padding: 20px;
  }

  .form-controll {
    padding: 8px;
    font-size: 0.9em;
  }

  .placeOrder, .back, .printbtn {
    font-size: 16px;
    padding: 8px 16px;
  }

  .loginAdmin {
    font-size: 30px;
    margin-left: 0;
  }

  .loginSec {
    width: 90%;
    margin-left: 5%;
  }

  .mb-3 {
    width: 90%;
    margin-left: 5%;
  }

  .logbtns {
    margin-left: 0;
  }

  .remBtn, .addNewbtn1, .addNewbtn2, .addNewbtn3, .addNewbtn4, .addNewbtn5, .addNewbtn6, .addNewbtn7, .addNewbtn8 {
    font-size: 16px;
    padding: 8px 16px;
    margin-left: 0;
  }

  #upBtn {
    font-size: 16px;
    padding: 8px 16px;
  }

  #addItem, #addItemtext, #categoryinAddNew {
    margin-left: 0;
  }

  .quantity-select {
    width: 100%;
    padding: 8px;
  }
}



