
.shop-widget-title span{
    float: right;
}

.shop-category-list div.name,.shop-checkbox-list .name{
    float: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 80%;
}
.shop-checkbox-list .form-check-label span.name{
    float: left;
}


.product-price-range-box{
    margin-bottom: 12px;
}

.product-price-range.ui-widget-content {
    border: none;
    background: var(--border-info-color);
    height: 5px;
    border-radius: 3px;
}

.product-price-range .ui-state-default,
.product-price-range .ui-widget-content .ui-state-default {
    top: -7px;
    width: 18px;
    height: 18px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 0px;
    background: var(--theme-color);
    z-index: 1;
}

.product-price-range .ui-state-focus {
    outline: none;
}

.product-price-range .ui-widget-header {
    background: var(--theme-color);
    border-radius: 0 !important;
}

.product-price-range-input input {
    border: none;
    margin-bottom: 20px;
    color: var(--theme-color);
    background: transparent;
    font-weight: 700;
    outline: none;
}

.merchant-card {
    background: color-mix(in srgb, var(--theme-color2), transparent 70%);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.merchant-card:hover {
    transform: translateY(-5px);
}

.merchant-card-body {
    padding: 30px;
}

.merchant-header {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.merchant-avatar-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
}

.merchant-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid #f8f9fa;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.status-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 15px;
    height: 15px;
    background: #28a745; /* 在线绿色 */
    border: 3px solid #fff;
    border-radius: 50%;
}

.merchant-details {
    flex: 1;
}

.merchant-title {
    font-size: 24px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 8px;
}

.merchant-meta {
    display: flex;
    gap: 20px;
    color: #636e72;
    font-size: 14px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item i {
    color: var(--theme-color, #ff4500);
}

.merchant-actions {
    margin-left: auto;
}

.btn-contact-now {
    background: var(--theme-color, #ff4500);
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-contact-now:hover {
    background: #d33a00;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

@media (max-width: 768px) {
    .merchant-header {
        flex-direction: column;
        text-align: center;
    }
    .merchant-meta {
        justify-content: center;
        flex-direction: column;
        gap: 5px;
    }
    .merchant-actions {
        margin: 20px auto 0;
        width: 100%;
    }
    .btn-contact-now {
        justify-content: center;
    }
}

#contact-section{
    border: 1px solid var(--border-info-color);
    background: transparent;
    background: var(--color-white);
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 10px;
}
#contact-section #submit-contact-btn{
    position: relative;
    border: none;
    background: var(--theme-color);
    color: var(--color-white);
    border-radius: 10px;
    text-align: center;
    font-size: 13pt;
}