/* Scoped styles for the Sellers Landing Page */
.seller-listing-page .seller-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all .3s ease;
    position: relative;
    height: 100%;
}

.seller-listing-page .seller-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.seller-listing-page .offer-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #16a34a;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 2;
}

.seller-listing-page .seller-content {
    padding: 16px;
    text-align: center;
}

.seller-listing-page .seller-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.seller-listing-page .seller-name a {
    color: #111;
}

.seller-listing-page .seller-info {
    list-style: none;
    padding: 0;
    margin: 10px 0 15px;
    font-size: 14px;
    color: #555;
    display: flex;
    justify-content: center;
}

.seller-listing-page .seller-info li {
    margin-bottom: 4px;
    margin-left: 10px;
}

.seller-listing-page .btn-view-profile {
    display: block;
    width: 100%;
    border: 1px solid #f4813c;
    border-radius: 30px;
    padding: 10px 0;
    font-weight: 600;
    color: #f4813c;
    transition: .3s;
}

.seller-listing-page .btn-view-profile:hover {
    background: #f4813c;
    color: #fff;
}

.seller-listing-page .seller-content .ratings {
    justify-content: center;
}

.seller-listing-page .popular-category {
    background: #fff;
}

.seller-listing-page .service-category-wrapper {
    padding: 30px 0;
}

.seller-listing-page .service-card {
    display: block;
    background: #ffffff;
    border-radius: 14px;
    padding: 30px 25px;
    text-align: left;
    text-decoration: none;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f1f1f1;
}

.seller-listing-page .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

.seller-listing-page .service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.seller-listing-page .service-icon img {
    width: 100%;
    height: auto;
}

.seller-listing-page .service-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.seller-listing-page .service-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.seller-listing-page .name-with-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.seller-listing-page .verified-badge {
    width: 18px;
    height: 18px;
}
