.widgets-container {
    background-color: var(--surface-color);
    padding: 30px;
    margin: 60px 0 30px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

.widget-item {
    margin-bottom: 40px;
}

.widget-item:last-child {
    margin-bottom: 0;
}


[data-colorpreset="cp-light-background"],
.light-background {
    --background-color: #f8fbff;
    --surface-color: #ffffff;
}

[data-colorpreset="cp-dark-background"],
.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}


.services-2 .service-card {
    display: flex;
    flex-direction: column;
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.services-2 .service-card:hover {
    border-color: color-mix(in srgb, var(--accent-color) 40%, transparent);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.06), 0 4px 6px rgba(0, 0, 0, 0.04);
}

.services-2 .service-card:hover .card-media img {
    transform: scale(1.04);
}

.services-2 .service-card:hover .link-action {
    color: var(--accent-color);
}

.services-2 .service-card:hover .link-action i {
    transform: translateX(4px);
}

@media (max-width: 576px) {
    .services-2 .service-card {
        flex-direction: column;
    }
}

.services-2 .card-media {
    position: relative;
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: color-mix(in srgb, var(--default-color) 5%, transparent);
}

.services-2 .card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}


.services-2 .card-media .badge-container {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column; /* Memastikan arahnya vertikal */
    align-items: flex-start; /* Mengikuti lebar teks masing-masing badge */
    gap: 6px; /* Jarak antar badge (atas-bawah) */
    z-index: 2; /* Memastikan badge selalu di depan gambar */
}

.services-2 .card-media .badge-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--surface-color);
    color: var(--accent-color);
    border: 1px solid color-mix(in srgb, var(--accent-color) 25%, transparent);
    border-radius: 12px;
}

.services-2 .card-media .badge-label i {
    font-size: 12px;
}

@media (max-width: 576px) {
    .services-2 .card-media {
        flex: 0 0 200px;
        max-width: 100%;
        height: 200px;
    }
}

.services-2 .card-body {
    flex: 1 1 auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.services-2 .card-body p {
    font-size: 14px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color) 70%, transparent);
    margin-bottom: 16px;
    flex-grow: 1;
}

.services-2 .card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.services-2 .card-head h3 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin: 0;
    color: var(--heading-color);
}

.services-2 .card-head .meta-tag {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color) 55%, transparent);
    padding-top: 4px;
}

.services-2 .card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.services-2 .link-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--heading-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.services-2 .link-action i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.services-2 .link-action:focus {
    outline: none;
    color: var(--accent-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 20%, transparent);
    border-radius: 4px;
}

.services-2 .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px color-mix(in srgb, #22c55e 20%, transparent);
}

@media (max-width: 768px) {
    .services-2 .card-media {
        flex: 0 0 35%;
        max-width: 35%;
    }

    .services-2 .card-body {
        padding: 20px;
    }

    .services-2 .card-head h3 {
        font-size: 16px;
    }
}



.filter-widget .brand-filter-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.filter-widget .brand-search {
    position: relative;
    margin-bottom: 5px;
}

.filter-widget .brand-search input {
    color: var(--default-color);
    background-color: var(--surface-color);
    font-size: 14px;
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
    padding: 10px 35px 10px 15px;
}

.filter-widget .brand-search input:focus {
    border-color: var(--accent-color);
    box-shadow: none;
}

.filter-widget .brand-search input::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.filter-widget .brand-search .bi-search {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 14px;
}

.filter-widget .brand-list {
    max-height: 280px;
    overflow-y: auto;
    padding-right: 5px;
    /* Custom scrollbar */
}

.filter-widget .brand-list::-webkit-scrollbar {
    width: 5px;
}

.filter-widget .brand-list::-webkit-scrollbar-track {
    background: color-mix(in srgb, var(--default-color), transparent 95%);
    border-radius: 10px;
}

.filter-widget .brand-list::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--default-color), transparent 70%);
    border-radius: 10px;
}

.filter-widget .brand-list::-webkit-scrollbar-thumb:hover {
    background: color-mix(in srgb, var(--default-color), transparent 60%);
}

.filter-widget .brand-item {
    margin-bottom: 10px;
}

.filter-widget .brand-item:last-child {
    margin-bottom: 0;
}

.filter-widget .brand-item .form-check {
    display: flex;
    align-items: center;
    margin: 0;
}

.filter-widget .brand-item .form-check-input {
    margin-top: 0;
    margin-right: 10px;
    cursor: pointer;
}

.filter-widget .brand-item .form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: none;
}

.filter-widget .brand-item .form-check-input:focus {
    border-color: var(--accent-color);
    box-shadow: none;
}

.filter-widget .brand-item .form-check-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    font-size: 14px;
    color: var(--default-color);
}

.filter-widget .brand-item .brand-count {
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-left: auto;
}

.widgets-container .brand-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
    padding-top: 15px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.widgets-container .brand-actions .btn-outline-primary {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.widgets-container .brand-actions .btn-outline-primary:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.widgets-container .brand-actions .btn-link {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.widgets-container .brand-actions .btn-link:hover {
    color: var(--default-color);
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .filter-widget .brand-list {
        max-height: 200px;
    }
}



.filter-widget-2 .color-filter-content .color-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-widget-2 .color-filter-content .color-options .color-option {
    margin: 0;
    padding: 0;
    position: relative;
}

.filter-widget-2 .color-filter-content .color-options .color-option .form-check-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.filter-widget-2 .color-filter-content .color-options .color-option .form-check-input:checked~.form-check-label .color-swatch {
    transform: scale(1.15);
    border: 2px solid var(--accent-color);
}

.filter-widget-2 .color-filter-content .color-options .color-option .form-check-input:checked~.form-check-label .color-swatch::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.9;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

.filter-widget-2 .color-filter-content .color-options .color-option .form-check-input:checked~.form-check-label .color-swatch[style*="background-color: #ffffff"]::after {
    background-color: var(--accent-color);
}

.filter-widget-2 .color-filter-content .color-options .color-option .form-check-input:checked~.form-check-label .color-swatch[style*="background-color: #f1c40f"]::after,
.filter-widget-2 .color-filter-content .color-options .color-option .form-check-input:checked~.form-check-label .color-swatch[style*="background-color: #2ecc71"]::after {
    background-color: rgba(0, 0, 0, 0.5);
}

.filter-widget-2 .color-filter-content .color-options .color-option .form-check-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding-left: 0;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.filter-widget-2 .color-filter-content .color-options .color-option .form-check-label:hover {
    color: var(--accent-color);
}

.filter-widget-2 .color-filter-content .color-options .color-option .form-check-label:hover .color-swatch {
    transform: scale(1.1);
    border-color: var(--accent-color);
}

.filter-widget-2 .color-filter-content .color-options .color-option .color-swatch {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    margin-right: 0.75rem;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.2s ease;
}

.filter-widget-2 .color-filter-content .color-options .color-option .color-swatch[style*="background-color: #ffffff"] {
    border: 1px solid #e0e0e0;
}

.filter-widget-2 .color-filter-content .color-options .color-option .color-name {
    flex-grow: 1;
}

.filter-widget-2 .color-filter-content .color-options .color-option .product-count {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 0.85rem;
}

.filter-widget-2 .color-filter-content .filter-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 1.25rem;
}

.filter-widget-2 .color-filter-content .filter-actions .btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.filter-widget-2 .color-filter-content .filter-actions .btn.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.filter-widget-2 .color-filter-content .filter-actions .btn.btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), #000 10%);
    border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.filter-widget-2 .color-filter-content .filter-actions .btn.btn-primary:focus {
    box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 70%);
}

.filter-widget-2 .color-filter-content .filter-actions .btn.btn-outline-secondary {
    color: var(--default-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.filter-widget-2 .color-filter-content .filter-actions .btn.btn-outline-secondary:hover {
    background-color: color-mix(in srgb, var(--default-color), transparent 90%);
    color: var(--default-color);
}

@media (max-width: 767.98px) {
    .filter-widget-2 .color-filter-content .color-options {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem 1rem;
    }
}

@media (max-width: 575.98px) {
    .filter-widget-2 .color-filter-content .color-options {
        display: flex;
        flex-direction: column;
    }
}


.product-categories-widget .categories-container {
    margin-top: 1.25rem;
}

.product-categories-widget .category-group {
    margin-bottom: 0.5rem;
    border-radius: 0.375rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.product-categories-widget .category-group:last-child {
    margin-bottom: 0;
}

.product-categories-widget .category-header {
    display: flex;
    align-items: center;
    padding: 0.875rem 1rem;
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.product-categories-widget .category-header:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.product-categories-widget .category-header[aria-expanded=true] {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.product-categories-widget .category-header[aria-expanded=true] .toggle-icon {
    color: var(--accent-color);
}

.product-categories-widget .category-header.no-toggle {
    cursor: default;
}

.product-categories-widget .category-header.no-toggle:hover {
    background-color: var(--surface-color);
}

.product-categories-widget .category-name {
    flex-grow: 1;
    font-weight: 500;
    color: var(--heading-color);
}

.product-categories-widget .category-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.75rem;
    height: 1.5rem;
    padding: 0 0.5rem;
    margin-right: 0.75rem;
    background-color: color-mix(in srgb, var(--default-color), transparent 90%);
    color: var(--default-color);
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-categories-widget .toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    transition: color 0.3s;
}

.product-categories-widget .toggle-icon .bi-dash-lg {
    display: none;
}

.product-categories-widget .category-header[aria-expanded=true] .toggle-icon .bi-plus-lg {
    display: none;
}

.product-categories-widget .category-header[aria-expanded=true] .toggle-icon .bi-dash-lg {
    display: block;
}

.product-categories-widget .category-items {
    display: none;
    flex-direction: column;
    background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-top: none;
    border-bottom-left-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

.product-categories-widget .category-items.show {
    display: flex;
}

.product-categories-widget .category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    color: var(--default-color);
    text-decoration: none;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
    transition: background-color 0.3s;
}

.product-categories-widget .category-item:last-child {
    border-bottom: none;
}

.product-categories-widget .category-item:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    color: var(--accent-color);
}

.product-categories-widget .category-item:hover .item-count {
    background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
    color: var(--accent-color);
}

.product-categories-widget .item-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.25rem;
    padding: 0 0.375rem;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    border-radius: 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    transition: all 0.3s;
}

@media (max-width: 767.98px) {
    .product-categories-widget .category-header {
        padding: 0.75rem 0.875rem;
    }

    .product-categories-widget .category-item {
        padding: 0.625rem 0.875rem;
    }

    .product-categories-widget .category-count {
        min-width: 1.5rem;
        height: 1.375rem;
        margin-right: 0.5rem;
    }
}


.search-widget form {
    background: var(--background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
    padding: 3px 10px;
    position: relative;
    border-radius: 50px;
    transition: 0.3s;
}

.search-widget form input[type=text] {
    border: 0;
    padding: 4px 10px;
    border-radius: 4px;
    width: calc(100% - 40px);
    background-color: var(--background-color);
    color: var(--default-color);
}

.search-widget form input[type=text]:focus {
    outline: none;
}

.search-widget form button {
    background: none;
    color: var(--default-color);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    font-size: 16px;
    padding: 0 16px;
    transition: 0.3s;
    line-height: 0;
}

.search-widget form button i {
    line-height: 0;
}

.search-widget form button:hover {
    color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
    border-color: var(--accent-color);
}


.tags-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tags-widget ul li {
    display: inline-block;
}

.tags-widget ul a {
    background-color: color-mix(in srgb, var(--default-color), transparent 94%);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    border-radius: 50px;
    font-size: 14px;
    padding: 5px 15px;
    margin: 0 6px 8px 0;
    display: inline-block;
    transition: 0.3s;
}

.tags-widget ul a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.tags-widget ul a span {
    padding-left: 5px;
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    font-size: 14px;
}

.tags-widget ul li a.selected-tag {
    background-color: #0d6efd !important; /* Warna biru Bootstrap */
    color: #fff !important;
    border-color: #0d6efd !important;
}


.pricing-range-widget .price-range-container .current-range {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--heading-color);
}

.pricing-range-widget .price-range-container .range-slider {
    position: relative;
    height: 1.5rem;
    margin: 1.5rem 0;
}

.pricing-range-widget .price-range-container .range-slider .slider-track {
    position: absolute;
    width: 100%;
    height: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 0.25rem;
}

.pricing-range-widget .price-range-container .range-slider .slider-progress {
    position: absolute;
    height: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--accent-color);
    border-radius: 0.25rem;
}

.pricing-range-widget .price-range-container .range-slider input[type=range] {
    position: absolute;
    width: 100%;
    height: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}

.pricing-range-widget .price-range-container .range-slider input[type=range]::-webkit-slider-thumb {
    height: 1.25rem;
    width: 1.25rem;
    border-radius: 50%;
    background-color: var(--accent-color);
    cursor: pointer;
    pointer-events: auto;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.2s ease;
}

.pricing-range-widget .price-range-container .range-slider input[type=range]::-webkit-slider-thumb:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.pricing-range-widget .price-range-container .range-slider input[type=range]::-moz-range-thumb {
    height: 1.25rem;
    width: 1.25rem;
    border: none;
    border-radius: 50%;
    background-color: var(--accent-color);
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.2s ease;
}

.pricing-range-widget .price-range-container .range-slider input[type=range]::-moz-range-thumb:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.pricing-range-widget .price-range-container .range-slider input[type=range]:focus {
    outline: none;
}

.pricing-range-widget .price-range-container .range-slider input[type=range]:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.pricing-range-widget .price-range-container .range-slider input[type=range]:focus::-moz-range-thumb {
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.pricing-range-widget .price-range-container .range-slider .min-range {
    z-index: 1;
}

.pricing-range-widget .price-range-container .range-slider .max-range {
    z-index: 2;
}

.pricing-range-widget .price-range-container .price-inputs .input-group-text {
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--heading-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.pricing-range-widget .price-range-container .price-inputs .form-control {
    color: var(--default-color);
    background-color: var(--surface-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.pricing-range-widget .price-range-container .price-inputs .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: none;
}

.pricing-range-widget .price-range-container .price-inputs .form-control::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing-range-widget .price-range-container .filter-actions .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    transition: all 0.3s ease;
    font-size: 16px;
    padding: 10px 20px;
}

.pricing-range-widget .price-range-container .filter-actions .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), #000 10%);
    border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.pricing-range-widget .price-range-container .filter-actions .btn-primary:focus {
    box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 75%);
}