/* ================= GLOBAL RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f8faf9;
  color: #222;
  line-height: 1.6;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* ================= FLOATING WHATSAPP ================= */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  z-index: 999;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}
/* ================= NAVBAR ================= */
.navbar {

  background: #ffffff;
  padding: 18px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* ================= MOBILE NAV ================= */

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #2e7d32;
}

/* Mobile View */
@media (max-width: 768px) {
    .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: -100%;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .nav-links.active {
    left: 0;
  }

  .cart-btn {
    display: none;
  }
}
.logo-text {
  font-size: 22px;
  font-weight: 600;
  color: #1b5e20;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 35px;
}

.nav-links a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #2e7d32;
}

.cart-btn {
  display: inline-block;
  margin-right: 10px;
  background: #2e7d32;
  color: #fff;
  border: none;
  padding: 9px 22px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.cart-btn:hover {
  background: #145a18;
}
.cart-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #2e7d32;
  color: white;
  padding: 12px 18px;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(-20px);
  transition: 0.4s ease;
  z-index: 999;
}

.cart-toast.show {
  opacity: 1;
  transform: translateY(0);
}
 /* Create right side container */
  .menu-toggle {
    order: 3;
  }

  .cart-btn {
    order: 2;
  }


/* ================= HERO ================= */
.hero {
  background: linear-gradient(135deg,#e8f5e9,#ffffff);
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  font-weight: 600;
  color: #1b5e20;
}

.hero p {
  margin-top: 15px;
  font-size: 18px;
  color: #555;
}

.subline {
  margin-top: 8px;
  font-size: 14px;
  color: #777;
}

/* ================= SECTIONS ================= */
.section {
  padding: 100px 80px;
  text-align: center;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: #1b5e20;
}
.section p {
  font-size: 32px;
  /* margin-bottom: 25px; */
  color: #1b5e20;
}

.grey {
  background: #f2f5f6;
}

/* ================= INTRO BOX ================= */
.highlight-intro {
  /* padding: 80px 20px; */
  font-size: 150%;
  justify-content: center;
  background: #ffffff;
}
.highlight-intro p{
  font-size: 130%;
}
.intro-box {
  /* max-width: 900px; */
  background: #f8faf9;
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
  text-align: center;
}

.intro-box h2 {
  margin-bottom: 20px;
  color: #1b5e20;
}

/* ================= INFO BOX ================= */
.info-box {
  font-size: 32px;
  color: white;
  margin-top: 30px;
  background: darkgreen;
  padding: 25px;
  border-radius: 15px;
  display: inline-block;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* ================= PRODUCT GRID ================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(270px,1fr));
  gap: 35px;
  margin-top: 50px;
}

.card {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.08);
}

.card h3 {
  font-size: 18px;
  color: #1b5e20;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #666;
}

.card span {
  display: block;
  margin: 20px 0;
  font-weight: 600;
  font-size: 18px;
}

.card button {
  background: #2e7d32;
  color: #fff;
  border: none;
  padding: 10px 26px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.card button:hover {
  background: #145a18;
}

/* ================= NOTE SECTION ================= */
.note-section {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  background: #f3f6f7;
}

.note-box {
  max-width: 850px;
  background: #ffffff;
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
  border-left: 6px solid #2e7d32;
}

.note-box h3 {
  margin-bottom: 20px;
  color: #1b5e20;
}

.note-box ul {
  padding-left: 20px;
}

.note-box li {
  margin-bottom: 15px;
  font-size: 15px;
  color: #444;
}

/* ================= DISCLAIMER ================= */
.disclaimer {
  padding: 70px 40px;
  background: #fff3e0;
  font-size: 14px;
  text-align: center;
}

/* ================= FOOTER ================= */
.footer {
  text-align: center;
  padding: 20px;
  background: #ffffff;
  border-top: 1px solid #eee;
  color: #777;
  margin-top: auto;
}


/* ================= CART PAGE ================= */

.cart-wrapper {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}
@media (max-width: 768px) {

  .cart-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 60px auto;
  }

  .cart-right {
    position: relative;
    top: 0;
  }

}
/* LEFT SIDE */
.cart-left h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #1b5e20;
}

.item-count {
  color: #777;
  margin-bottom: 30px;
}

/* CART ITEM */
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.item-name {
  font-weight: 500;
  font-size: 15px;
}

.qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: #2e7d32;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
}

.qty span {
  font-weight: 500;
}

.item-price {
  font-weight: 600;
  min-width: 80px;
  text-align: right;
}

.remove-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #999;
}

.remove-btn:hover {
  color: red;
}

/* BACK LINK */
.back-link {
  display: inline-block;
  margin-top: 40px;
  text-decoration: none;
  color: #2e7d32;
  font-weight: 500;
}

/* RIGHT SIDE SUMMARY */
.cart-right {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  height: fit-content;
}

.cart-right h3 {
  margin-bottom: 25px;
  font-size: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin: 12px 0;
  font-size: 15px;
}

.summary-row.total {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
}

/* COUPON */
.coupon {
  margin-top: 25px;
}

.coupon input {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.coupon button {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  background: #2e7d32;
  border: none;
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
}

#couponMsg {
  margin-top: 8px;
  font-size: 13px;
  color: #1b5e20;
}

/* CHECKOUT BUTTON */
/* ================= PREMIUM CHECKOUT BUTTON ================= */

.checkout-btn {
  margin-top: 30px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(27, 94, 32, 0.25);
}

/* Hover Effect */
.checkout-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(27, 94, 32, 0.35);
  background: linear-gradient(135deg, #1b5e20, #145a18);
}

/* Click Effect */
.checkout-btn:active {
  transform: scale(0.97);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ================= CONTACT SECTION ================= */

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  text-align: left;
}

.contact-info h3 {
  margin-bottom: 20px;
  color: #1b5e20;
}

.contact-info p {
  margin-bottom: 12px;
  font-size: 15px;
}

.contact-form {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.contact-form h3 {
  margin-bottom: 20px;
  color: #1b5e20;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.contact-form button {
  background: #2e7d32;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #145a18;
}

/* ================= DELIVERY PAGE ================= */
.secure-section {
  background: #f5f8f6;
  padding: 40px 20px;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.secure-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.secure-item {
  flex: 1;
  min-width: 250px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.secure-icon {
  font-size: 28px;
  background: #e8f5e9;
  color: #2e7d32;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.secure-item h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: #1b5e20;
}

.secure-item p {
  font-size: 13px;
  color: #555;
}
.delivery-wrapper {
  min-height: 100vh;
  background: linear-gradient(135deg,#f4f8f6,#ffffff);
  padding: 100px 20px;
}
.loader {
  display: none;
  margin: 20px auto;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #2e7d32;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}
.page-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #1b5e20;
  font-weight: 600;
}

.delivery-card {
  max-width: 550px;
  margin: auto;
  background: #ffffff;
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.delivery-card:hover {
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}
.error {
  color: red;
  font-size: 12px;
}
.secure-badge {
  margin-top: 20px;
  font-size: 13px;
  color: #2e7d32;
  text-align: center;
  background: #f1f8f3;
  padding: 12px;
  border-radius: 12px;
}
/* ================= FORM ================= */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: 0.3s;
  background: #f9fbfa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2e7d32;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(46,125,50,0.08);
}

.form-group textarea {
  resize: none;
  min-height: 90px;
}

/* ================= ORDER SUMMARY ================= */

.order-summary {
  margin: 35px 0;
  font-size: 16px;
}

.order-summary p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: #444;
}

.order-summary h3 {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  margin-top: 15px;
  color: #1b5e20;
}

/* ================= PAYMENT METHOD ================= */

.payment-method {
  margin: 30px 0;
}

.payment-method h3 {
  margin-bottom: 15px;
  font-size: 16px;
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 14px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.radio-card:hover {
  border-color: #2e7d32;
  background: #f1f8f3;
}

.radio-card input {
  accent-color: #2e7d32;
}

/* ================= BUTTON ================= */

.pay-btn {
  width: 100%;
  background: linear-gradient(135deg,#2e7d32,#1b5e20);
  color: #fff;
  padding: 15px;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
}

.pay-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ================= RESPONSIVE ================= */

@keyframes bounce {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.bounce {
  animation: bounce 0.3s ease;
}

/* ================= MOBILE NAV ================= */

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #2e7d32;
}
/* ================= RESPONSIVE CLEAN VERSION ================= */

/* Tablets */
@media (max-width: 1024px) {

  .navbar {
    padding: 15px 25px;
  }

  .section {
    padding: 70px 30px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .info-box {
    font-size: 22px;
  }

}

/* Mobile */
@media (max-width: 768px) {

  .navbar {
    padding: 15px 18px;
  }

  /* Navbar order */
  .logo-text { order: 1; }
  .cart-btn {
    order: 2;
    display: inline-block;
    margin: 0 8px;
    padding: 6px 14px;
    font-size: 13px;
  }
  .menu-toggle {
    order: 3;
    display: block;
  }

  /* Mobile menu */
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-200%);
    transition: transform 0.3s ease;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-links li {
    margin: 15px 0;
  }

  /* Section spacing */
  .section {
    padding: 60px 20px;
  }

  .hero {
    padding: 70px 20px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .section h2 {
    font-size: 22px;
  }

  .section p {
    font-size: 15px;
      line-height: 1.7;
  }

  .info-box {
    font-size: 18px;
  }

  .product-grid {
    gap: 20px;
  }

  .card {
    padding: 22px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

}

/* Small Mobile */
@media (max-width: 480px) {

  .logo-text {
    font-size: 17px;
  }

  .hero h1 {
    font-size: 20px;
  }

  .cart-btn {
    font-size: 12px;
    padding: 6px 10px;
  }

}