/* Etaž PWA instalaciona kartica – zaseban CSS bez inline stilova */
.etazPwaInstallCard{
    display:none;
    position:relative;
    width:100%;
    margin:0 0 30px;
    border:1px solid #dfdfdf;
    border-radius:14px;
    background:#fff;
    box-shadow:0 10px 28px rgba(0,0,0,.08);
    overflow:hidden;
}
.etazPwaInstallCard.is-visible{display:block;}
.etazPwaInstallCard::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:6px;
    height:100%;
    background:#fcde00;
}
.etazPwaInstallInner{
    display:flex;
    align-items:center;
    gap:18px;
    padding:22px 24px 22px 28px;
}
.etazPwaInstallIcon{
    flex:0 0 68px;
    width:68px;
    height:68px;
    border-radius:16px;
    background:#fcde00 url('../img/pwa/icon-192.png') center/cover no-repeat;
    box-shadow:0 7px 16px rgba(0,0,0,.15);
}
.etazPwaInstallContent{
    flex:1 1 auto;
    min-width:0;
}
.etazPwaInstallEyebrow{
    display:block;
    margin:0 0 3px;
    color:#0089c2;
    font-family:'Quicksand Bold',Arial,sans-serif;
    font-size:12px;
    line-height:1.2;
    letter-spacing:.08em;
    text-transform:uppercase;
}
.etazPwaInstallTitle{
    margin:0 0 4px;
    color:#111;
    font-family:'Quicksand Bold',Arial,sans-serif;
    font-size:20px;
    line-height:1.25;
}
.etazPwaInstallText{
    margin:0;
    color:#666;
    font-family:'Quicksand Regular',Arial,sans-serif;
    font-size:14px;
    line-height:1.55;
}
.etazPwaInstallAction{
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    min-height:44px;
    border:0;
    border-radius:7px;
    padding:0 18px;
    background:#0089c2;
    color:#fff;
    font-family:'Quicksand Bold',Arial,sans-serif;
    font-size:13px;
    line-height:1;
    text-transform:uppercase;
    cursor:pointer;
    box-shadow:0 5px 13px rgba(0,137,194,.25);
    transition:background .2s ease,transform .2s ease,box-shadow .2s ease;
}
.etazPwaInstallAction:hover,
.etazPwaInstallAction:focus{
    background:#006f9e;
    transform:translateY(-1px);
    box-shadow:0 7px 17px rgba(0,137,194,.3);
    outline:none;
}
.etazPwaInstallAction:disabled{
    cursor:default;
    opacity:.65;
    transform:none;
}
.etazPwaInstallActionIcon{
    position:relative;
    display:inline-block;
    width:16px;
    height:16px;
    border:2px solid currentColor;
    border-top:0;
    border-radius:2px;
}
.etazPwaInstallActionIcon::before{
    content:"";
    position:absolute;
    left:50%;
    top:-5px;
    width:2px;
    height:11px;
    background:currentColor;
    transform:translateX(-50%);
}
.etazPwaInstallActionIcon::after{
    content:"";
    position:absolute;
    left:50%;
    top:3px;
    width:6px;
    height:6px;
    border-right:2px solid currentColor;
    border-bottom:2px solid currentColor;
    transform:translateX(-50%) rotate(45deg);
}
.etazPwaIosHelp{
    display:none;
    margin:0 24px 20px 96px;
    padding:13px 15px;
    border:1px solid #e7e7e7;
    border-radius:8px;
    background:#fafafa;
    color:#555;
    font-family:'Quicksand Regular',Arial,sans-serif;
    font-size:13px;
    line-height:1.5;
}
.etazPwaIosHelp.is-open{display:block;}
.etazPwaIosHelp strong{font-family:'Quicksand Bold',Arial,sans-serif;color:#222;}

@media (max-width:900px){
    .etazPwaInstallCard{margin:18px 0 24px;}
    .etazPwaInstallInner{
        display:grid;
        grid-template-columns:58px minmax(0,1fr);
        gap:14px;
        padding:18px 18px 18px 22px;
    }
    .etazPwaInstallIcon{
        width:58px;
        height:58px;
        flex-basis:58px;
        border-radius:14px;
    }
    .etazPwaInstallTitle{font-size:18px;}
    .etazPwaInstallText{font-size:13px;line-height:1.45;}
    .etazPwaInstallAction{
        grid-column:1 / -1;
        width:100%;
        min-height:46px;
    }
    .etazPwaIosHelp{margin:0 18px 18px 22px;}
}

/* Desktop korekcija CTA dugmeta: izolacija od globalnih button pravila sajta */
@media (min-width:901px){
    .etazPwaInstallCard{
        clear:both;
        float:none;
        box-sizing:border-box;
    }
    .etazPwaInstallInner{
        width:100%;
        box-sizing:border-box;
    }
    .etazPwaInstallAction{
        position:static;
        float:none;
        flex:0 0 220px;
        width:220px;
        min-width:220px;
        max-width:220px;
        height:48px;
        min-height:48px;
        margin:0;
        padding:0 18px;
        box-sizing:border-box;
        white-space:nowrap;
        overflow:hidden;
        vertical-align:middle;
        appearance:none;
        -webkit-appearance:none;
    }
    .etazPwaInstallAction > span:last-child{
        display:block;
        min-width:0;
        overflow:hidden;
        text-overflow:ellipsis;
        white-space:nowrap;
    }
    .etazPwaInstallActionIcon{
        flex:0 0 16px;
        box-sizing:border-box;
    }
}
