.shop-sidebar-inner {
    background: #fff;
    border: 1px solid #efe8ea;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 8px 22px rgba(0,0,0,.03);
    position: sticky;
    top: 18px;
}
.shop-sidebar-title {
    font-size: 16px;
    font-weight: 900;
    color: #55585f;
    margin: 2px 0 14px;
}
.shop-filter-group {
    border-top: 1px solid #f1ecee;
    padding-top: 16px;
    margin-top: 16px;
}
.shop-filter-group:first-of-type {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}
.shop-filter-label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: #55585f;
    margin-bottom: 7px;
}
.shop-filter-input, .shop-filter-select {
    width: 100%;
    height: 42px;
    border: 1px solid #e8e0e3;
    border-radius: 11px;
    background: #fff;
    padding: 0 12px;
    font-size: 13px;
    color: #55585f;
    outline: none;
}
.shop-filter-input:focus, .shop-filter-select:focus {
    border-color: var(--theme-color);
}
.btn-apply-full {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 11px;
    border: 2px solid var(--theme-color);
    background: var(--theme-color);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(0,0,0,.10);
    cursor: pointer;
    transition: 0.3s;
    margin-top: 8px;
}
.btn-apply-full:hover {
    background: var(--theme-color2);
    border-color: var(--theme-color2);
    color: #fff;
}
.btn-clear-link {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #f29ab6;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    transition: 0.3s;
}
.btn-clear-link:hover {
    color: var(--theme-color);
}

.shop-sidebar .shop-widget {
    background: #fff !important;
    border: 1px solid #efe8ea !important;
    border-radius: 18px !important;
    padding: 18px !important;
    box-shadow: 0 8px 22px rgba(0,0,0,.03) !important;
    margin-bottom: 16px !important;
}

.shop-sidebar .shop-widget-title {
    font-size: 16px !important;
    font-weight: 900 !important;
    color: #55585f !important;
    margin: 2px 0 14px !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.shop-category-list li {
    margin-bottom: 8px !important;
}

.shop-category-list li a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    padding: 11px 12px !important;
    border-radius: 12px !important;
    color: #55585f !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    transition: .18s !important;
    background: #fff !important;
    border: 1px solid transparent !important;
}

.shop-category-list li a:hover,
.shop-category-list li a.active {
    background: color-mix(in srgb, var(--theme-color) 30%, white 70%) !important;
    color: var(--theme-color) !important;
    border-color:  var(--theme-color) !important;
}

.shop-category-list li a span {
    font-size: 11px !important;
    font-weight: 800 !important;
    color: #a0a4a9 !important;
    float: none;
}

.shop-search-form .form-group {
    position: relative;
}
.shop-search-form .form-control {
    width: 100% !important;
    height: 42px !important;
    border: 1px solid #e8e0e3 !important;
    border-radius: 11px !important;
    background: #fff !important;
    padding: 0 35px 0 12px !important;
    font-size: 13px !important;
    color: #55585f !important;
}
.shop-search-form .btn-search-name {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #68a646;
}

.product-item {
    background: #fff !important;
    border: 1px solid #efe8ea !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 22px rgba(0,0,0,.035) !important;
    padding: 0 !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}
.product-item::before {
    display: none !important;
}

.product-item .product-img {
    height: 235px !important;
    background: #f7f4f5 !important;
    border-radius: 18px 18px 0 0 !important;
    overflow: hidden !important;
    position: relative !important;
    width: 100% !important;
}

.product-item .product-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    padding: 0 !important;
}

.product-item .occ-badge,
.product-item .sd-badge,
.product-item .delivery-badge,
.product-item .preorder-badge {
    position: absolute !important;
    z-index: 3 !important;
    border-radius: 999px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    border: none !important;
}

.product-item .occ-badge,
.product-item .sd-badge {
    top: 12px !important;
    left: 12px !important;
    background: var(--theme-color) !important;
    color: #fff !important;
    padding: 7px 12px !important;
    font-size: 12px !important;
}

.product-item .preorder-badge,
.product-item .delivery-badge {
    bottom: 12px !important;
    left: 12px !important;
    background:  var(--theme-color2) !important;
    color: #fff !important;
    padding: 5px 9px !important;
    font-size: 10px !important;
}

.product-item .product-action-wrap {
    top: 12px !important;
    right: 12px !important;
    bottom: auto !important;
    left: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: auto !important;
}

.product-item .wishlist-btn {
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
    border: 1px solid #efe8ea !important;
    background: #fff !important;
    color: #f29ab6 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    line-height: 1 !important;
}
.product-item .wishlist-btn:hover {
    background: #f29ab6 !important;
    color: #fff !important;
}

.product-item .product-content {
    padding: 15px 15px 16px !important;
    background: #fff !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.product-item .product-title {
    margin: 0 0 8px !important;
}

.product-item .product-title a {
    color: #304a61 !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    line-height: 1.28 !important;
}

.product-item .merchant-name {
    font-size: 12px !important;
    color: #6c6f75 !important;
    margin-bottom: 10px !important;
}

.product-item .product-price .current-price {
    font-size: 17px !important;
    font-weight: 900 !important;
    color: var(--theme-color) !important;
}

.product-item .merchant-note {
    background: #fbfdf9 !important;
    border: 1px solid #e1ebda !important;
    border-radius: 12px !important;
    padding: 10px !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
    color: var(--theme-color) !important;
    margin-top: auto !important;
    margin-bottom: 12px !important;
}
.product-item .merchant-note b {
    color: var(--theme-color) !important;
}

.product-item .product-cart-btn {
    width: 36px !important;
    height: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 16px !important;
    border-radius: 50% !important;
    border: 2px solid var(--theme-color) !important;
    background: var(--theme-color) !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    box-shadow: 0 8px 18px rgba(104,166,70,.16) !important;
    cursor: pointer !important;
    line-height: 36px !important;

}
.product-item .product-cart-btn:hover {
    background: var(--theme-color) !important;
    border-color: var(--theme-color) !important;
}

.shop-item-wrap {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.shop-checkbox-list .form-check-label span{
    float: unset;
}

.shop-area2 .shop-item-wrap{
    background: #fff !important;
    border: 1px solid #efe8ea !important;
    border-radius: 20px !important;
    padding: 18px !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .035) !important;
}
.mobile-filter-btn{
    border-radius: 12px;
    height: 46px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-color: #e8e0e3;
}
@media(max-width: 780px) {
    .product-item .product-img {
        height: 250px !important;
    }
}
@media(max-width: 575px) {
    .product-item .product-img {
        height: 200px !important;
    }
}


.support-area-badge {
    background-color: #eef7ee;
    color: #3b823e;
    border: 1px solid #d4ebd5;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    max-width: 100%;
}

.pre-order-badge {
    background-color: #fdf5df;
    color: #b78103;
    border: 1px solid #fbe6ba;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
}

.same-day-badge {
    background-color: #e8f4fd;
    color: #1a73e8;
    border: 1px solid #cce4fc;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
}

.support-area-badge span, .pre-order-badge span, .same-day-badge span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.merchant-note-box {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 3px solid #3b82f6;
    color: #475569;
    font-size: 10.5px;
    padding: 6px 8px;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.3;
}

.merchant-note-box strong {
    color: #0f172a;
}