.cal-filter-section {
    margin-bottom: 32px;
}

.cal-filter-checkbox {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.cal-filter-checkbox input {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.cal-filter-drawer {
    position: fixed;
    top: 0;
    z-index: 100;
    transform: translateX(-280px);
    height: 100vh;
    width: calc(100% - 32px);
    max-width: 400px;
    display: flex;
    flex-direction: column;
    background-color: white;
    box-shadow: 4px 0 6px -1px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.2s, transform 0.3s;
    pointer-events: none;
}

.cal-filter-drawer._show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
}

.admin-bar .cal-filter-drawer {
    padding-top: var(--wp-admin--admin-bar--height);
}

.cal-filter-drawer-overlay {
    position: fixed;
    z-index: 99;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.1);
}

.cal-filter-drawer .cal-filter-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
}

.cal-filter-drawer-header .drawer-title {
    font-size: 24px;
    font-weight: 600;
}

.cal-filter-drawer-header .close-button {
    cursor: pointer;
}

.cal-filter-drawer-header .close-button > svg {
    display: block;
    pointer-events: none;
}

.cal-filter-drawer .cal-filter-drawer-content {
    padding: 16px;
}

.cal-filter-mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.cal-filter-mobile-header .product-search-filter-search form.product-search-form {
    margin-bottom: 0 !important;
}

@media (max-width: 1024px) {
    .cal-filter-mobile-header {
        display: flex;
    }
}
