  .page-title {
    margin: 40px 0 20px;
    text-align: center;
    font-weight: 700;
    font-size: 2.5rem;
    color: #5c67f2;
  }
  .seller-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    padding: 25px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-align: center; /* Ortala */
  }
  .seller-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(92, 103, 242, 0.3);
  }
  .seller-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #5c67f2;
    margin: 0 auto 15px auto; /* Ortala ve alt boşluk */
    display: block;
  }
  .seller-name {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #1f1f1f;
  }
  .seller-info {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
  }
  .seller-rating {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  .seller-stats {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 15px;
  }
  .seller-stats span {
    display: inline-block;
    margin: 0 10px;
  }
  .btn-profile {
    background-color: #5c67f2;
    border: none;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }
  .btn-profile:hover {
    background-color: #4049d0;
  }
  .social-links a {
    margin: 0 8px;
    color: #5c67f2;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }
  .social-links a:hover {
    color: #4049d0;
  }