* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 200vh;
  overflow-x: hidden;
  font-family: "Josefin Sans", sans-serif;
}

body::-webkit-scrollbar {
  display: none;
}
.hc-navbar {
  display: none;
}
 .hc-drawer{
  display: none;
 }
.whatsapp-float {
  position: fixed;
  bottom: 130px;
  right: 5px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #088d0d;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  cursor: pointer;
  animation: bounce 2s infinite;
  transition: transform 0.2s;
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: scale(1.2);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}



.navbar{
  display: flex;
    height: 120px;
    width: 100%;
    padding: 10px;
    background-color: rgb(17,24,39);
}
.subnavbar{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo{
    overflow: hidden;
    height: 100%;
    width: 30%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content:center;
}
.logo img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.linkings{
    height: 100%;
    width: 70%;
    /* background-color: chocolate; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.linkings a{
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: 500;
    margin: 0 35px;
}
.linkings a:hover{
    color: rgb(216,159,30);
    transition: 0.3s;
}
.board{
    height: 390px;
    width: 100%;
    /* background-color: blueviolet; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.subboard{
    height: 80%;
    width: 75%;
    background-color: rgb(245,217,104);
    border: 9px solid rgb(17,24,39);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    padding: 20px;
}
.subboard h2{
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    margin: 10px 0;
}
 /* Fixed Cart Button */
    .cart-btn {
      position: fixed;
      /* bottom: 20px; */
      top: 180px;
      right: 0px;
      width: 60px;
      height: 60px;
      background: #fbbf24; /* yellow */
      color: white;
      border-radius: 5px 0px 0px 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 26px;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      animation: bounce 2s infinite;
      z-index: 9999;
    }

    /* Badge (Count) */
    .cart-btn .count {
      position: absolute;
      top: -15px;
      left: -12px;
      background: #fff;
      color: #000;
      font-size: 16px;
      font-weight: bold;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      border: 3px solid #fbbf24;
      align-items: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

    /* Jumping animation */
    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      }
      40% {
        transform: translateY(-12px);
      }
      60% {
        transform: translateY(-6px);
      }
    }

     .diwali-alert {
    background: #ffffff;
    padding: 12px 16px;
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: red;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }

  .diwali-alert span {
    animation: blink 1s infinite;
  }

.listings{
    height: auto;
    width: 100%;
    /* background-color: blue; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.sublistings{
    padding-top: 50px;
    padding-bottom: 50px;
   height: 100%;
   width: 80%;
   /* background-color: lawngreen; */
}
 .accordion {
      background: #fff;
      /* border-radius: 10px; */
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .accordion-header {
      background: rgb(17,24,39);
      cursor: pointer;
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      font-size: 18px;
      transition: background 0.3s;
      color: white;
      border-bottom: 1px solid #eee;
      margin-bottom: 5px;
    }

    /* .accordion-header:hover {
      background: rgb(245,217,104);
    } */

    .accordion-header .arrow {
      transition: transform 0.3s ease;
      font-size: 20px;
    }

    .accordion-header.active .arrow {
      transform: rotate(180deg);
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease;
      padding: 0 20px;
      background: #fff9e6;
    }

    .accordion-content.active {
      padding: 20px;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      place-items: center;
      gap: 20px;
    }

    .product-card {
        height: 420px;
  width: 350px;
  background: #f5d968;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.product-card:hover {
  transform: translateY(-5px);
}
.product-image{
    height: 60%;
    width: 80%;
    /* background-color: tomato; */
}
/* Image */
.product-image img {
    height: 100%;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  /* margin: 0 auto; */
  /* display: block; */
}
.product-names{
    height: 25%;
    width: 80%;
    /* background-color: aqua; */
    text-align: center;
    padding: 0 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
}

/* Names */
.product-names h2 {
  font-size: 16px;
  font-weight: 700;
  /* margin: 5px 0 2px; */
  color: #000;
}


/* Price + Quantity wrapper */
.bottom-section {
    width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 8px;
}

/* Price */
.price-section {
  text-align: left;
}

.price {
  font-size: 20px;
  font-weight: bold;
  color: #000;
}

.old-price {
  text-decoration: line-through;
  color: red;
  margin-left: 6px;
  font-size: 20px;
}

/* Quantity */
.quantity {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.quantity button {
  width: 35px;
  height: 30px;
  border: none;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  transition: background 0.3s;
}

.quantity button:hover {
    color: white;
  background: rgb(17,24,39);
}

.quantity input {
  width: 45px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 6px;
  font-size: 16px;
  background: #fff;
}
/* Modal background */
.modal {
  display: none; 
  position: fixed;
  z-index: 100000000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

/* Modal Image */
.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255,255,255,0.4);
  animation: zoomIn 0.3s ease;
}

/* Close Button */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  cursor: pointer;
  transition: transform 0.2s;
}

.close:hover {
  transform: scale(1.2);
}


/* Animation */
@keyframes zoomIn {
  from {transform: scale(0.7);}
  to {transform: scale(1);}
}
.bank{
    height:480px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: saddlebrown; */
}

.bank-container {
    height: 80%;
  width: 80%;
  text-align: center;
  /* font-family: 'Poppins', sans-serif; */
  border: 1px solid #c8c7c7;
  border-radius: 6px;
  padding: 20px;
}

.bank-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

.bank-box {
    height: 90%;
    width: 100%;
  background: rgb(17,24,39); /* Dark navy blue */
  color: yellow;
  padding: 10px;
  border-radius: 10px;
  border: 2px solid orange;
  text-align: left;
  display: inline-block;
  line-height: 30px;
  min-width: 60%;
}

.bank-box p {
  font-size: 16px;
  margin: 10px 0;
}

.bank-box strong {
  font-weight: 600;
  color: #fff; /* white labels */
}

.bank-box span {
  font-weight: 600;
  color: #ff0; /* bright yellow values */
}
.check{
  height: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: #333; */
}
 .checkout-bar {
      position: fixed;
      bottom: 0;
      /* left: 0; */
      height: 100px;
      width: 100%;
      background: #fff;
      border-top: 1px solid #ddd;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 12px 20px;
      /* box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1); */
      z-index: 1000;
      /* transition: transform 0.2s ease-out; */
    }

    .total-price {
      font-weight: bold;
      font-size: 20px;
      padding: 15px 14px;
      border: 1px solid #333;
      font-family: "Josefin Sans", sans-serif;
      border-radius: 6px;
      margin: 0 90px;
    }

    .order-btn {
      background: #EFBF04;
      border: none;
      padding: 15px 22px;
      font-size: 20px;
      font-family: "Josefin Sans", sans-serif;
      font-weight: bold;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.3s;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      margin-right: 90px;
    }

    .order-btn:hover {
      background: #d4ac0d;
    }
    .footer{
     width: 100%;
      height: 400px; /* footer height in px */
      background-color: rgb(17,24,39); /* navy blue background */
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 5%;
      box-sizing: border-box;
    }
      /* Inside sections (in %) */
    .footer-section {
      width: 30%;
      height: 60%;
      /* background-color: tomato; */
       /* inside height in % */
    }

    .footer-section h3 {
      font-size: 20px;
      margin-bottom: 25px;
      font-weight: bold;
    }

    .footer-section p {
      line-height: 1.6;
      font-size: 18px;
      text-align: justify;
    }
    .ftnew{
  display: flex;
  height: 100%;
  width: 100%;
  /* background-color: saddlebrown; */
  align-items: center;
  justify-content: space-evenly;
}
    .quick-links{
      height: 60%;
      width: 35%;
      display: flex;
      flex-direction: column;
      align-items: center;
      line-height: 30px;
      border-right: 1px solid gray;
      border-left: 1px solid gray;
    }
    .quick-links ul {
      list-style: none;
      padding: 0;
    }

    .quick-links ul li {
      margin: 8px 0;
    }

    .quick-links ul li a {
      text-decoration: none;
      color: #fff;
      font-size: 18px;
      transition: 0.3s;
    }

    .quick-links ul li a:hover {
      color: rgb(245,217,104); /* highlight on hover */
    }

.contact-info {
      height: 100%;
      width: 26%;
      line-height: 30px;
      /* background-color: #088d0d; */
      padding-top: 79px;
    }

    .contact-info p {
      margin-top: 13px;
      font-size: 18px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .contact-info i {
      color: white; /* gold color for icons */
      font-size: 18px;
      width: 20px;
      text-align: center;
    }

    .footer-bottom {
      height: 60px;
      width: 100%;
      text-align: center;
      padding: 10px 0;
      border-top: 1px solid rgb(111, 111, 111);
      background: rgb(17,24,39);
      color: white;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .footer-bottom a {
      color: rgb(245,217,104);
      text-decoration: none;
      /* font-weight: bold; */
      margin-left: 6px;
    }
    /* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 480px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 12px rgba(0,0,0,0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto; 
}
.cart-drawer.open { transform: translateX(0); }

.cart-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffe57f;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 10px;
  border: 6px solid rgb(17,24,39);
}

.cart-card .cart-image img {
  border-radius: 4px;
}

.cart-card .cart-info {
  flex: 1;
  margin-left: 10px;
}

.cart-card h4 {
  margin: 0;
  font-size: 16px;
}

.cart-card p {
  margin: 4px 0;
  font-size: 14px;
}
.cart-qty {
  width: 60px;
  padding: 4px 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}
.cart-card .remove-item {
  background: none;
  border: none;
  color: #ff4d4d;
  font-size: 18px;
  cursor: pointer;
}


.cart-header {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  font-size: 20px;
  border-bottom: 1px solid #ddd;
}
.cart-header h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
  color: #3333337d;
}
.cart-header button {
  font-size: 18px;
  background-color: white;
  border: 1px solid white;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  /* box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px; */
  /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
  padding: 1px 5px;
  margin-left: 260px;
  cursor: pointer;
}

.cart-banner {
  background: #ffe57f;
  color: #000;
  font-size: 16px;
  font-weight: 100;
  text-align: center;
  padding: 8px;
  font-weight: bold;
}
.cart-banner p {
  margin: 0;
  font-weight: 400;
}
.empty-msg {
  text-align: center;
  margin-top: 300px;
  font-size: 18px;
  color: #777;
}
.clear-cart {
  margin-left: 290px;
  display: block;
  margin-top: 20px;
  width: 170px;
  padding: 12px 10px;
  background: #ff4d4d;
  font-family: "Josefin Sans", sans-serif;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.cart-items {
  flex: 1;
  padding: 15px;
}

.cart-summary {
  line-height: 40px;
  text-align: right;
  font-size: 22px;
  padding: 25px;
  border-top: 1px solid #ddd;
}

.cart-form {
  font-family: "Josefin Sans", sans-serif;
  padding-top: 100px;
  height: auto;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid #ddd;
}
.cart-form h3{
  text-align: center;
  font-size: 23px;
  margin-top: 20px;

}
.cart-form input {
  width: 100%;
  padding: 15px;
  margin: 6px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 18px;
  font-family: "Josefin Sans", sans-serif;
}
.cart-form .min-order {
  color: #ff4d4d;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 20px;
  text-align: center;
  animation: blink 1s infinite;
}
@keyframes blink { 50% { opacity: 0; } }

#submitOrder {
  width: 100%;
  padding: 20px;
  background: gray;
  margin-top: 15px;
   margin-bottom: 20px;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: not-allowed;
}
#submitOrder.active {
  background: green;
  cursor: pointer;
}
/* Loader overlay */
#loaderOverlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000000000;
  display: none; /* hidden by default */
}

/* Spinning loader */
.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #ff5722;
  border-radius: 50%;
  width: 70px; height: 70px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  100% { transform: rotate(360deg); }
}

@media screen and (max-width:600px) {
  .navbar{
  display: none;
  overflow: hidden;
    height: 120px;
    width: 100%;
    padding: 10px;
    background-color: rgb(17,24,39);
}
.subnavbar{
    height: 100%;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
}
 /* HC Navbar Top */
    .hc-navbar {
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgb(17,24,39);
      padding: 15px 20px;
      color: white;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 5000;
    }
    .hc-navbar img{
      height: 80px;
      /* width: 50%; */
    }
    .hc-navbar h1 {
      font-size: 20px;
      margin: 0;
      color: #f8d32b;
    }

    .hc-menu-btn {
      font-size: 24px;
      cursor: pointer;
      background: none;
      border: none;
      color: white;
    }

    /* HC Overlay */
    .hc-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      display: none;
      z-index: 4999;
    }

    /* HC Drawer */
    .hc-drawer {
      display: flex;
      position: fixed;
      top: 0;
      right: -300px; /* Hidden initially */
      width: 260px;
      height: 100%;
      background: rgb(17,24,39);
      box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
      transition: right 0.4s ease;
      z-index: 99999999;
      padding-top: 60px;
    }

    .hc-drawer.open {
      right: 0; /* Slide in */
    }

    .hc-drawer ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .hc-drawer ul li {
      padding: 15px 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .hc-drawer ul li a {
      text-decoration: none;
      color: white;
      font-size: 18px;
      display: block;
      transition: transform 0.2s ease;
    }

    .hc-drawer ul li a:hover {
      transform: translateX(5px);
      color: #1a2342;
    }

    /* Close button inside drawer */
    .hc-close-btn {
      position: absolute;
      top: 15px;
      left: 15px;
      font-size: 22px;
      cursor: pointer;
      background: rgb(17,24,39);
      color: #fff;
      border: none;
      padding: 5px 10px;
      border-radius: 50%;
    }

/* Floating WhatsApp Button */
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 50px;
  right: 336px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #088d0d;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  cursor: pointer;
  animation: bounce 2s infinite;
  transition: transform 0.2s;
  z-index: 100000;
}

.whatsapp-float:hover {
  transform: scale(1.2);
}

/* Bounce Animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}



.navbar{
  display: none;
  overflow: hidden;
    height: 120px;
    width: 100%;
    padding: 10px;
    /* background-color: rgb(27,38,69); */
    background-color: rgb(17,24,39);
    /* background-color: blanchedalmond; */
}
.subnavbar{
    height: 100%;
    width: 100%;
    /* background-color: saddlebrown; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo{
    overflow: hidden;
    height: 100%;
    width: 30%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content:center;
    /* background-color: brown; */
}
.logo img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.linkings{
    height: 100%;
    width: 70%;
    /* background-color: chocolate; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.linkings a{
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: 500;
    margin: 0 35px;
}
.linkings a:hover{
    color: rgb(216,159,30);
    transition: 0.3s;
}
.board{
    height: 280px;
    width: 100%;
    margin-top: 100px;
    /* background-color: blueviolet; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}
.subboard{
    height: 100%;
    width: 100%;
    background-color: rgb(245,217,104);
    border: 9px solid rgb(17,24,39);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    padding: 20px;
}
.subboard h2{
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    margin: 10px 0;
}
 .diwali-alert {
      font-size: 14px;   /* smaller text on mobile */
      padding: 10px;
    }
 /* Fixed Cart Button */
    .cart-btn {
      position: fixed;
      /* bottom: 20px; */
      top: 180px;
      right: 0px;
      width: 50px;
      height: 50px;
      background: #fbbf24; /* yellow */
      color: white;
      border-radius: 5px 0px 0px 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 26px;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      animation: bounce 2s infinite;
      z-index: 9999;
    }

    /* Badge (Count) */
    .cart-btn .count {
      position: absolute;
      top: -15px;
      left: -12px;
      background: #fff;
      color: #000;
      font-size: 16px;
      font-weight: bold;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      border: 3px solid #fbbf24;
      align-items: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

    /* Jumping animation */
    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      }
      40% {
        transform: translateY(-12px);
      }
      60% {
        transform: translateY(-6px);
      }
    }
.listings{
    height: auto;
    width: 100%;
    /* background-color: blue; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.sublistings{
    padding-top: 5px;
    padding-bottom: 20px;
   height: 100%;
   width: 100%;
   /* background-color: lawngreen; */
}
 .accordion {
      background: #fff;
      /* border-radius: 10px; */
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .accordion-header {
      background: rgb(17,24,39);
      cursor: pointer;
      padding: 6px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      font-size: 14px;
      transition: background 0.3s;
      color: white;
      border-bottom: 1px solid #eee;
      margin-bottom: 3px;
    }
   
    /* .accordion-header:hover {
      background: rgb(245,217,104);
    } */

    .accordion-header .arrow {
      transition: transform 0.3s ease;
      font-size: 14px;
    }

    .accordion-header.active .arrow {
      transform: rotate(180deg);
    }

    .accordion-content {
      max-height: 0;
      height: auto;
      overflow: hidden;
      transition: max-height 0.5s ease;
      padding: 0px;
      width: 100%;
      background: #fff9e6;
    }

    .accordion-content.active {
      padding-top: 20px;
      padding-left: 0px;
      padding-right: 0px;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(33%, 1fr));
      place-items: center;
      gap: 15px;
    }

    .product-card {
      overflow: hidden;
        height: auto;
  width: 100%;
  background: #f5d968;
  border-radius: 12px;
  padding: 5px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.product-card:hover {
  transform: translateY(-5px);
}
.product-image{
  margin-top: 10px;
    height: 100%;
    width: 100%;
    /* background-color: tomato; */
}
/* Image */
.product-image img {
    height: 100%;
  width: 80%;
  border-radius: 8px;
  object-fit: cover;
  /* margin: 0 auto; */
  /* display: block; */
}

#tamil{
  display: none;
}


.product-names{
    height: 25%;
    width: 100%;
    /* background-color: aqua; */
    text-align: center;
    padding: 0 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
}

/* Names */
.product-names h2 {
  font-size: 12px;
  font-weight: 700;
  /* margin: 5px 0 2px; */
  color: #000;
}


/* Price + Quantity wrapper */
.bottom-section {
    width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 0px;
}

/* Price */
.price-section {
  text-align: left;
}

.price {
  font-size: 14px;
  font-weight: bold;
  color: #000;
}

.old-price {
  text-decoration: line-through;
  color: red;
  margin-left: 0px;
  font-size: 12px;
}

/* Quantity */
.quantity {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.quantity button {
  width: 25px;
  height: 25px;
  border: none;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: background 0.3s;
}

.quantity button:hover {
    color: white;
  background: rgb(17,24,39);
}

.quantity input {
  width: 40px;
  height: 25px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 6px;
  font-size: 16px;
  background: #fff;
}
/* Modal background */
.modal {
  display: none; 
  position: fixed;
  z-index: 100000000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

/* Modal Image */
.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255,255,255,0.4);
  animation: zoomIn 0.3s ease;
}

/* Close Button */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  cursor: pointer;
  transition: transform 0.2s;
}

.close:hover {
  transform: scale(1.2);
}


/* Animation */
@keyframes zoomIn {
  from {transform: scale(0.7);}
  to {transform: scale(1);}
}
.bank{
    height:auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: saddlebrown; */
}

.bank-container {
    height:auto;
  width: 100%;
  text-align: center;
  /* font-family: 'Poppins', sans-serif; */
  border: 1px solid #c8c7c7;
  border-radius: 6px;
  padding: 15px;
}

.bank-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

.bank-box {
    height: 90%;
    width: 100%;
  background: rgb(17,24,39); /* Dark navy blue */
  color: yellow;
  padding: 10px;
  border-radius: 10px;
  border: 2px solid orange;
  text-align: left;
  display: inline-block;
  line-height: 30px;
  min-width: 60%;
}

.bank-box p {
  font-size: 16px;
  margin: 10px 0;
}

.bank-box strong {
  font-weight: 600;
  color: #fff; /* white labels */
}

.bank-box span {
  font-weight: 600;
  color: #ff0; /* bright yellow values */
}
.check{
  height: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: #333; */
}
 .checkout-bar {
      overflow: hidden;
      position: fixed;
      bottom: 0;
      /* left: 0; */
      height: 60px;
      width: 100%;
      background: #fff;
      border-top: 1px solid #ddd;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 12px 20px;
      /* box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1); */
      z-index: 1000;
      /* transition: transform 0.2s ease-out; */
    }

    .total-price {
      font-weight: bold;
      font-size: 16px;
      padding: 10px 13px;
      border: 1px solid #333;
      font-family: "Josefin Sans", sans-serif;
      border-radius: 6px;
      margin: 15px;
    }

    .order-btn {
      background: #EFBF04;
      border: none;
      padding: 10px 12px;
      font-size: 16px;
      font-family: "Josefin Sans", sans-serif;
      font-weight: bold;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.3s;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      margin-right: 15px;
    }

    .order-btn:hover {
      background: #d4ac0d;
    }
    .footer{
      overflow: hidden;
      width: 100%;
      height: auto; /* footer height in px */
      background-color: rgb(17,24,39); /* navy blue background */
      color: #fff;
      display: flex;
      justify-content: space-between;
      flex-direction: column;
      align-items: center;
      padding: 0 5%;
      padding-top: 50px;
      padding-bottom: 5%;
      box-sizing: border-box;
    }
      /* Inside sections (in %) */
    .footer-section {
      width: 100%;
      height: 100%;
      /* background-color: tomato; */
       /* inside height in % */
    }
.ftnew{
  display: flex;
  height: auto;
  width: 100%;
  /* background-color: saddlebrown; */
}
    .footer-section h3 {
      font-size: 16px;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .footer-section p {
      line-height: 30px;
      font-size: 16px;
      text-align: justify;
    }
    .quick-links{
      margin-top: 30px;
      height: 100%;
      width: 30%;
      display: flex;
      flex-direction: column;
      align-items:flex-start;
      justify-content: center;
      line-height: 25px;
      border:none;
    }
    .quick-links ul {
      list-style: none;
      padding: 0;
    }

    .quick-links ul li {
      margin: 7px 0;
    }

    .quick-links ul li a {
      text-decoration: none;
      color: #fff;
      font-size: 14px;
      transition: 0.3s;
    }

    .quick-links ul li a:hover {
      color: rgb(245,217,104); /* highlight on hover */
    }

.contact-info {
  margin-top: 27.5px;
      height: 100%;
      width: 70%;
      line-height: 30px;
      padding-top: 0px;
      
    }

    .contact-info p {
      margin-top: 5px;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .contact-info i {
      color: white; /* gold color for icons */
      font-size: 14px;
      width: 20px;
      text-align: center;
    }

    .footer-bottom {
      height: 50px;
      width: 100%;
      text-align: center;
      padding: 10px 0;
      border-top: 1px solid rgb(111, 111, 111);
      background: rgb(17,24,39);
      color: white;
      font-size: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .footer-bottom a {
      color: rgb(245,217,104);
      text-decoration: none;
      /* font-weight: bold; */
      margin-left:13px;
    }
    /* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0; 
  right: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 12px rgba(0,0,0,0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto; 
}
.cart-drawer.open { transform: translateX(0); }

.cart-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffe57f;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 10px;
  border: 6px solid rgb(17,24,39);
}

.cart-card .cart-image img {
  border-radius: 4px;
}

.cart-card .cart-info {
  flex: 1;
  margin-left: 10px;
}

.cart-card h4 {
  margin: 0;
  font-size: 16px;
}

.cart-card p {
  margin: 4px 0;
  font-size: 14px;
}
.cart-qty {
  width: 60px;
  padding: 4px 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}
.cart-card .remove-item {
  background: none;
  border: none;
  color: #ff4d4d;
  font-size: 18px;
  cursor: pointer;
}


.cart-header {
  margin-top: 20px;
  height: 100px;
  width: 100%;
  display: flex;
  /* background-color: #25D366; */
  justify-content: center;
  align-items: center;
  padding: 2px 18px;
  font-size: 18px;
  border-bottom: 1px solid #ddd;
}
.cart-header h2 {
  margin: 0px;
  font-size: 26px;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
  color: #3333337d;
}
.cart-header button {
  font-size: 18px;
  background-color: white;
  border: 1px solid white;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  /* box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px; */
  /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
  padding: 1px 5px;
  margin-left: 50%;
  cursor: pointer;
}

.cart-banner {
  background: #ffe57f;
  color: #000;
  font-size: 16px;
  font-weight: 100;
  text-align: center;
  padding: 8px;
  font-weight: bold;
}
.cart-banner p {
  margin: 0;
  font-weight: 400;
}
.empty-msg {
  text-align: center;
  margin-top: 300px;
  font-size: 18px;
  color: #777;
}
.clear-cart {
  margin-left: 50%;
  display: block;
  margin-top: 20px;
  width: 190px;
  padding: 12px 10px;
  background: #ff4d4d;
  font-family: "Josefin Sans", sans-serif;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.cart-items {
  flex: 1;
  padding: 15px;
}

.cart-summary {
  line-height: 40px;
  text-align: right;
  font-size: 20px;
  padding: 25px;
  border-top: 1px solid #ddd;
}

.cart-form {
  font-family: "Josefin Sans", sans-serif; 
  padding-top: 80px;
  height: auto;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 15px;
  padding-right: 15px;
  border-top: 1px solid #ddd;
}
.cart-form h3{
  text-align: center;
  font-size: 20px;
  margin-top: 20px;

}
.cart-form input {
  width: 100%;
  padding: 15px;
  margin: 6px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Josefin Sans", sans-serif;
}
.cart-form .min-order {
  color: #ff4d4d;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 18px;
  text-align: center;
  animation: blink 1s infinite;
}
@keyframes blink { 50% { opacity: 0; } }

#submitOrder {
  width: 100%;
  padding: 20px;
  background: gray;
  margin-top: 15px;
  margin-bottom: 20px;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: not-allowed;
}
#submitOrder.active {
  background: green;
  cursor: pointer;
}
/* Loader overlay */
#loaderOverlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000000000;
  display: none; /* hidden by default */
}

/* Spinning loader */
.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #ff5722;
  border-radius: 50%;
  width: 70px; height: 70px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* Make sure SweetAlert popup always comes on top */
.swal2-container {
  z-index: 999999 !important;
}
}