/* ============================================
   VÄRIT (ALKUPERÄISET)
============================================ */
:root {
    --primary: #09246C;
    --bg: #F2F5FD;
    --accent: #C9A24D;
    --text: #1F1F1F;
    --heading: #163792;
    --card: #ffffff;
    --muted: #6b7280;
    --radius: 12px;
}

/* ============================================
   YLEISET
============================================ */
body.vk-lightbox-open {
    overflow: hidden;
}

/* ============================================
   GALLERIA
============================================ */
.vk-galleria {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
}

/* Pääkuva - KIINTEÄ KORKEUS */
.vk-main-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    height: 420px;
    cursor: pointer; /* Lisätty osoittamaan klikattavuus */
}

.vk-main-image-wrap img.vk-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .vk-main-image-wrap{
      height: 200px;  
    }
}

.vk-main-image-wrap:hover .vk-main-image {
    transform: scale(1.02);
}

.vk-zoom-hint {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    pointer-events: none; /* Estää zoom-hintin häiritsemästä klikkausta */
}

.vk-main-image-wrap:hover .vk-zoom-hint {
    opacity: 1;
    transform: translateY(0);
}

/* Thumbnailit */
.vk-thumbs-wrap {
    margin-bottom: 24px;
}

.vk-thumbs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
    align-items: stretch;
}

.vk-thumbs::-webkit-scrollbar {
    height: 6px;
}

.vk-thumbs::-webkit-scrollbar-thumb {
    background-color: var(--accent);
    border-radius: 3px;
}

.vk-thumb {
    height: 80px;
    width: 80px;
    flex: 0 0 auto;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.vk-thumb:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.vk-thumb.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.3);
}

.vk-thumb img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.vk-thumbs-hint {
    color: var(--muted);
    font-size: 13px;
    font-style: italic;
    margin-top: 8px;
}

/* ============================================
   LIGHTBOX
============================================ */
.vk-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.vk-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.vk-lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.vk-lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 85vh;
}

.vk-lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.vk-lightbox-close,
.vk-lightbox-prev,
.vk-lightbox-next {
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vk-lightbox-close:hover,
.vk-lightbox-prev:hover,
.vk-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.vk-lightbox-close {
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 32px;
    line-height: 1;
}

.vk-lightbox-prev,
.vk-lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 40px;
    line-height: 1;
}

.vk-lightbox-prev {
    left: 20px;
}

.vk-lightbox-next {
    right: 20px;
}

.vk-lightbox-prev:hover,
.vk-lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

.vk-lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
}

/* ============================================
   ESIKATSELU
============================================ */
.vk-preview-container {
    position: relative;
    min-height: 320px;
    margin-bottom: 24px;
}

.vk-preview-set {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(6, 10, 20, 0.06);
    border: 1px solid rgba(8, 12, 20, 0.04);
}

.vk-preview-set.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* Keittiö */
.vk-kitchen-preview {
    background: linear-gradient(180deg, #fff, #f8fafc);
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.vk-counter-wrap {
    min-width: 260px;
}

.vk-counter {
    width: 100%;
    height: 110px;
    background: #e5e7eb;
    border-radius: 8px;
    box-shadow: inset 0 -6px 14px rgba(0, 0, 0, 0.06);
    background-size: cover;
    background-position: center;
}

.vk-backsplash {
    height: 54px;
    background: #f3f4f6;
    margin-top: 12px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background-size: cover;
    background-position: center;
}

.vk-cabinets {
    flex: 1;
    height: 176px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background-size: cover;
    background-position: center;
}

/* Kylpyhuone */
.vk-bath-preview {
    padding: 20px;
    background: linear-gradient(180deg, #fff, #fbfcff);
    display: flex;
    gap: 16px;
    align-items: center;
}

.vk-bath-tiles {
    width: 140px;
    height: 140px;
    background: #e9e9ea;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.vk-bath-floor {
    flex: 1;
    height: 140px;
    background: #d6d6d6;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ============================================
   VÄRIMAAILMAVALITSIN
============================================ */
.vk-style-selector {
    background: var(--card);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: 0 6px 20px rgba(6, 10, 20, 0.06);
    margin-bottom: 24px;
}

.vk-style-selector h3 {
    margin: 0 0 8px 0;
    color: var(--heading);
    font-size: 18px;
    font-weight: 700;
}

.vk-style-selector > p {
    margin: 0 0 16px 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.vk-style-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}

.vk-style-btn {
    position: relative;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    padding: 12px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-size: cover;
    background-position: center;
}

.vk-style-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    z-index: 1;
}

.vk-style-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.vk-style-btn.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(201, 162, 77, 0.3), 0 8px 20px rgba(0, 0, 0, 0.15);
}

.vk-style-btn span {
    position: relative;
    z-index: 2;
    color: white;
    font-weight: 700;
    font-size: 14px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    text-align: left;
    line-height: 1.3;
}

/* ============================================
   MATERIAALIT
============================================ */
.vk-materials-container {
    position: relative;
    min-height: 200px;
}

.vk-materials-set {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.vk-materials-set.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.vk-material {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.vk-material-img {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    transition: transform 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.vk-material-img:hover {
    transform: scale(1.03);
}

.vk-material span {
    display: block;
    font-weight: 600;
    color: var(--heading);
    font-size: 14px;
}

/* ============================================
   RESPONSIIVISUUS
============================================ */
@media (max-width: 768px) {
    .vk-zoom-hint {
        display: none;
    }
    
    .vk-lightbox-prev,
    .vk-lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 28px;
    }
    
    .vk-lightbox-prev {
        left: 10px;
    }
    
    .vk-lightbox-next {
        right: 10px;
    }
    
    .vk-lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 24px;
        top: 10px;
        right: 10px;
    }
    
    .vk-kitchen-preview {
        flex-direction: column;
        padding: 16px;
    }
    
    .vk-counter-wrap {
        min-width: 100%;
    }
    
    .vk-cabinets {
        width: 100%;
        height: 140px;
    }
    
    .vk-bath-preview {
        flex-direction: column;
        padding: 16px;
    }
    
    .vk-bath-tiles,
    .vk-bath-floor {
        width: 100%;
    }
    
    .vk-style-grid {
        grid-template-columns: 1fr;
    }
    
    .vk-thumb {
        width: 60px;
        height: 60px;
    }

    .vk-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .vk-preview-container,
    .vk-materials-container {
        min-height: auto;
    }
}















:root {
    --vk-primary: #09246C;
    --vk-accent: #C9A24D;
    --vk-bg: #F2F5FD;
    --vk-text: #1F1F1F;
    --vk-muted: #6b7280;
    --vk-border: #e5e7eb;
    --vk-radius: 12px;
    --vk-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --vk-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* --- Container --- */
.vk-suodatus-container {
    background: var(--vk-bg);
    padding: 32px;
    border-radius: var(--vk-radius);
    margin-bottom: 32px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --- Header --- */
.vk-suodatus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--vk-border);
}

.vk-tulokset-info {
    font-size: 18px;
    font-weight: 600;
    color: var(--vk-primary);
}

.vk-tulokset-luku {
    color: var(--vk-accent);
    font-size: 24px;
    font-weight: 700;
}

.vk-tyhjenna-suodattimet {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--vk-border);
    border-radius: 50px;
    color: var(--vk-muted);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vk-tyhjenna-suodattimet:hover {
    border-color: var(--vk-accent);
    color: var(--vk-accent);
    background: rgba(201, 162, 77, 0.05);
}

.vk-tyhjenna-suodattimet svg {
    transition: transform 0.3s ease;
}

.vk-tyhjenna-suodattimet:hover svg {
    transform: rotate(-180deg);
}

/* --- Lomake --- */
.vk-suodatus-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vk-suodatus-rivi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    align-items: end;
}

.vk-suodatus-kentta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vk-suodatus-kentta label {
    font-size: 13px;
    font-weight: 600;
    color: var(--vk-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Select-kentät */
.vk-select-wrap {
    position: relative;
}

.vk-select-wrap select {
    width: 100%;
    padding: 14px 40px 14px 16px;
    background: white;
    border: 2px solid var(--vk-border);
    border-radius: 8px;
    font-size: 15px;
    color: var(--vk-text);
    cursor: pointer;
    appearance: none;
    transition: all 0.2s ease;
}

.vk-select-wrap select:hover,
.vk-select-wrap select:focus {
    border-color: var(--vk-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.1);
}

.vk-select-ikoni {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--vk-muted);
    transition: transform 0.2s ease;
}

.vk-select-wrap:hover .vk-select-ikoni {
    transform: translateY(-50%) rotate(180deg);
    color: var(--vk-accent);
}

/* Range/Number inputs */
.vk-range-wrap {
    background: white;
    padding: 4px;
    border: 2px solid var(--vk-border);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.vk-range-wrap:hover,
.vk-range-wrap:focus-within {
    border-color: var(--vk-accent);
    box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.1);
}

.vk-range-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vk-range-inputs input {
    flex: 1;
    padding: 10px 12px;
    border: none;
    background: transparent;
    font-size: 15px;
    color: var(--vk-text);
    text-align: center;
    outline: none;
}

.vk-range-inputs input::placeholder {
    color: var(--vk-muted);
}

.vk-range-divider {
    color: var(--vk-muted);
    font-weight: 300;
}

/* Pill-painikkeet (huoneet) */
.vk-pill-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.vk-pill {
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--vk-border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--vk-text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.vk-pill:hover {
    border-color: var(--vk-accent);
    color: var(--vk-accent);
    transform: translateY(-1px);
}

.vk-pill.active {
    background: var(--vk-accent);
    border-color: var(--vk-accent);
    color: white;
    box-shadow: 0 4px 12px rgba(201, 162, 77, 0.3);
}

/* Checkboxit */
.vk-ominaisuudet-rivi {
    margin-top: 8px;
}

.vk-checkbox-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.vk-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 16px 8px 8px;
    background: white;
    border: 2px solid var(--vk-border);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.vk-checkbox:hover {
    border-color: var(--vk-accent);
}

.vk-checkbox input {
    display: none;
}

.vk-checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--vk-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    position: relative;
}

.vk-checkmark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -6px;
    margin-left: -3px;
}

.vk-checkbox input:checked + .vk-checkmark {
    background: var(--vk-accent);
    border-color: var(--vk-accent);
}

.vk-checkbox input:checked + .vk-checkmark::after {
    transform: rotate(45deg) scale(1);
}

.vk-checkbox-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--vk-text);
    user-select: none;
}

/* Aktiiviset suodattimet -tagit */
.vk-aktiiviset-suodattimet {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--vk-border);
    min-height: 0;
}

.vk-suodatin-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--vk-primary);
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    animation: vk-tag-in 0.3s ease;
}

@keyframes vk-tag-in {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.vk-suodatin-tag .vk-tag-remove {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 12px;
}

.vk-suodatin-tag .vk-tag-remove:hover {
    background: rgba(255,255,255,0.2);
}

/* Responsiivisuus */
@media (max-width: 768px) {
    .vk-suodatus-container {
        padding: 20px;
    }
    
    .vk-suodatus-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .vk-suodatus-rivi {
        grid-template-columns: 1fr;
    }
    
    .vk-checkbox-group {
        justify-content: flex-start;
    }
    
    .vk-pill-group {
        justify-content: flex-start;
    }
}

/* Loading-tila */
.vk-suodatus-container.loading {
    opacity: 0.7;
    pointer-events: none;
}

.vk-suodatus-container.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid var(--vk-border);
    border-top-color: var(--vk-accent);
    border-radius: 50%;
    animation: vk-spin 1s linear infinite;
}

@keyframes vk-spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   SUODATUSJÄRJESTELMÄ - MOBIILI FIXIT JA JÄRJESTYS
   ============================================ */

/* Mobiili: Estä yli 100vw skaalaus */
@media (max-width: 768px) {
    .vk-suodatus-container {
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .vk-suodatus-form {
        width: 100%;
    }
    
    .vk-suodatus-rivi {
        width: 100%;
        grid-template-columns: 1fr;
    }
    
    .vk-range-inputs {
        width: 100%;
    }
    
    .vk-range-inputs input {
        min-width: 0;
        width: 100%;
    }
    
    /* Järjestysvalinta mobiililla */
    .vk-suodatus-header {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .vk-jarjestys-wrap {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    
    .vk-jarjestys-wrap label {
        font-size: 13px;
        font-weight: 600;
        color: var(--vk-text);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .vk-select-jarjestys {
        width: 100%;
    }
    
    .vk-select-jarjestys select {
        width: 100%;
    }
}

/* Järjestysvalinta desktop */
.vk-jarjestys-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    margin-right: 20px;
}

.vk-jarjestys-wrap label {
    font-size: 14px;
    font-weight: 600;
    color: var(--vk-text);
    white-space: nowrap;
}

.vk-select-jarjestys {
    min-width: 180px;
}

.vk-select-jarjestys select {
    width: 100%;
    padding: 10px 36px 10px 14px;
    background: white;
    border: 2px solid var(--vk-border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--vk-text);
    cursor: pointer;
    appearance: none;
    transition: all 0.2s ease;
}

.vk-select-jarjestys select:hover,
.vk-select-jarjestys select:focus {
    border-color: var(--vk-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.1);
}

/* Rakennusvuosi range-tyylit */
.vk-kentta-rakennusvuosi .vk-range-wrap {
    background: white;
    padding: 4px;
    border: 2px solid var(--vk-border);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.vk-kentta-rakennusvuosi .vk-range-wrap:hover,
.vk-kentta-rakennusvuosi .vk-range-wrap:focus-within {
    border-color: var(--vk-accent);
    box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.1);
}

.vk-kentta-rakennusvuosi .vk-range-inputs input {
    flex: 1;
    padding: 10px 12px;
    border: none;
    background: transparent;
    font-size: 15px;
    color: var(--vk-text);
    text-align: center;
    outline: none;
    min-width: 60px;
}

/* Headerin responsiivisuus */
@media (max-width: 992px) {
    .vk-suodatus-header {
        flex-wrap: wrap;
    }
    
    .vk-jarjestys-wrap {
        order: 3;
        width: 100%;
        margin: 10px 0 0 0;
        justify-content: space-between;
    }
    
    .vk-tyhjenna-suodattimet {
        order: 2;
    }
}

/* Pienet näytöt */
@media (max-width: 480px) {
    .vk-suodatus-container {
        padding: 16px;
    }
    
    .vk-suodatus-header {
        padding-bottom: 16px;
        margin-bottom: 16px;
    }
    
    .vk-checkbox-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .vk-checkbox {
        width: 100%;
        justify-content: flex-start;
    }
}
