<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.snf-filter-wrapper {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 30px 20px !important;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif !important;
    background: #fff !important;
    border-radius: 8px !important;
    box-shadow: unset;
}

.snf-filter-container {
    display: grid !important;
    grid-template-columns: 61.8% 38.2% !important; /* Zlatni rez */
    gap: 30px !important;
    align-items: start !important;
}

.snf-filter-header {
    text-align: center !important;
    margin-bottom: 30px !important;
    grid-column: 1 / -1 !important;
}

.snf-filter-header h2 {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin: 0 0 10px 0 !important;
}

.snf-filter-header p {
    font-size: 16px !important;
    color: #666 !important;
    margin: 0 !important;
}

.snf-filter-form {
    margin-bottom: 20px !important;
}

.snf-filter-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 25px !important;
    margin-bottom: 25px !important;
}

.snf-filter-row:last-child {
    margin-bottom: 0 !important;
}

.snf-filter-group {
    position: relative !important;
}

/* Remove label styles */
.snf-filter-label {
    display: none;
}

.snf-filter-column label {
    display: none;
}

.snf-filter-form label {
    display: none;
}

.snf-field select {
    width: 100% !important;
    height: 50px !important;
    padding: 0 40px 0 16px !important;
    font-size: 16px !important;
    line-height: 50px !important;
    color: #333 !important;
    background-color: #f8f9fa !important;
    border: 2px solid #e9ecef !important;
    border-radius: 4px !important;
    appearance: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    font-weight: 500 !important;
}

/* Desktop text */
.desktop-text {
    display: inline !important;
}

.mobile-text {
    display: none !important;
}

.snf-field select option {
    padding: 12px !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    background-color: #fff !important;
}

.snf-field select:hover {
    border-color: #dee2e6 !important;
    background-color: #fff !important;
}

.snf-field select:focus {
    outline: none !important;
    border-color: #dc1e1e !important;
    background-color: #fff !important;
    box-shadow: 0 0 0 3px rgba(220, 30, 30, 0.1) !important;
}

.snf-filter-buttons {
    display: flex !important;
    gap: 15px !important;
    margin-top: 25px !important;
}

.snf-filter-buttons button {
    flex: 1 !important;
    padding: 14px 28px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
    cursor: pointer !important;
    min-width: 140px !important;
}

#snf-filter-submit {
    background-color: #dc1f26 !important;
    color: white !important;
    border-color: #dc1f26 !important;
}

#snf-filter-submit:hover {
    background-color: #b91920 !important;
    border-color: #b91920 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(220, 31, 38, 0.2) !important;
}

#snf-filter-reset {
    background-color: white !important;
    color: #333333 !important;
    border: 2px solid #e0e0e0 !important;
}

#snf-filter-reset:hover {
    background-color: #f5f5f5 !important;
    border-color: #d0d0d0 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.snf-select {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.snf-select:hover {
    border-color: #999;
}

.snf-select:focus {
    outline: none;
    border-color: #666;
}

.snf-range-slider {
    padding: 10px;
}

.snf-range-values {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.snf-range-inputs {
    position: relative;
    height: 40px;
    padding: 0 10px;
}

.snf-range-min,
.snf-range-max {
    position: absolute;
    width: 100%;
    height: 5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
}

.snf-range-min::-webkit-slider-thumb,
.snf-range-max::-webkit-slider-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #2271b1;
    cursor: pointer;
    pointer-events: all;
    -webkit-appearance: none;
}

.snf-range-min::-moz-range-thumb,
.snf-range-max::-moz-range-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #2271b1;
    cursor: pointer;
    pointer-events: all;
}

.snf-range-min::-ms-thumb,
.snf-range-max::-ms-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #2271b1;
    cursor: pointer;
    pointer-events: all;
}

.snf-filter-results {
    margin-top: 30px;
}

.snf-tire-filter {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.snf-filter-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.snf-filter-tab {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: none;
    color: #666;
}

.snf-filter-tab.active {
    color: #000;
    border-bottom: 2px solid #0056b3;
}

.snf-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

.snf-filter-column {
    position: relative;
}

.snf-filter-column::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 65%;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #666;
    pointer-events: none;
}

.snf-tire-visual {
    text-align: center;
    margin: 30px 0;
}

.snf-tire-visual img {
    max-width: 300px;
    height: auto;
}

.snf-product-count {
    text-align: center !important;
    margin-top: 20px !important;
    font-size: 14px !important;
    color: #666 !important;
}

.snf-button {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    width: 100%;
}

.snf-button-primary {
    background-color: #007cba;
    color: white;
}

.snf-button-primary:hover {
    background-color: #006ba1;
}

.snf-button-secondary {
    background-color: #f0f0f1;
    color: #333;
    border: 1px solid #ddd;
}

.snf-button-secondary:hover {
    background-color: #e5e5e5;
}

.snf-season-wrapper {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.snf-season-wrapper .snf-select {
    flex: 1;
}

.snf-season-more {
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.snf-season-more:hover {
    background-color: #f0f0f1;
    border-color: #c3c4c7;
}

.snf-count-container {
    text-align: center;
    margin: 15px 0;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    background: #f5f5f5;
    padding: 10px;
    border-radius: 4px;
}

.snf-count {
    width: 100%;
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
    color: #666;
}

/* SVG Tire Styles */
.tire-svg {
    width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
}

.tire-text {
    font-family: 'Roboto', sans-serif !important;
    font-size: 24px !important;
    font-weight: bold !important;
    text-anchor: middle !important;
    dominant-baseline: middle !important;
}

/* Tire Visualization Styles */
.snf-tire-visualization {
    text-align: right;
}

.snf-tire-svg {
    width: 100%;
    height: auto;
}

.tire-svg {
    width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
}

.snf-tire-container {
    max-width: 100% !important;
    margin: 0 auto !important;
    position: relative !important;
}

.snf-tire-image {
    position: relative !important;
    text-align: center !important;
}

.tire-svg {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

.tire-text {
    font-family: 'Roboto', sans-serif !important;
    font-size: 24px !important;
    font-weight: bold !important;
    fill: #333 !important; /* Tamnija boja teksta */
}

/* Boje za sezone */
.tire-winter {
    fill: #34495e !important; /* Tamno plava za zimu */
}

.tire-summer {
    fill: #2c3e50 !important; /* Tamno zelena za ljeto */
}

.tire-all-season {
    fill: #2c3e50 !important; /* Tamno siva za sve sezone */
}

.season-indicator {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    color: white !important;
    font-weight: bold !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    z-index: 10 !important;
}

.season-indicator.winter {
    background: #34495e !important;
}

.season-indicator.summer {
    background: #2c3e50 !important;
}

.season-indicator.all-season {
    background: #2c3e50 !important;
}

.snf-tire-text {
    position: absolute !important;
    top: -22px;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    color: #333 !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    text-align: center !important;
    letter-spacing: 1px !important;
    z-index: 2 !important;
}

.snf-tire-labels {
    display: flex !important;
    justify-content: space-between !important;
    margin-top: -50px !important;
    position: relative !important;
    z-index: 2 !important;
    padding: 0 20px !important;
}

.snf-tire-label {
    color: #333 !important; /* Tamnija boja teksta */
    font-size: 12px !important;
    text-align: center !important;
    flex: 1 !important;
    padding: 0 5px !important;
    position: relative !important;
}

.snf-product-count {
    text-align: center !important;
    margin-top: 20px !important;
    font-size: 14px !important;
    color: #666 !important;
    grid-column: 1 / -1 !important;
}

.snf-product-count-wrapper {
    text-align: center;
    margin: 15px 0;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.snf-buttons-row {
    margin-top: 10px;
}

.snf-actions-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;
    gap: 20px;
}

.snf-left-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.snf-product-count-wrapper {
    text-align: left;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.snf-buttons-wrapper {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-direction: row !important; /* Forsiramo red */
}

.snf-button {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
    white-space: nowrap;
}

.snf-button-primary {
    background: #dc0000;
    color: white;
}

.snf-button-primary:hover:not(:disabled) {
    background: #b00000;
    transform: translateY(-1px);
}

.snf-button-primary:disabled {
    background: #ff9999;
    cursor: not-allowed;
}

.snf-button-secondary {
    background: white;
    color: #333;
    border: 1px solid #ddd;
}

.snf-button-secondary:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
}

/* Mobile styles */
@media (max-width: 768px) {
    .snf-tire-dimensions-overlay {
        bottom: 10px;
    }

    .dimension-item {
        font-size: 26px;
    }

    .dimension-separator {
        font-size: 22px;
    }

    .snf-actions-row {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .snf-left-section {
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .snf-product-count-wrapper {
        margin-bottom: 10px;
    }

    .snf-buttons-wrapper {
        display: flex;
        gap: 8px;
        margin-top: 0;
        justify-content: center;
        width: 100%;
    }

    .snf-button {
        flex: 1;
        max-width: 140px; /* OgraniÄavamo maksimalnu Å¡irinu */
        min-width: unset;
        padding: 10px 15px;
        font-size: 14px;
    }
}

@media screen and (max-width: 1024px) {
    .snf-filter-wrapper {
        padding: 25px 20px !important;
    }

    .snf-filter-row {
        gap: 20px !important;
        margin-bottom: 20px !important;
    }
}

/* Mobile styles */
@media screen and (max-width: 480px) {
    .snf-filter-wrapper {
        padding: 20px 15px !important;
    }

    .snf-filter-row {
        gap: 15px !important;
        margin-bottom: 15px !important;
    }

    .snf-filter-buttons {
        grid-template-columns: 1fr !important;
    }

    .snf-filter-header h2 {
        font-size: 24px !important;
    }

    .snf-filter-header p {
        font-size: 14px !important;
    }

    /* Switch text display on mobile */
    .desktop-text {
        display: none !important;
    }

    .mobile-text {
        display: inline !important;
    }
}

@media screen and (max-width: 768px) {
    .snf-filter-container {
        grid-template-columns: 1fr !important;
    }

    .snf-filter-row {
        gap: 15px !important;
        margin-bottom: 15px !important;
    }

    .snf-filter-buttons {
        grid-template-columns: 1fr !important;
    }

    .snf-filter-header h2 {
        font-size: 24px !important;
    }

    .snf-filter-header p {
        font-size: 14px !important;
    }

    .snf-tire-info {
        grid-template-columns: 1fr !important;
    }

    /* Switch text display on mobile */
    .desktop-text {
        display: none !important;
    }

    .mobile-text {
        display: inline !important;
    }
}

@media screen and (max-width: 768px) {
    .snf-filter-container {
        grid-template-columns: 1fr !important;
    }

    .snf-filter-row {
        gap: 15px !important;
        margin-bottom: 15px !important;
    }

    .snf-filter-buttons {
        grid-template-columns: 1fr !important;
    }

    .snf-filter-header h2 {
        font-size: 24px !important;
    }

    .snf-filter-header p {
        font-size: 14px !important;
    }

    .snf-tire-text {
        font-size: 24px !important;
    }

    .snf-tire-label {
        font-size: 8px !important;
    }

    /* Switch text display on mobile */
    .desktop-text {
        display: none !important;
    }

    .mobile-text {
        display: inline !important;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .snf-filter-form label {
        display: none !important;
    }

    .snf-filter-buttons {
        display: flex !important;
        gap: 10px !important;
        margin-top: 20px !important;
    }

    .snf-filter-buttons button {
        flex: 1 !important;
        margin: 0 !important;
    }

    #snf-filter-submit {
        margin-right: 0 !important;
    }

    #snf-filter-reset {
        margin-left: 0 !important;
    }

    /* Novi stilovi za select elemente na mobilnom */
    .snf-filter-form select {
        font-size: 16px !important;
        padding: 2px 12px !important;
        width: 100% !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        overflow: hidden !important;
    }

    .snf-filter-form select option {
        font-size: 16px !important;
    }

    .snf-filter-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        margin-bottom: 10px !important;
    }

    .snf-filter-group {
        margin-bottom: 10px !important;
    }
}

@media (max-width: 768px) {
    .snf-filter-buttons {
        margin-top: 20px !important;
        gap: 10px !important;
    }

    .snf-filter-buttons button {
        padding: 12px 20px !important;
        font-size: 14px !important;
        min-width: auto !important;
    }
}

@media (max-width: 768px) {
    .snf-actions-row {
        flex-direction: column;
        gap: 15px;
    }

    .snf-product-count-wrapper {
        text-align: center;
    }

    .snf-buttons-wrapper {
        width: 100%;
        justify-content: center;
    }

    .snf-right-section {
        width: 100%;
    }

    .snf-tire-visualization {
        max-width: none;
        text-align: center;
        margin-top: 20px;
        width: 120px; /* Malo manja na mobilnom */
        margin: 0 auto;
    }

    .tire-svg {
        max-width: 120px !important;
    }
}

@media (max-width: 768px) {
    .snf-tire-visualization {
        margin: 0 auto;
    }

    .snf-tire-svg {
        width: 80%; /* Malo manje na mobilnom */
        margin: 0 auto;
    }
}

/* Loading states */
.snf-field select:disabled {
    background-color: #e9ecef !important;
    cursor: not-allowed !important;
    opacity: 0.7 !important;
}

/* Custom scrollbar for select dropdowns */
.snf-field select::-webkit-scrollbar {
    width: 8px !important;
}

.snf-field select::-webkit-scrollbar-track {
    background: #f1f3f5 !important;
}

.snf-field select::-webkit-scrollbar-thumb {
    background: #adb5bd !important;
    border-radius: 4px !important;
}

.snf-field select::-webkit-scrollbar-thumb:hover {
    background: #868e96 !important;
}

/* Za joÅ¡ manje ekrane */
@media (max-width: 360px) {
    .snf-buttons-wrapper {
        gap: 8px;
    }

    .snf-button {
        padding: 8px 12px;
        font-size: 13px;
    }
}

.snf-tire-dimensions-display {
    text-align: center;
    margin-bottom: 15px;
    opacity: 0;
    visibility: hidden; /* Dodajemo visibility hidden */
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.snf-tire-dimensions-display.visible {
    opacity: 1;
    visibility: visible; /* Pokazujemo element */
    transform: translateY(0);
}

.dimension-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 4px;
}

.dimension-item {
    color: white;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7),
                 -1px -1px 3px rgba(0, 0, 0, 0.7),
                 1px -1px 3px rgba(0, 0, 0, 0.7),
                 -1px 1px 3px rgba(0, 0, 0, 0.7);
}

.dimension-separator {
    color: white;
    font-size: 24px;
    font-weight: 400;
    margin: 0 2px;
    opacity: 0.9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7),
                 -1px -1px 3px rgba(0, 0, 0, 0.7),
                 1px -1px 3px rgba(0, 0, 0, 0.7),
                 -1px 1px 3px rgba(0, 0, 0, 0.7);
}

.snf-product-count-wrapper {
    text-align: center;
    margin-bottom: 15px;
}

.snf-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.snf-button {
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
    white-space: nowrap;
}

.snf-button-primary {
    background: #dc0000;
    color: white;
    border: none;
}

.snf-button-primary:hover:not(:disabled) {
    background: #b00000;
    transform: translateY(-1px);
}

.snf-button-primary:disabled {
    background: #ff9999;
    cursor: not-allowed;
}

.snf-button-secondary {
    background: white;
    color: #333;
    border: 1px solid #ddd;
}

.snf-button-secondary:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
}

/* Mobile styles */
@media (max-width: 768px) {
    .dimension-item {
        font-size: 24px;
    }

    .dimension-separator {
        font-size: 20px;
    }

    .snf-buttons-wrapper {
        flex-direction: row;
        gap: 8px;
    }

    .snf-button {
        flex: 1;
        max-width: 130px;
        padding: 8px 15px;
        font-size: 14px;
    }
}

/* Za joÅ¡ manje ekrane */
@media (max-width: 360px) {
    .dimension-item {
        font-size: 20px;
    }

    .dimension-separator {
        font-size: 18px;
    }

    .snf-buttons-wrapper {
        gap: 6px;
    }

    .snf-button {
        padding: 8px 12px;
        font-size: 13px;
    }
}

.snf-product-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.snf-logo {
    flex-shrink: 0;
}

.snf-logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.snf-product-count {
    color: white;
    font-size: 16px;
    font-weight: 500;
}

/* Mobile styles */
@media (max-width: 768px) {
    .snf-product-info {
        gap: 10px;
        margin-top: 15px;
    }

    .snf-logo-image {
        width: 32px;
        height: 32px;
    }

    .snf-product-count {
        font-size: 14px;
    }
}

/* Notification styles */
.snf-notification {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #dc3545;
    color: white;
    padding: 15px 25px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 9999;
    font-size: 14px;
    max-width: 300px;
    text-align: center;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

/* Shake animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.8s cubic-bezier(.36,.07,.19,.97) both;
}

/* Highlight effect for dropdowns */
.snf-filter-form select {
    transition: all 0.3s ease;
}

.shake select {
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76,175,80,0.5);
}

/* Season change indication styles */
.needs-change select {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220,53,69,.25) !important;
    animation: pulse 2s infinite;
}

.season-hint {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    font-style: italic;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220,53,69,0.4);
    }
    70% {
        box-shadow: 0 0 0 0.5rem rgba(220,53,69,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220,53,69,0);
    }
}
</pre></body></html>