body {
    background: #faebd7a8;
}

.tp-category-content-2:after {
    background-color: #ffffffd6;
    border-radius: 50% !important;
}

/* =============== WhatsApp Floating Widget =============== */
.whatsapp-widget {
  position: fixed;
  bottom: 60px;
  left: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  font-family: "Poppins", sans-serif;
}

/* Floating Button */
.whatsapp-float {
  background-color: #FC00A7;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  animation: bounceIn 0.6s ease, wobble 2s ease-in-out 5s infinite; /* Added wobble */
}

.whatsapp-float:hover {
  background-color: #000000;
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1);
}

/* Bubble Text (Hidden by Default) */
.whatsapp-bubble {
  background-color: #fff;
  color: #333;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateX(-10px);
  pointer-events: none;
  transition: all 0.3s ease;
  order: 2; /* Ensures bubble is to the right of the icon */
}

/* Show Bubble on Hover */
.whatsapp-widget:hover .whatsapp-bubble {
  opacity: 1;
  transform: translateX(0);
}

/* Animations */
@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.05); opacity: 1; }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

/* Wobble Animation */
@keyframes wobble {
  0%, 100% { transform: rotate(0deg); }
  15% { transform: rotate(-10deg); }
  30% { transform: rotate(8deg); }
  45% { transform: rotate(-8deg); }
  60% { transform: rotate(6deg); }
  75% { transform: rotate(-4deg); }
}

/* Hide bubble on small screens */
@media (max-width: 600px) {
  .whatsapp-bubble {
    display: none;
  }
}



.bb-product-filter {
    background: #ffffff;
    margin-bottom: 30px;
    padding: 20px;
}

.alert-warning {
    display: none !important;
}

.pb-50 {
    padding-top: 50px;
}

.tp-category-thumb-2 img {
    border-radius: 50%;
}

.site-notice .site-notice__categories .cookie-category__description {
    color: #7f7f7f;
}