@media (min-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    min-width: unset;
  }
}
@media (max-width: 767px) {
  .main-nav {
    display: none;
  }
}

/* Add to Cart Animation */
.cart-bounce {
  animation: cartBounce 0.4s cubic-bezier(.4,2,.3,1);
}
@keyframes cartBounce {
  0% { transform: scale(1); }
  30% { transform: scale(1.25); }
  60% { transform: scale(0.9); }
  100% { transform: scale(1); }
}
/* Ensure mobile buttons are always clickable and above overlays */
.fixed-contact-bar,
.cart-btn,
.main-nav.active {
  z-index: 2000;
}



@media (max-width: 767px) {
  .nav-links a {
    background: #f6faf7;
    padding: 12px 18px;
    border-radius: 8px;
    margin-bottom: 8px;
    width: 100%;
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: background 0.2s;
  }
  .nav-links a:hover {
    background: #e2fbe2;
  }
  .modern-footer {
    padding-bottom: 70px;
  }
  .fixed-contact-bar .cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    font-size: 1.1em;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--acc);
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    z-index: 1501;
  }
  .fixed-contact-bar .cart-btn .cart-count {
    background: #fff;
    color: var(--acc);
    border: 1px solid var(--acc);
    margin-left: 6px;
  }
  .main-nav {
    display: none;
  }
  .fixed-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: var(--card);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 1000;
  }
  .cart-btn {
    position: static;
    margin: 0;
    width: auto;
    max-width: none;
    box-shadow: none;
    background: var(--acc);
    color: #fff;
    border: none;
    font-size: 1.1em;
    z-index: 1501;
    border-radius: 999px;
  }
  .cart-btn .cart-count {
    background: #fff;
    color: var(--acc);
    border: 1px solid var(--acc);
  }
}
:root {
  --bg: #f6faf7;
  --card: #fff;
  --text: #0f172a;
  --muted: #475569;
  --acc: #16a34a;
  --bad: #ef4444;
}
* {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}
body {
  margin: 0;
  font-family:
    "Hind Siliguri",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  line-height: 1.5;
  background: var(--bg);
  color: var(--text);
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px;
}
header {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.cart-btn {
  position: relative;
  border: 1px solid #e5e7eb;
  background: var(--card);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--acc);
  color: #fff;
  border-radius: 999px;
  padding: 0 6px;
  font-size: 12px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.products {
  grid-column: span 12;
}
@media (min-width: 900px) {
  .products {
    grid-column: span 8;
  }
}
.cart {
  grid-column: span 12;
}
@media (min-width: 900px) {
  .cart {
    grid-column: span 4;
    position: sticky;
    top: 16px;
    height: max-content;
  }
}
.card {
  background: var(--card);
  border: none;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.p-16 {
  padding: 20px;
}

.category-filters {
  display: grid; /* Use CSS Grid for better organization */
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Responsive grid */
  gap: 10px;
  margin-bottom: 20px;
}

.category-btn {
  background-color: #f1f1f1;
  border: 1px solid #ddd;
  border-radius: 8px; /* Slightly less rounded than 20px */
  padding: 10px 15px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  text-align: center; /* Center the text in the button */
}

.category-btn:hover {
  background-color: #e0e0e0;
}

.category-btn.active {
  background-color: var(--acc);
  color: white;
  border-color: var(--acc);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}
.product {
  display: flex;
  flex-direction: column;
  min-height: 350px;
}
.product img.main-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: #fff;
  border-radius: 12px;
  transition: opacity 0.3s ease;
}

.thumbs {
  display: flex;
  gap: 6px;
  margin-top: 6px;
  justify-content: center;
}
.thumbs img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
}
.title {
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
  border-top: 1px solid #e5e7eb;
  color: #04a545;
  font-size: 12px;
}
.price {
  color: rgb(7, 204, 82);
  font-weight: 950;
 font-size: larger;
}
.muted {
  color: var(--muted);
  font-size: 0.9rem;
}
.row {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}
.row h2 {
  text-align: center;
  width: 100%;
  margin: 5px auto;
  display: block;
}
.qty {
  display: flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}
.qty button {
  border: 0;
  background: #f1f5f9;
  padding: 6px 8px;
  cursor: pointer;
}
.qty button:hover {
  background: #717881;
}
.qty input {
  width: 25px;
  height: 10px;
  text-align: center;
  border: 0;
  padding: 2px 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
}
.btn-primary {
  background: var(--acc);
  color: #fff;
}
.btn-primary:hover {
  background-color: #126d29;
}
.btn-ghost {
  background: #c5ccd2;
  color: var(--text);
}
.btn-ghost:hover {
  background-color: #dae7f4;
}
.btn-bad {
  background: var(--bad);
  color: #fff;
}
.card h2 {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  display: block;
}

.totals {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0eeee;
  margin-top: 12px;
  padding-top: 12px;
}
form {
  display: grid;
  gap: 10px;
}
input,
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #000;
  border-radius: 10px;
  background: #fff;
}
label {
  font-size: 0.9rem;
  color: var(--muted);
}
.line {
  height: 1px;
  background: #e5e7eb;
  margin: 10px 0;
}
.form-title {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  display: block;
  color: #04a545;
  margin-top: 30px;
}
.chip {
  display: inline-block;
  padding: 2px 8px;
  font-size: 0.8rem;
  color: var(--muted);
}
.list {
  display: grid;
  gap: 8px;
  color: rgb(3, 43, 4);
  border: 1px dashed #ff0263;
  padding: 10px;
  margin-bottom: 10px;
}
.item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.item .name {
  flex: 1;
}
.right {
  text-align: right;
}
.desc {
  overflow: hidden;
  max-height: 0; /* Initially hidden */
  transition: max-height 0.5s ease-in-out;
  flex-grow: 1;
  font-size: 12px;
  line-height: 1.4;
}
.desc.show {
  max-height: 1000000vh; /* A large value to show the full content */
}
.see-more {
  cursor: pointer;
  color: var(--acc);
  font-size: 0.85rem;
  margin-top: 4px;
  display: inline-block;
  text-align: center;
}
.modern-footer {
  background: var(--text);
  color: #fff;
  padding: 40px 16px;
  text-align: center;
}
.modern-footer .footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  margin-bottom: 50px;
  justify-content: space-evenly;
}
.modern-footer .footer-section h3 {
  color: var(--acc);
  margin-bottom: 15px;
  font-size: 1.2rem;
}
.modern-footer .footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.modern-footer .footer-section ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  gap: 10px;
}
.modern-footer .footer-section ul li i {
  font-size: 1.2rem;
  color: var(--acc);
}
.modern-footer .footer-section a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.modern-footer .footer-section a:hover {
  color: var(--acc);
}
.modern-footer .copyright p {
  font-size: 0.9rem;
  margin: 0;
}
@media (min-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 40%;
    right: 0;
    left: auto;
    background: transparent;
    box-shadow: none;
    padding: 0 48px;
    min-width: unset;
  }
}


.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: var(--card);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  min-height: 64px;
}
/* Add top padding to container for fixed header */
.container {
  padding-top: 84px; /* Adjusted for header height */
}
.main-header .logo img {
  height: 50px;
  width: auto;
}
.brand {
  display: none;
}
@media (max-width: 767px) {
  .grid {
    grid-template-columns: 1fr;
  }
  body {
    font-size: 16px;
  }
  .container {
    padding: 10px;
  }
  .main-header {
    padding: 10px 10px;
  }
  .services-section {
    padding: 40px 10px;
  }
  .services-section .catalogue-text h3 {
    font-size: 1.8rem;
  }
  .services-section .catalogue-text p {
    font-size: 0.9rem;
  }
  .services-section .service-item {
    padding: 20px;
  }
  .modern-footer {
    padding: 30px 10px;
  }
  .modern-footer .footer-container {
    flex-direction: column;
  }
  .form-row-responsive {
    gap: 12px;
  }
  .formow-responsive > div {
    width: 100%;
    flex: 1;
  }
}

.pay-method-title {
  display: block;
  text-align: center;
  font-weight: 700;
  color: #126d29;
  background: #e6fbe6;
  padding: 6px 0;
  border-radius: 8px;
  font-size: 1.15em;
  margin-bottom: 8px;
}
.cart .card {
  background: #fff;
  border: 1.5px solid #16a34a;
}
.products .card {
  margin-bottom: 32px;
}
.cart .card {
  margin-top: 32px;
}
.thankyou-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.thankyou-modal .thank-container {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  max-width: 90%;
}
.main-nav {
  display: none;
}
.nav-links {
  list-style: none;
  padding-left: 32px;
  margin: 0;
  display: flex;
  gap: 36px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: color 0.3s ease;
  padding: 12px 28px 12px 24px;
  font-size: 1.08em;
  border-radius: 6px;
}
.nav-links a:hover {
  color: var(--acc);
}
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
@media (min-width: 768px) {
  .main-nav {
    display: block;
  }
  .mobile-nav-toggle {
    display: none;
  }
}
@media (max-width: 767px) {
  .mobile-nav-toggle {
    margin-left: auto;
    order: 2;
    display: none;
  }
  .logo {
    order: 1;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    background: var(--card);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px;
  }
  .main-nav.active {
    display: block;
  }
  .nav-links {
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }
  .mobile-nav-toggle {
    display: none;
  }
}

.radio-label {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.05em;
  color: var(--text);
}
.radio-label input[type="radio"] {
  margin-right: 5px;
}
.fixed-contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: var(--card);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  z-index: 1000;
}
.fixed-contact-bar .contact-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  font-size: 0.8em;
  transition: transform 0.2s ease-in-out;
}
.fixed-contact-bar .contact-icon:hover {
  transform: translateY(-3px);
}
.fixed-contact-bar .contact-icon i {
  font-size: 2.2em;
  margin-bottom: 5px;
}
.fixed-contact-bar .contact-icon.whatsapp i {
  color: #25d366;
}
.fixed-contact-bar .contact-icon.phone i {
  color: #007bff;
}
.fixed-contact-bar .contact-icon.facebook i {
  color: #1877f2;
}
@media (max-width: 767px) {
  .payment-methods {
    gap: 12px;
    align-items: flex-start;
  }
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  overflow: hidden;
}

.mySlides {
  display: none; /* Initially hide all slides */
  min-width: 100%;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Dots */
.dot-container {
  text-align: center;
  padding: 10px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.dot {
  cursor: pointer;
  height: 5px;
  width: 5px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}



.fly-to-cart {
  position: fixed;
  z-index: 2000;
  transition: all 1s ease-in-out;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .slideshow-container {
    margin-top: 80px;
  }
}

.form-submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 1.2rem;
  margin-top: 10px;
}

.form-row {
  display: flex;
  gap: 12px;
}


.payment-methods {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
