.feltne-tyres{
    --feltne-red:#ef2f55;
    --feltne-border:#e5e7eb;
    --feltne-muted:#8a8a8a;
    width:100%;
    margin:24px 0;
    font-family:inherit
}
.feltne-vehicle-types{
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:28px
}
.feltne-vehicle-button{
    appearance:none;
    background:#fff;
    border:1px solid var(--feltne-border);
    border-radius:4px;
    padding:10px 14px;
    min-width:150px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    color:#111827
}
.feltne-vehicle-button:hover,
.feltne-vehicle-button.is-active{
    border-color:var(--feltne-red);
    box-shadow:0 0 0 1px var(--feltne-red)
}
.feltne-vehicle-button.is-active{background:#fff7f9}

.feltne-tyre-filter{
    display:grid!important;
    grid-template-columns:repeat(5,minmax(120px,1fr)) 138px 138px;
    gap:12px;
    align-items:end;
    border-bottom:1px solid #ececec;
    padding-bottom:24px
}
.feltne-filter-field{
    display:flex!important;
    flex-direction:column;
    gap:6px;
    min-width:0;
    margin:0!important;
    font-size:13px
}
.feltne-filter-field span{
    color:#333;
    font-weight:500
}
.feltne-filter-field select{
    display:block!important;
    width:100%!important;
    height:42px!important;
    margin:0!important;
    border:1px solid #ddd!important;
    border-radius:0!important;
    background:#fff!important;
    padding:0 34px 0 14px!important;
    color:#222!important;
    font:inherit!important
}
.feltne-search-button,
.feltne-more-button,
.feltne-reset-button,
.feltne-pagination button{
    height:42px;
    cursor:pointer;
    font:inherit
}
.feltne-search-button{
    border:1px solid var(--feltne-red)!important;
    border-radius:4px!important;
    background:var(--feltne-red)!important;
    color:#fff!important;
    font-weight:700;
    text-transform:uppercase
}
.feltne-more-button{
    border:1px solid var(--feltne-red)!important;
    border-radius:4px!important;
    background:#fff!important;
    color:var(--feltne-red)!important;
    font-weight:700;
    text-transform:uppercase
}
.feltne-more-filters{
    grid-column:1/-1;
    display:grid;
    grid-template-columns:repeat(4,minmax(150px,1fr));
    gap:12px;
    padding-top:8px
}
.feltne-more-filters[hidden]{display:none!important}

.feltne-results-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0
}
.feltne-result-count{
    font-size:14px;
    color:#555
}
.feltne-reset-button{
    height:auto;
    border:0!important;
    background:transparent!important;
    color:var(--feltne-red)!important;
    padding:5px 0;
    font-weight:600;
    text-transform:uppercase
}

.feltne-tyre-results{
    display:grid!important;
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
    gap:18px!important;
    align-items:stretch
}
.feltne-tyre-card{
    min-width:0;
    border:1px solid #e7e7e7;
    border-radius:12px;
    background:#fff;
    overflow:hidden;
    text-align:center;
    display:flex;
    flex-direction:column;
    transition:transform .15s ease,box-shadow .15s ease
}
.feltne-tyre-card:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 24px rgba(16,24,40,.08)
}
.feltne-card-image{
    display:block;
    width:100%;
    aspect-ratio:1/1;
    background:#fff;
    padding:20px
}
.feltne-card-image img{
    display:block!important;
    width:100%!important;
    height:100%!important;
    max-width:100%!important;
    max-height:250px!important;
    margin:auto!important;
    object-fit:contain!important
}
.feltne-card-body{
    padding:18px 18px 20px;
    display:flex;
    flex:1;
    flex-direction:column;
    align-items:center
}
.feltne-card-brand{
    font-size:13px;
    font-weight:400;
    color:#999;
    text-transform:none
}
.feltne-card-body h3{
    width:100%;
    min-height:44px;
    font-size:15px!important;
    line-height:1.45!important;
    margin:10px 0!important;
    font-weight:700!important
}
.feltne-card-body h3 a{
    color:#222!important;
    text-decoration:none!important
}
.feltne-card-sku{
    font-size:12px;
    color:var(--feltne-muted);
    font-style:italic;
    margin-bottom:10px
}
.feltne-card-price{
    font-size:16px;
    font-weight:700;
    color:var(--feltne-red);
    margin-top:auto;
    margin-bottom:16px
}
.feltne-card-price .amount{color:inherit}
.feltne-card-button{
    display:block;
    width:100%;
    padding:12px 14px;
    border-radius:9px;
    background:var(--feltne-red);
    color:#fff!important;
    font-size:12px;
    line-height:1.2;
    font-weight:700;
    text-align:center;
    text-decoration:none!important;
    text-transform:uppercase
}
.feltne-card-button:hover{
    background:#d92549;
    color:#fff!important
}

.feltne-pagination{
    display:flex;
    justify-content:center;
    gap:7px;
    flex-wrap:wrap;
    margin-top:24px
}
.feltne-pagination button{
    min-width:40px;
    border:1px solid var(--feltne-border);
    background:#fff
}
.feltne-pagination button.is-active{
    background:var(--feltne-red);
    border-color:var(--feltne-red);
    color:#fff
}
.feltne-tyre-results.is-loading{
    opacity:.45;
    pointer-events:none
}
.feltne-no-results{
    grid-column:1/-1;
    padding:28px;
    text-align:center;
    background:#f8fafc;
    border-radius:6px
}

@media(max-width:1100px){
    .feltne-tyre-filter{grid-template-columns:repeat(3,minmax(0,1fr))}
    .feltne-tyre-results{grid-template-columns:repeat(3,minmax(0,1fr))!important}
}
@media(max-width:760px){
    .feltne-tyre-filter{grid-template-columns:repeat(2,minmax(0,1fr))}
    .feltne-more-filters{grid-template-columns:repeat(2,minmax(0,1fr))}
    .feltne-tyre-results{grid-template-columns:repeat(2,minmax(0,1fr))!important}
    .feltne-vehicle-button{min-width:120px}
}
@media(max-width:480px){
    .feltne-tyre-filter,
    .feltne-more-filters,
    .feltne-tyre-results{grid-template-columns:1fr!important}
}

/* v1.4.1 – samodejno filtriranje in profesionalne ikone tipov vozil */
.feltne-vehicle-types{
    gap:12px;
    margin-bottom:30px;
}
.feltne-vehicle-button{
    flex-direction:row;
    gap:11px;
    min-width:170px;
    min-height:58px;
    padding:10px 18px;
    border:1px solid #e6e6e6;
    border-radius:4px;
    background:#fafafa;
    color:#242424;
    font-size:13px;
    font-weight:700;
    line-height:1.15;
    text-transform:uppercase;
    box-shadow:none;
    transition:border-color .18s ease,background .18s ease,color .18s ease,transform .18s ease;
}
.feltne-vehicle-button:hover{
    border-color:#d1435e;
    background:#fff;
    color:#d1435e;
    transform:translateY(-1px);
    box-shadow:none;
}
.feltne-vehicle-button.is-active{
    border-color:#d1435e;
    background:#fff7f9;
    color:#d1435e;
    box-shadow:inset 0 0 0 1px #d1435e;
}
.feltne-vehicle-icon{
    display:block;
    width:44px;
    height:28px;
    flex:0 0 44px;
    stroke:currentColor;
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
}
/* Iskanje se sproži samodejno; gumb ostane v HTML kot varnostni fallback. */
.feltne-search-button{
    display:none!important;
}
.feltne-tyre-filter{
    grid-template-columns:repeat(5,minmax(120px,1fr)) 138px;
}
@media(max-width:1100px){
    .feltne-tyre-filter{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media(max-width:760px){
    .feltne-vehicle-types{display:grid;grid-template-columns:1fr;gap:8px}
    .feltne-vehicle-button{width:100%;min-width:0;min-height:54px;justify-content:flex-start}
    .feltne-vehicle-icon{width:40px;height:25px;flex-basis:40px}
}
