.tp-widget {
    max-width: 500px;
    margin: 30px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    padding: 25px;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
  }
  
  .tp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .tp-score {
    font-size: 20px;
    font-weight: bold;
    color: #00b67a;
  }
  
  .tp-count {
    font-size: 14px;
    color: #777;
  }
  
  .tp-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 10px 0;
  }
  
  .tp-slide {
    scroll-snap-align: start;
    flex: 0 0 90%;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
  }
  
  .tp-slide p {
    margin-bottom: 10px;
    font-size: 15px;
  }
  
  .tp-slide small {
    font-weight: bold;
    color: #333;
  }
  
  .tp-footer {
    margin-top: 20px;
    text-align: center;
  }
  
  .tp-review-btn {
    background: #00b67a;
    color: #fff;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .tp-review-btn:hover {
    background: #009e68;
  }
  
  /* Mobile responsive */
  @media (max-width: 480px) {
    .tp-widget {
      padding: 20px;
    }
  
    .tp-score {
      font-size: 18px;
    }
  
    .tp-count {
      font-size: 13px;
    }
  
    .tp-slide p {
      font-size: 14px;
    }
  
    .tp-review-btn {
      font-size: 14px;
      padding: 8px 20px;
    }
  }
  