/* Product Card */
.product-card{
    background-color: #fff;
    border: 1px solid #ccc;
    margin-bottom: 24px;
}
.product-card a{
    text-decoration: none;
}
.product-card .stock{
    position: absolute;
    color: #fff;
    border-radius: 4px;
    padding: 2px 12px;
    margin: 8px;
    font-size: 12px;
}
.product-card .product-card-img{
    max-height: 350px;
    overflow: hidden;
    border-bottom: 1px solid #ccc;
}
.product-card .product-card-img img{
    width: 100%;
}
.product-card .product-card-body{
    padding: 10px 10px;
}
.product-card .product-card-body .product-brand{
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 4px;
    color: #937979;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.product-card .product-card-body .product-name{
    font-size: 16px;
    font-weight: 600;
    color: #000;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
	padding-bottom: 5px;
}
.product-card .product-card-body .selling-price{
    font-size:18px;
    color: #000;
    font-weight: 600;
    margin-right: 8px;
}
.product-card .product-card-body .original-price{
    font-size: 12px;
    color: #937979;
    font-weight: 400;
}
.product-card .product-card-body .btn1{
    border: 1px solid;
    margin-right: 3px;
    border-radius: 0px;
    font-size: 12px;
    margin-top: 10px;
}
.filter-bar button {
    background: white;
	padding: 0.6em 0.9em;
	border: 1px solid;
    margin-right: 3px;
    border-radius: 0px;
    font-size: 12px;
	margin-bottom: 20px;
}
/* Product Card End */

/* Original button style */
#btn_wpp {
  position: fixed;
  width: 64px;
  height: 64px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

#btn_wpp svg {
  margin-top: 12px;
  color: #fff;
  height: 35px;
  width: 35px;
}

/* Typing animation for WhatsApp button */
@keyframes typing {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
}

/* Animation for text bubble appearing */
@keyframes appearBubble {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animation for text bubble disappearing */
@keyframes disappearBubble {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}

/* Text bubble style */
.text-bubble {
  position: fixed;
  right: 110px;
  bottom: 50px;
  background-color: white;
  padding: 10px 15px;
  border-radius: 20px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
  z-index: 99;
  opacity: 0;
  display: none;
  transform: translateX(20px);
}

/* Bubble pointer */
.text-bubble:after {
  content: '';
  position: absolute;
  right: -10px;
  bottom: 15px;
  border-width: 10px 0 10px 10px;
  border-style: solid;
  border-color: transparent transparent transparent white;
}

/* Style for typing dots */
.typing-dots {
  position: fixed;
  right: 110px;
  bottom: 50px;
  background-color: white;
  padding: 10px 15px;
  border-radius: 20px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
  z-index: 99;
  max-width: 150px;
  opacity: 0;
  display: none;
}

.typing-dots:after {
  content: '';
  position: absolute;
  right: -10px;
  bottom: 15px;
  border-width: 10px 0 10px 10px;
  border-style: solid;
  border-color: transparent transparent transparent white;
}

/* Animation for dots */
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #888;
  margin-right: 4px;
  animation: dotFlash 1.4s infinite;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotFlash {
  0% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.8); opacity: 0.5; }
}

/* FLOATING SIDEBAR */
ul {
  clear: both;
	position: fixed;
	display: block;
	list-style-type: none;
	right: -5.2em;
	top: 37%; 
}

@keyframes slideright {
	100% {
		right: 0;
	}
}

li {
  margin-bottom: 40px;
  margin-right: -20px;
  padding: 8px;
  -webkit-transform: rotate(270deg);
	-moz-transform: rotate(270deg);
	-o-transform: rotate(270deg);
 	background-color: #1e73be;
	border-top-left-radius: 6px;
	border-top-right-radius:6px;
  
	-webkit-transition: width .5s, background-color .1s;
	transition: width .5s, background-color .1s;

}

li a {
	font-size: 15px;
	text-align: center;
    text-decoration: none;
	color: #fff;
}

li a:link {
    color: #fff;
}

li a:visited {
	color: #fff;
}

