
.seller-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #F9F9F9;
    /* border-radius: 8px; */
    padding: 10px;
    width: 320px;
    background-color: #F9F9F9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
}

.seller-header {
    margin-bottom: 16px;
}

.sold-by {
    font-size: 0.9em;
    color: #555;
    margin: 0;
    margin-bottom: 8px;
    font-weight: 700;
}

.seller-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.seller-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.seller-details {
    display: flex;
    flex-direction: column;
}

.seller-name {
    font-weight: bold;
    margin: 0;
    color:#000;
}

.seller-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9em;
    background: #E4E4E4;
    padding: 2px;
    border-radius: 6px;
    color: #000;
    font-weight: 600;
}

.verified-icon {
    width: 16px;
    height: 16px;
}

.seller-rating-card {
    display: flex;
  
    gap: 4px;
    font-size: 1.2em;
    margin-bottom: 16px;
    justify-content: space-between;
}

.rating-score {
    font-weight: bold;
    color: #000;
}

/* .stars {
    color: #ffba00;
} */

.seller-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.chat-btn {
    background-color: #f3f3f3;
    color: #000;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    text-align: center;
}

.chat-btn:hover {
    background-color: #eaeaea;
}

.store-btn {
    background-color: #ffd700;
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    text-align: center;
}

.store-btn:hover {
    background-color: #e6be00;
}

.stars2 {
    --rating: 0; /* The rating value from 0 to 5 */
    --star-size: 30px; /* Size of the stars */
    --star-color: #F4B44B; /* Color for filled stars */
    --star-background: #ccc; /* Color for empty stars */
    display: inline-block;
    font-size: 20px;
    font-family: Times; /* Fallback font for stars */
    line-height: 1;
    letter-spacing: 3px;
    background: linear-gradient(
        90deg,
        var(--star-color) calc(var(--rating) / 5 * 100%),
        var(--star-background) calc(var(--rating) / 5 * 100%)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}
.stars2::before {
    content: "★★★★★"; /* 5 stars */
    /* display: block; */
    /* position: absolute; */
    /* top: 0;
    left: 0;
    width: 100%; */
    overflow: hidden;
}
   