/* ================= HERO ================= */
.products-hero {
  text-align: center;
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 16px;
}

.products-hero h1 {
  font-size: 36px;
  color: #00ADEF;
  margin-bottom: 10px;
}

.products-hero p {
  font-size: 18px;
  color: #555;
}

/* ================= MAIN CONTAINER ================= */
.products-container {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}

/* ================= CATEGORY ================= */
.products-category {
  margin-bottom: 80px;
}

.products-title {
  font-size: 26px;
  color: #00ADEF;
  border-left: 5px solid #99CA3B;
  padding-left: 12px;
  margin-bottom: 30px;
}

/* ================= GRID ================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px; /* more spacing */
}

/* ================= CARD ================= */
.products-card {
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.products-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

/* ================= IMAGE WRAPPER ================= */
.products-img-wrapper {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= IMAGE ================= */
.products-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* KEY FIX */
  background: #f8f9fa;
  border-radius: 12px;
  padding: 8px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .products-hero h1 {
    font-size: 28px;
  }

  .products-title {
    font-size: 22px;
  }

  .products-img-wrapper {
    height: 180px;
  }

  .products-grid {
    gap: 20px;
  }
}





/* ================= WHATSAPP WRAPPER ================= */
.whatsapp-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
}

/* ================= FLOAT BUTTON ================= */
.whatsapp-float {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* icon */
.whatsapp-float img {
  width: 32px;
  height: 32px;
}

/* hover effect */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* ================= TOOLTIP ================= */
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);

  background: #333;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;

  opacity: 0;
  white-space: nowrap;
  pointer-events: none;

  transition: opacity 0.3s ease;
}

/* show tooltip */
.whatsapp-wrapper:hover .whatsapp-tooltip {
  opacity: 1;
}

.whatsapp-label {
  position: absolute;
  bottom: 70px;
  right: 0;

  background: #25D366;
  color: white;
  padding: 6px 10px;
  border-radius: 6px;

  font-size: 12px;
  font-weight: 500;

  white-space: nowrap;
}
/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
  }

  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }

  .whatsapp-tooltip {
    display: none; /* hide tooltip on mobile */
  }
}

