/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 11 2026 | 04:08:46 */
/* whatsapp button css */ 

.wp-sticky-wa {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999999;

    width: 78px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent; /* removed green */
}

/* Image size correct */
.wp-sticky-wa img {
    width: 62px;
    height: 62px;
}

/* Hide text in desktop */
.wp-sticky-wa span {
    display: none;
}
/* Mobile full button */
@media (max-width: 600px) {
  .wp-sticky-wa {
      left: 10px;
      right: 10px;
      width: auto;
      height: auto;
      border-radius: 14px;
      padding: 10px 14px;
      gap: 8px;
      justify-content: center;
      background: #25D366; /* mobile la mattum bg venum na */
  }

  .wp-sticky-wa img {
      width: 22px;
      height: 22px;
  }

  .wp-sticky-wa span {
      display: inline-block;
      font-weight: 600;
      font-size: 14px;
      color: #fff;
  }
}