.rating-card {
      background: white;
      padding: 25px 35px;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      text-align: center;
      width: auto;
    }

    .rating-title {
      font-size: 18px;
      font-weight: 600;
      color: #333;
      margin-bottom: 16px;
    }

    .rating {
      display: flex;
      justify-content: center;
      gap: 10px;
      cursor: pointer;
    }

    .rating span {
      font-size: 34px;
      color: #d1d5db;
      transition: color 0.2s, transform 0.15s;
    }

    .rating span.active {
      color: #ffb400;
      transform: scale(1.1);
    }

    .rating span:hover {
      color: #ffcc33;
      transform: scale(1.2);
    }

    .rating-text {
      margin-top: 14px;
      font-size: 15px;
      color: #555;
    }