﻿.sp-filtered-by {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 0;
    margin-bottom: 6px;
    border-bottom: 1px solid #eee;
}

.sp-filtered-by-label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.sp-filtered-by-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sp-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    background: #fff;
    color: #333;
    font-size: 13px;
    text-decoration: none;
    transition: border-color .15s ease, color .15s ease;
}

    .sp-filter-chip:hover {
        border-color: #f97316;
        color: #f97316;
        text-decoration: none;
    }

.sp-filter-chip-x {
    font-size: 14px;
    line-height: 1;
    color: #999;
}

.sp-filter-chip:hover .sp-filter-chip-x {
    color: #f97316;
}

.sp-filtered-by-clearall {
    font-size: 13px;
    color: #f97316;
    text-decoration: none;
    margin-left: 4px;
    white-space: nowrap;
}

    .sp-filtered-by-clearall:hover {
        text-decoration: underline;
        color: #f97316;
    }

.cps-price-input-wrap {
    margin-bottom: 4px;
}

.cps-price-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cps-price-input {
    flex: 1;
    min-width: 0;
    height: 36px;
    border: 1.5px solid #e5e7eb;
    border-radius: 6px;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    text-align: center;
    outline: none;
    transition: border-color .15s;
}

    .cps-price-input:focus {
        border-color: #f97316;
    }

    .cps-price-input::placeholder {
        color: #9ca3af;
        font-weight: 400;
    }

.cps-price-dash {
    color: #d1d5db;
    font-size: 13px;
    flex-shrink: 0;
}

.cps-price-go {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 6px;
    background: #f97316;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s;
}

    .cps-price-go:hover {
        background: #ea6a0c;
    }

.sp-wrap {
    padding: 2rem 0 4rem;
    min-height: 60vh;
}

.sp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    font-size: 12px;
    flex-wrap: wrap;
}

    .sp-breadcrumb li {
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .sp-breadcrumb li::after {
            content: '/';
            color: #d1d5db;
        }

        .sp-breadcrumb li:last-child::after {
            display: none;
        }

    .sp-breadcrumb a {
        color: #6b7280;
        text-decoration: none;
        transition: color .2s;
    }

        .sp-breadcrumb a:hover {
            color: #f97316;
        }

    .sp-breadcrumb li:last-child a {
        color: #111827;
        font-weight: 600;
        pointer-events: none;
    }

.sp-sidebar {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    position: sticky;
    top: 80px;
    overflow: visible;
}

.sp-sidebar-block {
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid #f3f4f6;
}

    .sp-sidebar-block:last-child {
        border-bottom: none;
    }

.sp-sidebar-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #111827;
    margin-bottom: .85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .sp-sidebar-heading i {
        color: #f97316;
        font-size: 13px;
    }

/* Category list */
.sp-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .sp-cat-list > li {
        margin-bottom: 4px;
    }

    .sp-cat-list .category-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 7px 10px;
        border-radius: 9px;
        font-size: 13px;
        font-weight: 500;
        color: #374151;
        text-decoration: none;
        cursor: pointer;
        transition: background .18s, color .18s;
        user-select: none;
    }

        .sp-cat-list .category-link:hover {
            background: #fff7ed;
            color: #f97316;
        }

        .sp-cat-list .category-link i {
            font-size: 10px;
            color: #9ca3af;
        }

/* Sub-category list */
.sp-subcat-list {
    display: none;
}

    .sp-subcat-list.show {
        display: block;
    }

    .sp-subcat-list.collapse {
        display: none !important;
    }

        .sp-subcat-list.collapse.show {
            display: block !important;
        }

    .sp-subcat-list.show {
        display: block !important;
        visibility: visible !important;
        height: auto !important;
    }

    .sp-subcat-list li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 5px 10px;
        border-radius: 8px;
        font-size: 12px;
        color: #6b7280;
        text-decoration: none;
        transition: background .18s, color .18s;
    }

        .sp-subcat-list li a:hover {
            background: #f3f4f6;
            color: #374151;
        }

        .sp-subcat-list li a.active {
            background: #fff7ed;
            color: #f97316;
            font-weight: 600;
        }

        .sp-subcat-list li a span {
            font-size: 10px;
            color: #9ca3af;
            background: #f3f4f6;
            padding: 1px 6px;
            border-radius: 50px;
        }

.sp-brand-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
}

    .sp-brand-list li {
        margin: 0;
        padding: 0;
    }

.widget_brands .sp-brand-list li a,
.widget_brands .widget_dropdown_categories li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    margin-bottom: 1px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
    color: #374151 !important;
    color: #374151 !important;
    background: transparent;
    text-decoration: none !important;
    transition: all .18s ease;
}
    /* Hover */
    .widget_brands .sp-brand-list li a:hover,
    .widget_brands .widget_dropdown_categories li a:hover {
        background: #fff7ed;
        color: #f97316 !important;
        text-decoration: none !important;
    }

    /* Active */
    .widget_brands .sp-brand-list li a.active,
    .widget_brands .widget_dropdown_categories li a.active {
        background: #fff7ed;
        color: #f97316 !important;
        font-weight: 600;
    }


    /* Visited */
    .widget_brands .sp-brand-list li a:visited,
    .widget_brands .widget_dropdown_categories li a:visited {
        color: #374151 !important;
        text-decoration: none !important;
    }

    /* Focus */
    .widget_brands .sp-brand-list li a:focus,
    .widget_brands .widget_dropdown_categories li a:focus {
        outline: none;
        text-decoration: none !important;
    }

    /* Remove underline in all states */
    .widget_brands .sp-brand-list li a,
    .widget_brands .sp-brand-list li a:hover,
    .widget_brands .sp-brand-list li a:focus,
    .widget_brands .sp-brand-list li a:active,
    .widget_brands .sp-brand-list li a:visited,
    .widget_brands .widget_dropdown_categories li a,
    .widget_brands .widget_dropdown_categories li a:hover,
    .widget_brands .widget_dropdown_categories li a:focus,
    .widget_brands .widget_dropdown_categories li a:active,
    .widget_brands .widget_dropdown_categories li a:visited {
        text-decoration: none !important;
    }

.sp-filter-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #111827;
    margin-bottom: .85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sp-range-wrap {
    padding: 4px 0 8px;
}

#slider-range {
    margin-bottom: 10px;
}

#amount {
    font-size: 12px;
    color: #374151;
    background: none;
    border: none;
    width: 100%;
    padding: 0;
}

.sp-recent-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
    text-decoration: none;
}

    .sp-recent-item:last-child {
        border-bottom: none;
    }

.sp-recent-thumb {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #f3f4f6;
}

.sp-recent-name {
    font-size: 12px;
    font-weight: 500;
    color: #374151;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 3px;
    transition: color .2s;
}

.sp-recent-item:hover .sp-recent-name {
    color: #f97316;
}

.sp-recent-price {
    font-size: 12px;
    font-weight: 700;
    color: #f97316;
}

.sp-recent-old {
    font-size: 11px;
    color: #9ca3af;
    text-decoration: line-through;
    margin-left: 4px;
}

.sp-flash-price {
    font-size: 12px;
    font-weight: 700;
    color: #ef4444;
}

.sp-vendors-wrap {
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    margin-bottom: 1rem;
    box-shadow: 0 1px 6px rgba(0,0,0,.05);
}

.sp-vendor-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    cursor: pointer;
    transition: all .2s;
}

    .sp-vendor-tag:hover {
        border-color: #f97316;
        background: #fff7ed;
        color: #f97316;
        transform: translateY(-1px);
    }

    .sp-vendor-tag.active {
        background: #f97316;
        border-color: #f97316;
        color: #fff;
        box-shadow: 0 4px 14px rgba(249,115,22,.3);
    }

.sp-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    background: #fff;
    border-radius: 12px;
    padding: 10px 14px;
    margin-bottom: 1.1rem;
    box-shadow: 0 1px 6px rgba(0,0,0,.05);
    overflow: visible;
}

.sp-toolbar-count {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

    .sp-toolbar-count strong {
        color: #111827;
        font-weight: 700;
    }

.sp-toolbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: visible;
}

.sp-clear-btn {
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 8px;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    color: #6b7280;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all .2s;
}

    .sp-clear-btn:hover {
        border-color: #ef4444;
        color: #ef4444;
        background: #fef2f2;
    }

.sp-view-btns {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sp-view-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
}

    .sp-view-btn:hover, .sp-view-btn.active {
        background: #111827;
        border-color: #111827;
        color: #fff;
    }

#productContainer {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
}

    #productContainer > .sp-grid-card,
    #productContainer > .sp-list-card {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        min-width: 0;
    }

@media (max-width: 991.98px) {
    #productContainer {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px !important;
    }
}

@media (max-width: 767.98px) {
    #productContainer {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px !important;
    }
}

@media (max-width: 575.98px) {
    #productContainer {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px !important;
    }
}

@media (max-width: 767.98px) {
    .sp-grid-card .vc-pc {
        border-radius: 14px;
    }

    .sp-grid-card .vc-pc-body {
        padding: 8px 9px 10px;
    }

    .sp-grid-card .vc-pc-name {
        font-size: 12px;
        line-height: 1.35;
        -webkit-line-clamp: 2;
        margin-bottom: 4px;
    }

    .sp-grid-card .vc-pc-stars {
        font-size: 9px;
        margin-bottom: 3px;
    }

    .sp-grid-card .vc-pc-price {
        flex-wrap: nowrap;
        gap: 5px;
        align-items: baseline;
    }

    .sp-grid-card .vc-pc-cur {
        font-size: 13px;
    }

    .sp-grid-card .vc-pc-old {
        font-size: 10px;
    }

    .sp-grid-card .vc-pc-badge {
        font-size: 9px;
        font-weight: 700;
        padding: 3px 8px;
        top: 8px;
        border-radius: 50px;
    }

    .sp-grid-card .vc-pc-wish {
        width: 28px;
        height: 28px;
        top: 8px;
        right: 8px;
    }

        .sp-grid-card .vc-pc-wish i {
            font-size: 11px;
        }
}

@media (max-width: 575.98px) {
    .sp-grid-card .vc-pc-name {
        font-size: 11px;
    }

    .sp-grid-card .vc-pc-cur {
        font-size: 12px;
    }
}

.sp-grid-card .vc-pc {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 1px 6px rgba(0,0,0,.06);
    overflow: hidden;
    transition: box-shadow .25s, transform .25s;
}

    .sp-grid-card .vc-pc:hover {
        box-shadow: 0 6px 24px rgba(0,0,0,.12);
        transform: translateY(-3px);
    }

.sp-grid-card .vc-pc-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f3f4f6;
    flex-shrink: 0;
}

    .sp-grid-card .vc-pc-img img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .4s;
    }

.sp-grid-card .vc-pc:hover .vc-pc-img img {
    transform: scale(1.06);
}

.sp-grid-card .vc-pc-noimg {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    font-size: 10px;
    gap: 4px;
}

    .sp-grid-card .vc-pc-noimg i {
        font-size: 1.4rem;
    }

.sp-grid-card .vc-pc-badge {
    position: absolute;
    top: 7px;
    left: 8px;
    right: auto !important;
    background: #ef4444;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 50px;
    z-index: 2;
}

.sp-grid-card .vc-pc-wish {
    position: absolute;
    top: 7px;
    right: 7px;
    z-index: 2;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(4px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    box-shadow: 0 1px 5px rgba(0,0,0,.1);
    text-decoration: none;
    transition: all .22s;
    cursor: pointer;
}

    .sp-grid-card .vc-pc-wish:hover,
    .sp-grid-card .vc-pc-wish.active {
        background: #fee2e2;
        color: #ef4444;
        transform: scale(1.1);
    }

    .sp-grid-card .vc-pc-wish i {
        font-size: 12px;
    }

.sp-grid-card .vc-pc-body {
    padding: 8px 9px 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sp-grid-card .vc-pc-stars {
    display: flex;
    align-items: center;
    gap: 1px;
    font-size: 9px;
    color: #d1d5db;
    margin-bottom: 3px;
}

    .sp-grid-card .vc-pc-stars .fs,
    .sp-grid-card .vc-pc-stars .hs {
        color: #f59e0b;
    }

    .sp-grid-card .vc-pc-stars .rc {
        color: #9ca3af;
        font-size: 9px;
        margin-left: 2px;
    }

.vc-pc-stars .hs {
    color: #f59e0b;
}

.sp-grid-card .vc-pc-name {
    font-size: 11px;
    font-weight: 600;
    color: #111827;
    line-height: 1.35;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
    flex: 1;
}

    .sp-grid-card .vc-pc-name:hover {
        color: #f97316;
    }

.sp-grid-card .vc-pc-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
    margin-top: auto;
}

.sp-grid-card .vc-pc-cur {
    font-size: 13px;
    font-weight: 700;
    color: #f97316;
}

.sp-grid-card .vc-pc-old {
    font-size: 10px;
    color: #9ca3af;
    text-decoration: line-through;
}

.sp-list-card {
    display: none;
}

#productContainer.list-view {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
}

    #productContainer.list-view .sp-grid-card {
        display: none !important;
    }

    #productContainer.list-view .sp-list-card {
        display: flex !important;
    }

.sp-list-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 1px 6px rgba(0,0,0,.06);
    overflow: hidden;
    align-items: stretch;
    transition: box-shadow .25s;
    gap: 15px;
}

    .sp-list-card:hover {
        box-shadow: 0 4px 18px rgba(0,0,0,.1);
    }

.sp-list-img {
    position: relative;
    overflow: hidden;
    background: #f3f4f6;
    width: 140px;
    min-width: 140px;
    flex-shrink: 0;
}

    .sp-list-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s;
        display: block;
    }

.sp-list-card:hover .sp-list-img img {
    transform: scale(1.05);
}


.sp-list-name:hover {
    color: #f97316;
}





.sp-list-cur {
    font-size: 16px;
    font-weight: 700;
    color: #f97316;
}

.sp-list-old {
    font-size: 12px;
    color: #9ca3af;
    text-decoration: line-through;
    margin-left: 6px;
}

.sp-list-stars .fs {
    color: #f59e0b;
}

.sp-list-stars .hs {
    color: #f59e0b;
}

.sp-list-stars .rc {
    color: #9ca3af;
    font-size: 11px;
    margin-left: 3px;
}

.sp-list-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    background: #111827;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background .22s;
    align-self: flex-start;
    margin-top: auto;
}

    .sp-list-btn:hover {
        background: #f97316;
        color: #fff;
    }

.sp-list-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 8px;
}

.sp-list-badge {
    display: inline-block;
    background: #ef4444;
    color: #fff;
    font-size: 10px; /* was 10px */
    font-weight: 600; /* was 700 */
    padding: 2px 7px; /* slightly smaller */
    border-radius: 50px;
    line-height: 1.4;
    margin-bottom: 4px;
}

.sp-list-cur {
    font-size: 16px;
    font-weight: 700;
    color: #f97316;
}

.sp-list-old {
    font-size: 12px;
    color: #9ca3af;
    text-decoration: line-through;
    margin-left: 6px;
}

@media (max-width: 575.98px) {
    .sp-list-img {
        width: 100px;
        min-width: 100px;
    }

    .sp-list-body {
        padding: 10px 12px;
    }

    .sp-list-name {
        flex: 1;
        font-size: 13px;
        font-weight: 600;
        color: #111827;
        line-height: 1.4;
        text-decoration: none;
    }

    .sp-list-cur {
        font-size: 14px;
    }
}

.sp-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    margin-top: 2rem;
    list-style: none;
    padding: 0;
}

    .sp-pagination li a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 36px;
        height: 36px;
        border-radius: 9px;
        border: 1.5px solid #e5e7eb;
        background: #fff;
        color: #374151;
        font-size: 13px;
        font-weight: 500;
        text-decoration: none;
        transition: all .2s;
        padding: 0 10px;
    }

        .sp-pagination li a:hover {
            border-color: #f97316;
            color: #f97316;
            background: #fff7ed;
        }

        .sp-pagination li a.current {
            background: #f97316;
            border-color: #f97316;
            color: #fff;
            font-weight: 700;
        }

        .sp-pagination li a.disabled {
            opacity: .35;
            pointer-events: none;
        }

.sp-empty {
    grid-column: 1 / -1;
    padding: 4rem 2rem;
    text-align: center;
    color: #9ca3af;
}

    .sp-empty i {
        font-size: 3rem;
        color: #e5e7eb;
        display: block;
        margin-bottom: 12px;
    }

    .sp-empty p {
        font-size: 14px;
    }

.sp-filter-toggle-btn {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: #111827;
    color: #fff;
    border: none;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}

    .sp-filter-toggle-btn:hover {
        background: #f97316;
    }

@media (max-width: 991.98px) {
    .sp-filter-toggle-btn {
        display: inline-flex;
    }
}

#sp-filter-offcanvas .offcanvas-header {
    background: #111827;
    padding: 14px 18px;
}

#sp-filter-offcanvas .offcanvas-title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

#sp-filter-offcanvas .btn-close-white {
    filter: invert(1);
}

#sp-filter-offcanvas .offcanvas-body {
    padding: 0;
    background: #f8f9fb;
    overflow-y: auto;
}

#sp-filter-offcanvas .sp-sidebar {
    position: static;
    max-height: none;
    border-radius: 0;
    box-shadow: none;
    overflow-y: visible;
}

@media (max-width: 575.98px) {
    .sp-grid-card .vc-pc-body {
        padding: 6px 7px 8px;
    }

    .sp-grid-card .vc-pc-name {
        font-size: 10px;
    }

    .sp-grid-card .vc-pc-cur {
        font-size: 11px;
    }

    .sp-grid-card .vc-pc-old {
        font-size: 9px;
    }

    .sp-grid-card .vc-pc-stars {
        font-size: 8px;
    }

    .sp-grid-card .vc-pc-badge {
        font-size: 8px;
        padding: 2px 5px;
    }
}

@media (max-width: 767.98px) {
    .sp-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .sp-toolbar-right {
        width: 100%;
        justify-content: space-between;
    }
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

.sp-active-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.sp-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.4;
    cursor: pointer;
    transition: opacity .15s;
}

    .sp-chip:hover {
        opacity: .8;
        text-decoration: none;
    }

.sp-chip--vendor {
    background: #fff3ed;
    color: #c2410c;
    border: 1.5px solid #fed7aa;
}

.sp-chip--area {
    background: #f0f9ff;
    color: #0369a1;
    border: 1.5px solid #bae6fd;
}

.sp-vendor-tags {
    display: none;
}

    .sp-vendor-tags.active {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

.sp-combo {
    position: relative;
    width: 180px;
    flex-shrink: 0;
    z-index: 100;
}

    .sp-combo.open {
        z-index: 200;
    }

.sp-combo-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    width: 100%;
    padding: 6px 10px;
    border: 1.5px solid #e5e7eb;
    border-radius: 9px;
    background: #fff;
    font-size: 12px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: border-color .18s, background .18s;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
}

    .sp-combo-trigger:hover {
        border-color: #f97316;
        background: #fff7ed;
        color: #f97316;
    }

.sp-combo.has-value .sp-combo-trigger {
    border-color: #f97316;
    background: #fff7ed;
    color: #c2410c;
    font-weight: 600;
}

.sp-combo-caret {
    font-size: 10px;
    color: #9ca3af;
    flex-shrink: 0;
    transition: transform .2s;
}

.sp-combo.open .sp-combo-caret {
    transform: rotate(180deg);
}

.sp-combo-value {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

.sp-combo-clear {
    display: none;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fed7aa;
    color: #c2410c;
    font-size: 9px;
    font-weight: 700;
    flex-shrink: 0;
    cursor: pointer;
    transition: background .15s;
    line-height: 1;
}

.sp-combo.has-value .sp-combo-clear {
    display: inline-flex;
}

.sp-combo-clear:hover {
    background: #f97316;
    color: #fff;
}

.sp-combo-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    min-width: 200px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
    overflow: hidden;
    z-index: 9999;
}

.sp-combo.open .sp-combo-dropdown {
    display: block;
    animation: spComboFadeIn .15s ease;
}

@keyframes spComboFadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sp-combo-search-wrap {
    padding: 8px 10px 6px;
    border-bottom: 1px solid #f3f4f6;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}

.sp-combo-search {
    width: 100%;
    padding: 5px 10px 5px 28px;
    border: 1.5px solid #e5e7eb;
    border-radius: 7px;
    font-size: 12px;
    color: #374151;
    background: #f9fafb url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") no-repeat 9px center;
    transition: border-color .18s;
    outline: none;
    box-sizing: border-box;
}

    .sp-combo-search:focus {
        border-color: #f97316;
        background-color: #fff;
    }

.sp-combo-list {
    list-style: none;
    margin: 0;
    padding: 4px 0;
    max-height: 220px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #e5e7eb transparent;
}

    .sp-combo-list::-webkit-scrollbar {
        width: 4px;
    }

    .sp-combo-list::-webkit-scrollbar-thumb {
        background: #e5e7eb;
        border-radius: 4px;
    }

.sp-combo-option {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    font-size: 12px;
    color: #374151;
    cursor: pointer;
    transition: background .15s, color .15s;
}

    .sp-combo-option:hover {
        background: #f3f4f6;
        color: #111827;
    }

        .sp-combo-option:hover::before {
            background: #f97316;
        }

    .sp-combo-option.selected {
        background: #fff7ed;
        color: #c2410c;
        font-weight: 600;
    }

        .sp-combo-option.selected::before {
            background: #f97316;
        }

    .sp-combo-option.sp-combo-disabled {
        opacity: .35;
        pointer-events: none;
        cursor: default;
    }

.sp-combo-empty {
    padding: 12px 14px;
    font-size: 12px;
    color: #9ca3af;
    text-align: center;
    display: none;
}

@media (max-width: 767.98px) {
    .sp-combo {
        width: 140px;
    }
}
.sp-list-body {
    position: relative;
    flex: 1;
    padding-right: 170px;
    padding: 12px 150px 12px 0;
}

.sp-list-price {
    position: absolute;
    top: 12px;
    right: 10px;
    width: 120px;
    text-align: right;
}

.sp-list-name {
    display: block;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
    color: #1f2937;
    text-decoration: none;
    margin-bottom: 8px;
    padding-right: 10px;
}

.sp-list-stars {
    margin-bottom: 8px;
}

.sp-list-desc {
    margin-bottom: 0;
    margin-top: 0;
}