@media (max-width: 576px) {
    .tp-slider-height-3 {
        height: auto !important; /* hoặc bạn set số cố định như 220px */
        min-height: 220px; /* tuỳ tỉ lệ ảnh mong muốn */
    }

    .tp-slider-thumb-3 {
        background-size: cover; /* hoặc contain nếu bạn không muốn cắt ảnh */
        background-position: center center;
        background-repeat: no-repeat;
    }
}
.tp-category-main-content{
  background-color: #ffffff96;
  padding: 1rem;
}


.contact-buttons {
      position: fixed;
    bottom: 80px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
    }

    .contact-button {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 55px;
      height: 55px;
      border-radius: 50%;
      background-color: #ff00007d;
      color: white;
      text-decoration: none;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      transition: transform 0.2s, background-color 0.3s;
      animation: shake 2s infinite;
    }

    .contact-button:hover {
      transform: scale(1.1);
      background-color: #ff0000a8;
    }

    .contact-button svg {
      width: 24px;
      height: 24px;
      fill: white;
    }

    @media (max-width: 768px) {
      .contact-button {
        width: 50px;
        height: 50px;
      }

      .contact-button svg {
        width: 22px;
        height: 22px;
      }
    }

/* Animation: shake */
    @keyframes shake {
      0%, 100% { transform: rotate(0deg); }
      20% { transform: rotate(5deg); }
      40% { transform: rotate(-5deg); }
      60% { transform: rotate(4deg); }
      80% { transform: rotate(-4deg); }
    }

.tp-product-rating{
  display: none !important;
}

.tp-btn.tp-btn-2.tp-btn-blue{
  color: white;
}