/* --- Enhanced Cart and Checkout Styles --- */
#cartBox {
  position: fixed;
  top: 60px;
  right: 40px;
  width: 370px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  z-index: 10000;
  padding: 0 0 18px 0;
  display: none;
  animation: cartFadeIn 0.3s;
  left: auto;
  bottom: auto;
  font-family: 'Segoe UI', Arial, sans-serif;
  border: 1.5px solid #e5e5e5;
}
.cart-header {
  background: linear-gradient(90deg, #1a5d2b, #e67e22);
  color: #fff;
  padding: 18px 24px;
  border-radius: 18px 18px 0 0;
  font-size: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  letter-spacing: 0.5px;
}
.cart-items {
  max-height: 260px;
  overflow-y: auto;
  padding: 14px 24px 0 24px;
}
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  border-bottom: 1px solid #f3f3f3;
  padding-bottom: 10px;
}
.cart-item-title {
  font-weight: 500;
  color: #1a5d2b;
  flex: 1;
  font-size: 1.05rem;
}
.cart-qty {
  display: flex;
  align-items: center;
  gap: 7px;
}
.cart-inc, .cart-dec {
  background: #e67e22;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 1.15rem;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.cart-inc:hover, .cart-dec:hover {
  background: #1a5d2b;
}
.cart-item-price {
  font-weight: bold;
  color: #e67e22;
  margin-left: 12px;
  font-size: 1.05rem;
}
.cart-footer {
  padding: 14px 24px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.08rem;
}
#checkoutBtn {
  background: linear-gradient(90deg, #1a5d2b, #e67e22);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 10px 22px;
  font-size: 1.08rem;
  cursor: pointer;
  transition: background 0.2s;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
#checkoutBtn:hover {
  background: linear-gradient(90deg, #e67e22, #1a5d2b);
}
.cart-empty {
  text-align: center;
  color: #888;
  padding: 36px 0;
  font-size: 1.08rem;
}
.qty-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  justify-content: center;
}
.qty-controls .dec-btn, .qty-controls .inc-btn {
  background: #e67e22;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 1.15rem;
  cursor: pointer;
  transition: background 0.2s;
}
.qty-controls .dec-btn:hover, .qty-controls .inc-btn:hover {
  background: #1a5d2b;
}
.qty-controls .qty-num {
  font-size: 1.15rem;
  font-weight: bold;
  color: #1a5d2b;
  min-width: 26px;
  text-align: center;
}
#checkoutForm {
  background: #f8f8f8;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  margin-top: 0;
  padding: 20px 24px 18px 24px !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#checkoutForm input, #checkoutForm textarea {
  border: 1.5px solid #e0e0e0;
  border-radius: 7px;
  padding: 10px 12px;
  font-size: 1.05rem;
  font-family: inherit;
  background: #fff;
  transition: border 0.2s;
}
#checkoutForm input:focus, #checkoutForm textarea:focus {
  border: 1.5px solid #e67e22;
  outline: none;
}
#sendOrderBtn {
  background: linear-gradient(90deg, #25d366, #43a047);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 12px 0;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
#sendOrderBtn:hover {
  background: linear-gradient(90deg, #43a047, #25d366);
}
#cancelCheckout {
  background: #fff;
  color: #e53935;
  border: 1.5px solid #e53935;
  border-radius: 9px;
  padding: 10px 0;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s, color 0.2s;
}
#cancelCheckout:hover {
  background: #e53935;
  color: #fff;
}
/* --- Cart and Quantity Controls Styles --- */
#floatingCartBtn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: linear-gradient(90deg, #1a5d2b, #e67e22);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 28px;
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
  cursor: pointer;
  z-index: 9999;
  transition: background 0.2s;
}
#floatingCartBtn:hover {
  background: linear-gradient(90deg, #e67e22, #1a5d2b);
}
#cartBox {
  position: fixed;
  top: 60px;
  right: 40px;
  width: 350px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  z-index: 10000;
  padding: 0 0 16px 0;
  display: none;
  animation: cartFadeIn 0.3s;
  /* Allow moving by JS */
  left: auto;
  bottom: auto;
}
@keyframes cartFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.cart-header {
  background: linear-gradient(90deg, #1a5d2b, #e67e22);
  color: #fff;
  padding: 16px 20px;
  border-radius: 16px 16px 0 0;
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-items {
  max-height: 260px;
  overflow-y: auto;
  padding: 12px 20px 0 20px;
}
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  border-bottom: 1px solid #f3f3f3;
  padding-bottom: 8px;
}
.cart-item-title {
  font-weight: 500;
  color: #1a5d2b;
  flex: 1;
}
.cart-qty {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cart-inc, .cart-dec {
  background: #e67e22;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.cart-inc:hover, .cart-dec:hover {
  background: #1a5d2b;
}
.cart-item-price {
  font-weight: bold;
  color: #e67e22;
  margin-left: 10px;
}
.cart-footer {
  padding: 12px 20px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#checkoutBtn {
  background: #1a5d2b;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
#checkoutBtn:hover {
  background: #e67e22;
}
.cart-empty {
  text-align: center;
  color: #888;
  padding: 30px 0;
}
.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  justify-content: center;
}
.qty-controls .dec-btn, .qty-controls .inc-btn {
  background: #e67e22;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.qty-controls .dec-btn:hover, .qty-controls .inc-btn:hover {
  background: #1a5d2b;
}
.qty-controls .qty-num {
  font-size: 1.1rem;
  font-weight: bold;
  color: #1a5d2b;
  min-width: 24px;
  text-align: center;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #menu-button {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 1;
  float: left;
}

#cssmenu:after,
#cssmenu>ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;

}

#cssmenu #menu-button {
  display: none;
}

#cssmenu {
  font-size: 15px;
  background: #;
}

#cssmenu.align-center>ul {
  font-size: 0;
  text-align: center;
}

#cssmenu.align-center>ul>li {
  display: inline-block;
  float: none;
}

#cssmenu.align-center ul ul {
  text-align: left;
}

#cssmenu.align-right>ul>li {
  float: right;
}

#cssmenu>ul>li>a {
  font-size: 15px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  text-transform: capitalize;
  font-family: 'Poppins', sans-serif;
  padding: 10px 0px;
  margin: 20px 12px;
}

#cssmenu li:last-child a {}


#cssmenu>ul>li:hover>a,
#cssmenu>ul>li>a:hover {
  color: #000;
  border-bottom: 2px solid #abca3e;
}

#cssmenu>ul>li.active>a {
  color: #000;
  border-bottom: 2px solid #abca3e;
}

#cssmenu>ul>li.has-sub>a {
  padding-right: 4px;
}

#cssmenu>ul>li.has-sub>a:after {
  position: absolute;
  top: 18px;
  right: -11px;
  width: 8px;
  height: 1px;
  display: block;
  background: #000;
  content: '';
}

#cssmenu>ul>li.has-sub>a:before {
  position: absolute;
  top: 14.4px;
  right: -7px;
  display: block;
  width: 0.1px;
  height: 8px;
  background: #000;
  content: '';
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}

#cssmenu>ul>li.has-sub:hover>a:after {
  background: #000;
}

#cssmenu>ul>li.has-sub:hover>a:before {
  top: 23px;
  height: 0;
  background: #fff;
}

#cssmenu ul ul {
  position: absolute;
  left: -9999px;
  top: 65px;
}

#cssmenu.align-right ul ul {
  text-align: right;
}

#cssmenu ul ul li {
  height: 0;
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}

#cssmenu li:hover>ul {
  left: auto;
}

#cssmenu.align-right li:hover>ul {
  left: auto;
  right: 0;
}

#cssmenu li:hover>ul>li {
  height: auto;
}

#cssmenu ul ul ul {
  margin-left: 100%;
  top: 0;
}

#cssmenu.align-right ul ul ul {
  margin-left: 0;
  margin-right: 100%;
}

#cssmenu ul ul li a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 15px;
  width: 240px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  color: #000;
  text-transform: capitalize;
  font-weight: 600;
  background: #f6f6f6;
  line-height: 145%;
}

#cssmenu ul ul li:last-child>a,
#cssmenu ul ul li.last-item>a {
  border-bottom: 0;
}

#cssmenu ul ul li:hover>a,
#cssmenu ul ul li a:hover {
  color: #fff;
  background: #80a450;
}

#cssmenu ul ul li.active>a,
#cssmenu ul ul li a.active {
  color: #fff;
  background: #80a450;
}

#cssmenu ul ul li.has-sub>a:after {
  position: absolute;
  top: 16px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: #dddddd;
  content: '';
}

#cssmenu.align-right ul ul li.has-sub>a:after {
  right: auto;
  left: 11px;
}

#cssmenu ul ul li.has-sub>a:before {
  position: absolute;
  top: 13px;
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: #dddddd;
  content: '';
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}

#cssmenu.align-right ul ul li.has-sub>a:before {
  right: auto;
  left: 14px;
}

#cssmenu ul ul>li.has-sub:hover>a:before {
  top: 17px;
  height: 0;
}


@media only screen and (max-width:1180px) {
  #cssmenu>ul>li>a {
    font-size: 15px;
  }
}

@media only screen and (max-width:1100px) {
  #cssmenu > ul > li > a {
    margin: 20px 7px;
}
}

@media only screen and (max-width:999px) {
  #cssmenu>ul>li>a {
    margin: 20px 10px;
    font-size: 13px;
  }
}


@media all and (max-width: 960px),
only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 960px),
only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 960px),
only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 960px),
only screen and (min-device-pixel-ratio: 2) and (max-width: 960px),
only screen and (min-resolution: 192dpi) and (max-width: 960px),
only screen and (min-resolution: 2dppx) and (max-width: 960px) {
  #cssmenu ul ul {
    top: 0;
  }

  #cssmenu,
  #cssmenu ul,
  #cssmenu ul li,
  #cssmenu ul li a,
  #cssmenu #menu-button {
    float: none;
  }

  #cssmenu>ul>li>a {
    padding: 14px 0px;
    font-size: 14px;
    text-decoration: none;
    color: #fff !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 10px 10px;
    margin: 0;

  }

  #cssmenu>ul>li:hover>a,
  #cssmenu>ul>li>a:hover {
    border: none;
    background-color: #80a450;
    color: #FFFFFF;
  }

  #cssmenu>ul>li.active>a {
    border: none;
    background-color: #86a442;
    color: #FFFFFF;
  }

  #cssmenu>ul>li>a {
    border-right: #a1d37c solid 0px;
  }

  #cssmenu {
    width: 100%;
  }

  #cssmenu ul {
    width: 100%;
    display: none;

  }

  #cssmenu.align-center>ul {
    text-align: left;
  }

  #cssmenu ul li {
    width: 100%;
    border-top: 1px solid rgba(120, 120, 120, 0.2);

  }

  #cssmenu ul ul li,
  #cssmenu li:hover>ul>li {
    height: auto;
  }

  #cssmenu ul li a,
  #cssmenu ul ul li a {
    width: 100%;
    border-bottom: 0;
  }

  #cssmenu>ul>li {
    float: none;
  }

  #cssmenu ul ul li a {
    padding-left: 25px;
  }

  #cssmenu ul ul ul li a {
    padding-left: 35px;
  }

  #cssmenu ul ul li a {
    color: #fff;
    background: none;
    font-size: 14px;
    font-weight: 500;
  }

  #cssmenu ul ul li:hover>a,
  #cssmenu ul ul li.active>a {
    color: #ffffff;
    background: #80a450;

  }

  #cssmenu ul ul,
  #cssmenu ul ul ul,
  #cssmenu.align-right ul ul {
    position: relative;
    left: 0;
    width: 100%;
    margin: 0;
    text-align: left;
  }

  #cssmenu>ul>li.has-sub>a:after,
  #cssmenu>ul>li.has-sub>a:before,
  #cssmenu ul ul>li.has-sub>a:after,
  #cssmenu ul ul>li.has-sub>a:before {
    display: none;
  }

  #cssmenu #menu-button {
    display: block;
    padding: 13px;
    color: #fff;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
  }

  #cssmenu #menu-button::after {
    display: block;
    content: '';
    position: absolute;
    height: 14px;
    width: 22px;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    right: 25px;
    top: 15px;
  }

  #cssmenu #menu-button::before {
    display: block;
    content: '';
    position: absolute;
    height: 3px;
    width: 22px;
    border-top: 2px solid #fff;
    right: 25px;
    top: 21px;
  }

  #cssmenu #menu-button.menu-opened:after {
    top: 21px;
    border: 0;
    height: 2px;
    width: 15px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  #cssmenu #menu-button.menu-opened:before {
    top: 21px;
    background: #fff;
    width: 15px;
    height: 0px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  #cssmenu .submenu-button {
    position: absolute;
    z-index: 99;
    right: 0;
    top: 0;
    display: block;
    border-left: 0px solid rgba(120, 120, 120, 0.2);
    height: 34px;
    width: 46px;
    cursor: pointer;

  }

  #cssmenu .submenu-button.submenu-opened {
    background: #80a450;
  }

  #cssmenu ul ul .submenu-button {
    height: 34px;
    width: 34px;
  }

  #cssmenu .submenu-button:after {
    position: absolute;
    top: 18px;
    right: 19px;
    width: 8px;
    height: 2px;
    display: block;
    background: #fff;
    content: '';
  }

  #cssmenu ul ul .submenu-button:after {
    top: 15px;
    right: 13px;
  }

  #cssmenu .submenu-button.submenu-opened:after {
    background: #ffffff;
  }

  #cssmenu .submenu-button:before {
    position: absolute;
    top: 15px;
    right: 22px;
    display: block;
    width: 2px;
    height: 8px;
    background: #fff;
    content: '';
  }

  #cssmenu ul ul .submenu-button:before {
    top: 12px;
    right: 16px;
  }

  #cssmenu .submenu-button.submenu-opened:before {
    display: none;
  }
}