.currency-switcher {
    position: relative;
    display: inline-block;
}

.custom-select {
    position: relative;
    display: inline-block;
    cursor: pointer;
    user-select: none;
}

.select-selected {
    position: relative;
    display: inline-block;
    padding-right: 14px;
    line-height: 1.2;
    color: #000;
    white-space: nowrap;
}

.select-selected::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 10px;
    height: 8px;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23212121' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.select-items {
    position: absolute;
    top: calc(100% + 8px);
    left: -25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    z-index: 1000;
    padding: 8px 0;
    width: 70px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.select-items div {
    display: block;
    width: 100%;
    padding: 5px 17px;
    line-height: 1.2;
    text-align: center;
    color: #999;
    white-space: nowrap;
    box-sizing: border-box;
    transition: color 0.15s ease;
}

.select-items div.active {
    color: #000;
    font-weight: 500;
}

.select-items div:hover {
    color: #000;
}

.d-none {
    display: none;
}

.category-title-custom {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #EDEDED;
    text-align: center;
}

@media (max-width: 768px) {
    .category-title-custom {
        padding: 0px;
        border-bottom: none;
    }
    .select-items {
        left: -30px;
        width: 85px;
    }
    .select-items div {
        padding: 9px 15px;
    }
}