.amz-sidebar::-webkit-scrollbar {
    width: 5px;
}

.amz-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.amz-sidebar::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 10px;
}

.amz-filter-group {
    margin-bottom: 25px;
}

.amz-title {
    color: #102027;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

.amz-scroll-box {
    max-height: 180px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-right: 5px;
}

.amz-scroll-box::-webkit-scrollbar {
    width: 4px;
}

.amz-scroll-box::-webkit-scrollbar-thumb {
    background: #475569;
    border-radius: 4px;
}

.amz-check {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #334155;
    font-size: 13px;
    line-height: 1.4;
    transition: 0.2s;
}

.amz-check:hover {
    color: #102027;
}

.amz-check input {
    display: none;
}

.amz-check .chk-box {
    width: 16px;
    height: 16px;
    border: 1px solid #475569;
    background: #fffdf8;
    border-radius: 3px;
    margin-right: 10px;
    display: inline-block;
    position: relative;
    transition: 0.2s;
    flex-shrink: 0;
}

.amz-check input:checked + .chk-box {
    background: #a855f7;
    border-color: #a855f7;
}

.amz-check input:checked + .chk-box::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 4px;
    border-left: 2px solid #102027;
    border-bottom: 2px solid #102027;
    transform: translate(-50%, -60%) rotate(-45deg);
}

.preset-pill {
    cursor: pointer;
}

.preset-pill span {
    display: inline-block;
    padding: 6px 12px;
    background: #fffdf8;
    border: 1px solid #334155;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #334155;
    transition: 0.2s;
}

.preset-pill:hover span {
    border-color: #a855f7;
    color: #102027;
}

.preset-pill input:checked + span {
    background: rgba(168, 85, 247, 0.2);
    border-color: #a855f7;
    color: #102027;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

.amz-rate-label {
    cursor: pointer;
    color: #334155;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
    transition: 0.2s;
}

.amz-rate-label:hover {
    color: #102027;
}

.amz-rate-label input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #475569;
    border-radius: 50%;
    background: #fffdf8;
    margin: 0;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: 0.2s;
}

.amz-rate-label input[type="radio"]:checked {
    border-color: #a855f7;
}

.amz-rate-label input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #a855f7;
    border-radius: 50%;
}

.stars {
    color: #f59e0b;
    letter-spacing: 1px;
    font-size: 14px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-summary {
    font-size: 18px;
    font-weight: 700;
    color: #102027;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary::after {
    content: "+";
    color: #a855f7;
    font-size: 24px;
    font-weight: 400;
    transition: 0.3s;
}

details[open] .faq-summary::after {
    content: "-";
    transform: rotate(180deg);
}

.faq-content {
    padding-top: 15px;
    color: #5b6870;
    font-size: 15px;
    line-height: 1.7;
}
