/* 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: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: var(--button-height);
    border: 1px solid var(--button-outline-border);
    border-radius: var(--button-radius);
    padding: 0 var(--button-padding-x);
    font-weight: var(--font-medium);
    color: var(--button-outline-text);
    background-color: var(--button-outline-bg);
    transition: background-color var(--button-transition), border-color var(--button-transition), color var(--button-transition);
}

.seller-listing-page .btn-view-profile:hover {
    background: var(--button-outline-hover-bg);
    color: var(--button-outline-hover-text);
    border-color: var(--button-outline-hover-bg);
}

.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: var(--bg-card);
    border-radius: var(--radius-card);
    padding: var(--card-padding);
    text-align: left;
    text-decoration: none;
    height: 100%;
    box-shadow: var(--shadow-card);
    transition: box-shadow var(--transition-normal);
    border: 1px solid var(--border-color);
}

.seller-listing-page .service-card:hover {
    box-shadow: var(--shadow-card-hover);
}

.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: var(--font-base);
    font-weight: var(--font-semi-bold);
    line-height: var(--line-height-body);
    letter-spacing: var(--letter-spacing-heading);
    color: var(--text-dark);
    margin-bottom: 8px;
}

.seller-listing-page .service-desc {
    font-size: var(--font-sm);
    font-weight: var(--font-normal);
    line-height: var(--line-height-small);
    letter-spacing: var(--letter-spacing-body);
    color: var(--text-medium);
    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;
}
