/* =========================
   HERO SECTION
========================= */
.products-hero {
  background: linear-gradient(135deg, #2e7d32, #2f855a);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

/* LEFT CIRCLE */
.circle-left {
  position: absolute;
  left: -80px;
  top: 40px;
  width: 220px;
  height: 220px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

/* RIGHT CIRCLE */
.products-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

/* BADGE */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f4b400;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

/* BADGE ICON */
.hero-badge i {
  color: #2e7d32;
}

/* TITLE */
.products-hero h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* TITLE ICON */
.products-hero h1 i {
  color: #f4b400;
  margin-right: 8px;
}

/* SUBTEXT */
.products-hero p {
  font-size: 17px;
  opacity: 0.9;
}

/* ANIMATION */
.products-hero h1,
.products-hero p,
.hero-badge {
  animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {
  .products-hero h1 {
    font-size: 34px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 576px) {

  .products-hero {
    padding: 70px 15px;
  }

  .products-hero h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .products-hero p {
    font-size: 14px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 5px 12px;
  }

  .circle-left {
    width: 150px;
    height: 150px;
    left: -60px;
  }

}












/* =========================
   PRODUCTS SECTION
========================= */
.products-page {
  padding: 100px 20px 60px;
  background: #f8f5ef;
}

/* =========================
   GRID
========================= */
.product-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* =========================
   CARD
========================= */
.product-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  position: relative;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* ❌ IMPORTANT: REMOVE OLD BADGE */
/* .product-card::before { ❌ DELETE THIS BLOCK COMPLETELY } */

/* =========================
   IMAGE
========================= */
.product-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* =========================
   TITLE
========================= */
.product-card h3 {
  font-size: 16px;
  margin: 10px 0;
  color: #2e7d32;
  font-weight: 600;
}

/* REMOVE LINK UNDERLINE */
.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* =========================
   PRICE
========================= */
.price {
  font-weight: bold;
  color: #2e7d32;
  margin-bottom: 12px;
  font-size: 16px;
}

/* =========================
   BADGE (FIXED 🔥)
========================= */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;

  background: linear-gradient(135deg, #ff9800, #ffb74d);
  color: #fff;

  font-size: 11px;
  font-weight: 600;

  padding: 5px 12px;
  border-radius: 20px;

  white-space: nowrap;
  z-index: 2;
}

/* =========================
   WISHLIST
========================= */
.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;

  background: #fff;
  border: none;

  width: 36px;
  height: 36px;

  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;

  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.wishlist-btn:hover {
  transform: scale(1.1);
}

/* =========================
   ACTION BUTTONS
========================= */
.card-actions {
  display: flex;
  gap: 10px;
}

/* =========================
   ADD TO CART
========================= */
.cart-btn {
  flex: 1;

  background: linear-gradient(135deg, #2e7d32, #43a047);
  color: #fff;

  border: none;
  padding: 10px;

  border-radius: 25px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  font-weight: 500;
  transition: 0.3s;
}

.cart-btn i {
  font-size: 14px;
}

.cart-btn:hover {
  background: linear-gradient(135deg, #1b5e20, #388e3c);
  transform: scale(1.03);
}

/* =========================
   VIEW DETAILS (FIXED 🔥)
========================= */
.quick-view {
  flex: 1;

  background: #f1f1f1;
  color: #333;

  border: none;
  padding: 10px 14px;

  border-radius: 25px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  font-size: 14px;
  font-weight: 500;

  transition: 0.3s;
}

.quick-view i {
  font-size: 13px;
}

.quick-view:hover {
  background: #2e7d32;
  color: #fff;
  transform: scale(1.03);
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 576px) {

  .products-page {
    padding: 70px 15px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-card {
    padding: 16px;
  }

  .product-card img {
    height: 140px;
  }

}




.badge {
  background: #ef4444; /* red */
}