.court-filters-overlay {
    position: fixed;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.4);
    display:none;
    z-index: 9999;
}

.court-filters-popup {
    position: absolute;
    top:0; right:0;
    width: 320px;
    height: 100%;
    background: #fff;
    padding: 20px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    font-size: 20px;
}

.court-filters-overlay.active .court-filters-popup {
    transform: translateX(0);
}

#court-filters-toggle {
    cursor: pointer;
    margin-bottom: 10px;
}

.court-filters-close {
    float: right;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.filter-btn {
    display: inline-block;
    margin: 5px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    transition: 0.2s;
}

.filter-btn.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.filters-reset {
    text-align: center;
    margin-bottom: 10px;
    margin-top: 20px;
}

.reset-filters-btn {
    background: #eee;
    border: 1px solid #ccc;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 4px;
}

.reset-filters-btn:hover {
    background: #ddd;
}

#cart-button {
    position: relative;
}

/*.cart-badge {
    position: absolute;
    top: -6px;
    right: -22px;
    background: #18261E;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: bold;
}*/

.cart-wrapper {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -50px;
    right: -10px;
    background: #18261E;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 7px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
    pointer-events: none;
}