/* TLAČÍTKA ŘAZENÍ ALIENROCKS - ZAOBLENÁ ZLATÁ #a7700c */
.listSorting {
    text-align: center !important;
    margin-top: 60px !important;       /* Pořádný odstup od produktů */
    margin-bottom: 50px !important;
    display: block !important;
    width: 100% !important;
}

.listSorting__control {
    background-color: transparent !important;
    border: 1px solid #a7700c !important; /* Přesná zlatá Skladem */
    color: #ffffff !important;            /* Bílý text */
    padding: 12px 26px !important;     
    margin: 8px 12px !important;       
    cursor: pointer !important;
    text-transform: uppercase !important;
    font-size: 11px !important;
    letter-spacing: 1.5px !important;  /* Mírný rozestup pro luxus */
    
    /* TADY JSME ZMĚNILI: ZAOBLENÉ ROHY (8px je moderní standard) */
    border-radius: 8px !important;
    
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

/* AKTIVNÍ TLAČÍTKO - Zlaté pozadí, černý text */
.listSorting__control--current {
    background-color: #a7700c !important;
    color: #000000 !important;
    font-weight: bold !important;
}

/* HOVER - při najetí myší */
.listSorting__control:hover:not(.listSorting__control--current) {
    background-color: rgba(167, 112, 12, 0.2) !important;
    border-color: #ffffff !important;  /* Rámeček při najetí zbělá */
}

/* SKRYTÍ LABELU "SEŘADIT PODLE" */
.listSorting__label {
    display: none !important;
}