/* eHome Savjetnik */
:root {
    --ehs-navy: #131f36;
    --ehs-navy-2: #223454;
    --ehs-green: #20a447;
    --ehs-green-l: #35c75a;
    --ehs-red: #f50000;
    --ehs-bg: #f4f6fa;
    --ehs-card: #ffffff;
    --ehs-line: #e3e7ee;
    --ehs-ink: #131f36;
    --ehs-mut: #667085;
    --ehs-soft: #eef2f8;
    --ehs-r: 16px;
}

.ehs-app button, .ehs-app a, .ehs-app input, .ehs-app button *, .ehs-app a *, .ehs-app small, .ehs-app label, .ehs-float.ehs-float, .ehs-float.ehs-float *, .ehs-adv-banner__btn.ehs-adv-banner__btn { text-transform: none !important; letter-spacing: normal !important; }
.ehs-app button { line-height: 1.3; height: auto; min-width: 0; white-space: normal; text-shadow: none; overflow: visible; }
.ehs-app, .ehs-app *, .ehs-float.ehs-float, .ehs-float.ehs-float *, .ehs-adv-banner, .ehs-adv-banner * { box-sizing: border-box; }

.ehs-app .ehs-i { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.ehs-app .ehs-ic { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.ehs-app .ehs-ic--sm { width: 20px; height: 20px; }
.ehs-app .ehs-ic--tile { width: 38px; height: 38px; stroke-width: 1.4; }

/* ---------- Okvir aplikacije ---------- */
.ehs-app {
    display: flex; flex-direction: column;
    height: 100%; min-height: 520px;
    background: var(--ehs-bg); color: var(--ehs-ink);
    font-family: inherit; font-size: 15px; line-height: 1.45;
    border-radius: var(--ehs-r); overflow: hidden;
}
.ehs-adv-inline .ehs-app { min-height: 640px; max-height: none; border: 1px solid var(--ehs-line); box-shadow: 0 20px 50px -30px rgba(19,31,54,.35); }
.ehs-adv-inline .ehs-body { overflow: visible; }
.ehs-adv-loading { padding: 40px; text-align: center; color: var(--ehs-mut); }

.ehs-app .ehs-head {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding: 12px 14px; background: var(--ehs-navy); color: #fff;
}
.ehs-app .ehs-htitle { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 15px; min-width: 0; }
.ehs-app .ehs-htitle span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ehs-app .ehs-htitle .ehs-i { width: 16px; height: 16px; vertical-align: -3px; margin-right: 4px; }
.ehs-app .ehs-hbtn { width: 38px; height: 38px; border-radius: 10px; border: 0; background: rgba(255,255,255,.1); color: #fff; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background .15s; flex: 0 0 auto; padding: 0; }
.ehs-app .ehs-hbtn:hover { background: rgba(255,255,255,.2); }
.ehs-app .ehs-hbtn--ghost { background: transparent; pointer-events: none; }

.ehs-app .ehs-progress { height: 4px; background: rgba(19,31,54,.08); }
.ehs-app .ehs-progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--ehs-green-l), var(--ehs-green)); border-radius: 0 4px 4px 0; transition: width .4s cubic-bezier(.2,.8,.2,1); }

.ehs-app .ehs-body { flex: 1 1 auto; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 22px 22px 28px; }
.ehs-app .ehs-anim { animation: ehsIn .32s cubic-bezier(.2,.8,.2,1); max-width: 760px; margin: 0 auto; }
@keyframes ehsIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }

.ehs-app h2 { font-size: 22px; line-height: 1.25; font-weight: 800; margin: 0 0 10px; color: var(--ehs-ink); letter-spacing: -.01em; outline: none; }
.ehs-app p { margin: 0 0 12px; }
.ehs-app a { color: inherit; }

/* ---------- Gumbi ---------- */
.ehs-app .ehs-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 46px; padding: 10px 20px; border-radius: 12px;
    font: inherit; font-size: 15px; font-weight: 800; line-height: 1.1;
    border: 1px solid transparent; cursor: pointer; text-decoration: none !important;
    transition: transform .12s, box-shadow .15s, background .15s; white-space: nowrap;
}
.ehs-app .ehs-btn:active { transform: translateY(1px) scale(.98); }
.ehs-app .ehs-btn--primary { background: var(--ehs-navy); color: #fff !important; box-shadow: 0 8px 18px -8px rgba(19,31,54,.6); }
.ehs-app .ehs-btn--primary:hover { background: var(--ehs-navy-2); }
.ehs-app .ehs-btn--buy { background: linear-gradient(180deg, var(--ehs-green-l), var(--ehs-green)); color: #fff !important; border-color: #1d963f; box-shadow: 0 8px 18px -8px rgba(32,164,71,.7); }
.ehs-app .ehs-btn--buy:hover { filter: brightness(1.05); background: linear-gradient(180deg, var(--ehs-green-l), var(--ehs-green)); }
.ehs-app .ehs-btn--ghost { background: #fff; color: var(--ehs-ink) !important; border-color: #cfd6e0; }
.ehs-app .ehs-btn--ghost:hover { border-color: #9aa4b4; background: #fff; color: var(--ehs-ink) !important; }
.ehs-app .ehs-btn--block { width: 100%; }
.ehs-app .ehs-btn--sm { min-height: 36px; padding: 7px 12px; font-size: 13px; border-radius: 9px; }
.ehs-app .ehs-btn--lg { min-height: 54px; font-size: 16px; padding: 12px 26px; }
.ehs-app .ehs-btn.is-loading { opacity: .85; pointer-events: none; }
.ehs-app .ehs-spin { width: 16px; height: 16px; border: 2.5px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: ehsSpin .7s linear infinite; display: inline-block; }
@keyframes ehsSpin { to { transform: rotate(360deg); } }

.ehs-app .ehs-link-btn { display: flex; align-items: center; justify-content: center; gap: 7px; width: 100%; margin: 14px 0 0; padding: 12px; background: none; border: 0; font: inherit; font-weight: 700; color: var(--ehs-navy); cursor: pointer; border-radius: 10px; }
.ehs-app .ehs-link-btn:hover { background: var(--ehs-soft); color: var(--ehs-navy); }
.ehs-app .ehs-link-btn--muted { color: var(--ehs-mut); font-weight: 600; }

.ehs-app .ehs-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 11px; border-radius: 999px; background: #fff; border: 1px solid var(--ehs-line); font-size: 12px; font-weight: 800; color: var(--ehs-navy); margin-bottom: 12px; }
.ehs-app .ehs-badge .ehs-i { width: 14px; height: 14px; color: var(--ehs-green); }
.ehs-app .ehs-badge--ok { background: #e9f8ee; border-color: #bfe8cc; color: #137a33; }

/* ---------- Odabir vrste ---------- */
.ehs-app .ehs-hero { text-align: center; padding: 6px 0 16px; }
.ehs-app .ehs-hero p { color: var(--ehs-mut); max-width: 520px; margin: 0 auto; }
.ehs-app .ehs-search { display: flex; align-items: center; gap: 10px; background: #fff; border: 1.5px solid var(--ehs-line); border-radius: 14px; padding: 0 14px; margin: 0 0 20px; transition: border-color .15s, box-shadow .15s; }
.ehs-app .ehs-search:focus-within { border-color: var(--ehs-navy); box-shadow: 0 0 0 4px rgba(19,31,54,.08); }
.ehs-app .ehs-search .ehs-i { color: var(--ehs-mut); }
.ehs-app .ehs-search input { flex: 1; border: 0 !important; outline: 0; background: transparent !important; font: inherit; font-size: 16px; padding: 14px 0 !important; box-shadow: none !important; min-width: 0; }
.ehs-app .ehs-group { margin-bottom: 18px; }
.ehs-app .ehs-group__t { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--ehs-mut); margin: 0 0 9px 2px; }
.ehs-app .ehs-tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.ehs-app .ehs-tile {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
    min-height: 118px; padding: 16px 10px; background: #fff; border: 1.5px solid var(--ehs-line); border-radius: 14px;
    font: inherit; font-weight: 800; font-size: 14px; color: var(--ehs-ink); cursor: pointer; text-align: center;
    transition: transform .15s, border-color .15s, box-shadow .15s;
}
.ehs-app .ehs-tile .ehs-ic { color: var(--ehs-navy); transition: color .15s, transform .2s; }
.ehs-app .ehs-tile:hover { background: #fff; color: var(--ehs-ink); border-color: var(--ehs-green); transform: translateY(-2px); box-shadow: 0 14px 24px -16px rgba(19,31,54,.45); }
.ehs-app .ehs-tile:hover .ehs-ic { color: var(--ehs-green); transform: scale(1.08); }
.ehs-app .ehs-empty { text-align: center; padding: 30px 10px; color: var(--ehs-mut); }
.ehs-app .ehs-empty h2 { margin-bottom: 8px; }

.ehs-app .ehs-loader { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 80px 0; color: var(--ehs-mut); }
.ehs-app .ehs-loader span { width: 42px; height: 42px; border-radius: 50%; border: 4px solid var(--ehs-line); border-top-color: var(--ehs-green); animation: ehsSpin .8s linear infinite; }

/* ---------- Pitanje ---------- */
.ehs-app .ehs-step { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--ehs-green); margin-bottom: 8px; }
.ehs-app .ehs-intro { color: var(--ehs-mut); font-size: 14px; background: #fff; border: 1px dashed var(--ehs-line); border-radius: 12px; padding: 10px 12px; }
.ehs-app .ehs-help { margin: 0 0 14px; }
.ehs-app .ehs-help summary { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; font-size: 13px; font-weight: 700; color: var(--ehs-navy); list-style: none; padding: 4px 0; }
.ehs-app .ehs-help summary::-webkit-details-marker { display: none; }
.ehs-app .ehs-help summary .ehs-i { width: 16px; height: 16px; color: var(--ehs-green); }
.ehs-app .ehs-help p { margin: 8px 0 0; padding: 12px 14px; background: #fff; border-left: 3px solid var(--ehs-green); border-radius: 0 10px 10px 0; font-size: 14px; color: #3b4556; }
.ehs-app .ehs-hint { font-size: 13px; color: var(--ehs-mut); margin: -4px 0 10px; }

.ehs-app .ehs-opts { display: grid; gap: 10px; margin-top: 12px; }
.ehs-app .ehs-opts--brand { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); }
.ehs-app .ehs-opts--brand .ehs-opt__n { display: none; }
.ehs-app .ehs-opts--brand .ehs-opt__tx strong { white-space: normal; overflow-wrap: break-word; }
.ehs-app .ehs-opt {
    position: relative; display: flex; align-items: center; gap: 14px; width: 100%;
    padding: 15px 16px; min-height: 64px; text-align: left;
    background: #fff; border: 1.5px solid var(--ehs-line); border-radius: 14px;
    font: inherit; color: var(--ehs-ink); cursor: pointer;
    transition: border-color .15s, box-shadow .15s, transform .12s, background .15s;
}
.ehs-app .ehs-opt:hover { background: #fff; color: var(--ehs-ink); border-color: #aab4c3; box-shadow: 0 10px 22px -18px rgba(19,31,54,.5); }
.ehs-app .ehs-opt:active { transform: scale(.99); }
.ehs-app .ehs-opt__mark { width: 24px; height: 24px; border-radius: 50%; border: 2px solid #c6cfdb; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; color: transparent; transition: all .15s; }
.ehs-app .ehs-opts--multi .ehs-opt__mark { border-radius: 7px; }
.ehs-app .ehs-opt__mark .ehs-i { width: 14px; height: 14px; stroke-width: 3; }
.ehs-app .ehs-opt__tx { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.ehs-app .ehs-opt__tx strong { font-size: 16px; font-weight: 800; line-height: 1.25; }
.ehs-app .ehs-opt__tx small { font-size: 13px; color: var(--ehs-mut); line-height: 1.35; }
.ehs-app .ehs-opt__n { flex: 0 0 auto; font-size: 12px; font-weight: 700; color: var(--ehs-mut); background: var(--ehs-soft); padding: 4px 9px; border-radius: 999px; white-space: nowrap; }
.ehs-app .ehs-opt.is-sel, .ehs-app .ehs-opt.is-sel:hover { border-color: var(--ehs-green); background: #f3fbf5; box-shadow: 0 0 0 3px rgba(32,164,71,.14); }
.ehs-app .ehs-opt.is-sel .ehs-opt__mark { background: var(--ehs-green); border-color: var(--ehs-green); color: #fff; }
.ehs-app .ehs-opt.is-none { opacity: .55; }
.ehs-app .ehs-opt.is-none .ehs-opt__n { background: #fdecec; color: #b42318; }
.ehs-app .ehs-opts--brand .ehs-opt { padding: 12px 12px; min-height: 54px; gap: 10px; }
.ehs-app .ehs-opts--brand .ehs-opt__tx strong { font-size: 15px; }

.ehs-app .ehs-foot {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: #fff; border-top: 1px solid var(--ehs-line);
}
.ehs-app .ehs-foot__btns { display: flex; gap: 8px; }
.ehs-app .ehs-live { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ehs-mut); white-space: nowrap; }
.ehs-app .ehs-live b { color: var(--ehs-ink); font-size: 15px; }
.ehs-app .ehs-live__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ehs-green); box-shadow: 0 0 0 0 rgba(32,164,71,.5); animation: ehsPulse 2s infinite; }
@keyframes ehsPulse { 0% { box-shadow: 0 0 0 0 rgba(32,164,71,.45); } 70% { box-shadow: 0 0 0 8px rgba(32,164,71,0); } 100% { box-shadow: 0 0 0 0 rgba(32,164,71,0); } }

/* ---------- Rezultati ---------- */
.ehs-app .ehs-res-head { text-align: center; margin-bottom: 16px; }
.ehs-app .ehs-note { font-size: 13px; background: #fff8e6; border: 1px solid #f3d78a; color: #6b5210; padding: 10px 12px; border-radius: 10px; text-align: left; }

.ehs-app .ehs-card { position: relative; background: #fff; border: 1.5px solid var(--ehs-line); border-radius: 16px; padding: 16px; box-shadow: 0 16px 34px -26px rgba(19,31,54,.5); }
.ehs-app .ehs-card--big { border-color: var(--ehs-green); box-shadow: 0 22px 44px -26px rgba(32,164,71,.55); padding: 18px; }
.ehs-app .ehs-card__tag { position: absolute; top: -11px; left: 16px; background: var(--ehs-navy); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; }
.ehs-app .ehs-card.is-best .ehs-card__tag { background: var(--ehs-green); }
.ehs-app .ehs-card.is-cheap .ehs-card__tag { background: #0b7285; }
.ehs-app .ehs-card.is-prem .ehs-card__tag { background: #6b3fa0; }
.ehs-app .ehs-card__main { display: flex; gap: 16px; align-items: flex-start; }
.ehs-app .ehs-card__img { position: relative; flex: 0 0 120px; width: 120px; height: 120px; border-radius: 12px; background: #fff; border: 1px solid #eef1f5; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.ehs-app .ehs-card--big .ehs-card__img { flex-basis: 150px; width: 150px; height: 150px; }
.ehs-app .ehs-card__img img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.ehs-app .ehs-disc { position: absolute; left: 6px; top: 6px; background: var(--ehs-red); color: #fff; font-size: 11px; font-weight: 800; padding: 3px 6px; border-radius: 6px; }
.ehs-app .ehs-card__info { flex: 1 1 auto; min-width: 0; }
.ehs-app .ehs-card__top { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin-bottom: 6px; }
.ehs-app .ehs-brand { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--ehs-mut); }
.ehs-app .ehs-stock { font-size: 11px; font-weight: 700; color: #137a33; background: #e9f8ee; padding: 3px 8px; border-radius: 999px; }
.ehs-app .ehs-stock.is-bo { color: #8a5a00; background: #fff4db; }
.ehs-app .ehs-stock.is-out { color: #b42318; background: #fdecec; }
.ehs-app .ehs-card__name { display: block; font-weight: 800; font-size: 15px; line-height: 1.3; text-decoration: none !important; color: var(--ehs-ink) !important; margin-bottom: 8px; }
.ehs-app .ehs-card--big .ehs-card__name { font-size: 17px; }
.ehs-app .ehs-card__name:hover { text-decoration: underline !important; }

.ehs-app .ehs-why { list-style: none; margin: 0; padding: 0; display: grid; gap: 5px; }
.ehs-app .ehs-why li { display: flex; align-items: flex-start; gap: 7px; font-size: 13.5px; line-height: 1.35; margin: 0; }
.ehs-app .ehs-why .ehs-i { width: 16px; height: 16px; margin-top: 1px; stroke-width: 2.8; }
.ehs-app .ehs-why .is-ok .ehs-i { color: var(--ehs-green); }
.ehs-app .ehs-why .is-no { color: #8a4b4b; }
.ehs-app .ehs-why .is-no .ehs-i { color: #d14343; }
.ehs-app .ehs-why .is-unk { color: var(--ehs-mut); }
.ehs-app .ehs-why .is-unk .ehs-i { color: #9aa4b4; stroke-width: 2; }

.ehs-app .ehs-ring { position: relative; flex: 0 0 78px; width: 78px; text-align: center; }
.ehs-app .ehs-ring svg { width: 64px; height: 64px; transform: rotate(-90deg); display: block; margin: 0 auto; }
.ehs-app .ehs-ring circle { fill: none; stroke-width: 4; }
.ehs-app .ehs-ring__bg { stroke: #e8edf3; }
.ehs-app .ehs-ring__fg { stroke: var(--ehs-green); stroke-linecap: round; transition: stroke-dashoffset 1s ease; }
.ehs-app .ehs-ring b { position: absolute; top: 20px; left: 0; right: 0; font-size: 16px; font-weight: 900; }
.ehs-app .ehs-ring span { display: block; font-size: 10px; color: var(--ehs-mut); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-top: 3px; }

.ehs-app .ehs-card__buy { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--ehs-line); }
.ehs-app .ehs-price { display: flex; flex-direction: column; line-height: 1.1; }
.ehs-app .ehs-price del { font-size: 13px; color: #8a93a3; }
.ehs-app .ehs-price strong { font-size: 24px; font-weight: 900; color: var(--ehs-red); letter-spacing: -.02em; white-space: nowrap; }
.ehs-app .ehs-pct { font-size: 12px; color: var(--ehs-mut); font-weight: 700; margin-top: 3px; }
.ehs-app .ehs-card__cta { display: flex; flex-direction: column; align-items: stretch; gap: 6px; min-width: 220px; }
.ehs-app .ehs-card__more { text-align: center; font-size: 13px; font-weight: 700; color: var(--ehs-mut) !important; }
.ehs-app .ehs-added { display: flex; align-items: center; justify-content: center; gap: 6px; font-weight: 800; color: #137a33; font-size: 14px; }

.ehs-app .ehs-alts-t { font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--ehs-mut); margin: 26px 0 14px; }
.ehs-app .ehs-alts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ehs-app .ehs-alts .ehs-card { padding: 16px 14px 14px; }
.ehs-app .ehs-alts .ehs-card__main { flex-direction: column; align-items: stretch; }
.ehs-app .ehs-alts .ehs-card__img { width: 100%; flex-basis: auto; height: 140px; }
.ehs-app .ehs-alts .ehs-card__buy { flex-direction: column; align-items: stretch; }
.ehs-app .ehs-alts .ehs-card__cta { min-width: 0; }
.ehs-app .ehs-alts .ehs-price strong { font-size: 20px; }

.ehs-app .ehs-more { margin-top: 16px; background: #fff; border: 1px solid var(--ehs-line); border-radius: 14px; overflow: hidden; }
.ehs-app .ehs-more summary { padding: 14px 16px; font-weight: 800; cursor: pointer; font-size: 14px; }
.ehs-app .ehs-rows { border-top: 1px solid var(--ehs-line); max-height: 380px; overflow-y: auto; }
.ehs-app .ehs-row { display: flex; align-items: center; gap: 12px; padding: 10px 16px; text-decoration: none !important; color: var(--ehs-ink) !important; border-bottom: 1px solid #f0f2f6; }
.ehs-app .ehs-row:hover { background: #fafbfd; }
.ehs-app .ehs-row img { width: 48px; height: 48px; object-fit: contain; flex: 0 0 auto; border-radius: 8px; background: #fff; }
.ehs-app .ehs-row__n { flex: 1; min-width: 0; font-size: 13.5px; font-weight: 700; line-height: 1.3; }
.ehs-app .ehs-row__n small { display: block; font-weight: 500; color: var(--ehs-mut); font-size: 12px; }
.ehs-app .ehs-row__p { font-weight: 900; color: var(--ehs-red); white-space: nowrap; }

.ehs-app .ehs-answers { margin-top: 22px; }
.ehs-app .ehs-answers__t { font-weight: 800; font-size: 14px; margin-bottom: 8px; }
.ehs-app .ehs-answers__t small { font-weight: 500; color: var(--ehs-mut); }
.ehs-app .ehs-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.ehs-app .ehs-chip { display: inline-flex; align-items: center; gap: 6px; padding: 7px 11px; border-radius: 999px; background: #fff; border: 1px solid var(--ehs-line); font: inherit; font-size: 13px; font-weight: 700; cursor: pointer; color: var(--ehs-ink); }
.ehs-app .ehs-chip .ehs-i { width: 13px; height: 13px; color: var(--ehs-mut); }
.ehs-app .ehs-chip:hover { border-color: var(--ehs-navy); background: #fff; color: var(--ehs-ink); }

.ehs-app .ehs-lead { margin-top: 22px; background: linear-gradient(135deg, #16254a 0%, var(--ehs-navy) 100%); color: #fff; border-radius: 16px; padding: 18px; }
.ehs-app .ehs-lead__t { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.ehs-app .ehs-lead__t > .ehs-i { width: 26px; height: 26px; color: #7ee2a0; margin-top: 2px; }
.ehs-app .ehs-lead__t strong { display: block; font-size: 16px; }
.ehs-app .ehs-lead__t span { font-size: 13px; opacity: .8; }
.ehs-app .ehs-lead__f { display: grid; grid-template-columns: 1.3fr 1fr auto; gap: 8px; }
.ehs-app .ehs-lead input[type=email], .ehs-app .ehs-lead input[type=tel] { width: 100%; min-height: 46px; border-radius: 11px !important; border: 1px solid rgba(255,255,255,.2) !important; background: rgba(255,255,255,.08) !important; color: #fff !important; padding: 10px 13px !important; font: inherit; font-size: 15px; margin: 0 !important; }
.ehs-app .ehs-lead input::placeholder { color: rgba(255,255,255,.55); }
.ehs-app .ehs-lead .ehs-btn--primary { background: var(--ehs-green); box-shadow: none; }
.ehs-app .ehs-lead__c { display: flex; gap: 8px; align-items: flex-start; margin-top: 10px; font-size: 12px; opacity: .85; cursor: pointer; }
.ehs-app .ehs-lead__c input { margin-top: 2px; accent-color: var(--ehs-green); }
.ehs-app .ehs-lead__c a { color: #fff; text-decoration: underline; }
.ehs-app .ehs-lead__msg { font-size: 13px; margin-top: 6px; min-height: 1px; }
.ehs-app .ehs-lead__msg.is-err { color: #ffb4b4; }
.ehs-app .ehs-lead__ok { display: flex; gap: 12px; align-items: center; }
.ehs-app .ehs-lead__ok > .ehs-i { width: 34px; height: 34px; padding: 7px; border-radius: 50%; background: var(--ehs-green); color: #fff; stroke-width: 3; }
.ehs-app .ehs-lead__ok strong { display: block; font-size: 16px; }
.ehs-app .ehs-lead__ok span { font-size: 13px; opacity: .85; }
.ehs-app .ehs-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

.ehs-app .ehs-help-box { display: flex; gap: 12px; align-items: center; margin-top: 14px; background: #fff; border: 1px solid var(--ehs-line); border-radius: 14px; padding: 14px 16px; }
.ehs-app .ehs-help-box > .ehs-i { width: 36px; height: 36px; padding: 8px; border-radius: 10px; background: var(--ehs-soft); color: var(--ehs-navy); }
.ehs-app .ehs-help-box strong { display: block; font-size: 14px; }
.ehs-app .ehs-help-box span { font-size: 13px; color: var(--ehs-mut); }
.ehs-app .ehs-help-box a { font-weight: 800; color: var(--ehs-navy) !important; }

/* ---------- Traka na rezultatima i proširenje izbora ---------- */
.ehs-app .ehs-resbar { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin: -4px 0 16px; }
.ehs-app .ehs-resbar__btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 14px; border-radius: 999px; border: 1px solid var(--ehs-line); background: #fff; color: var(--ehs-navy); font: inherit; font-size: 13.5px; font-weight: 700; cursor: pointer; }
.ehs-app .ehs-resbar__btn:hover { border-color: var(--ehs-navy); background: #fff; color: var(--ehs-navy); }
.ehs-app .ehs-resbar__btn .ehs-i { width: 16px; height: 16px; }
.ehs-app .ehs-widen { background: #fff8e6; border: 1px solid #f3d78a; border-radius: 14px; padding: 14px; margin: 0 0 22px; }
.ehs-app .ehs-widen__t strong { display: block; font-size: 15px; color: #5c4508; }
.ehs-app .ehs-widen__t span { display: block; font-size: 13px; color: #6b5210; margin-bottom: 10px; }
.ehs-app .ehs-widen__opts { display: grid; gap: 8px; }
.ehs-app .ehs-widen__opt { display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%; padding: 11px 14px; border-radius: 11px; border: 1px solid #efd58e; background: #fff; color: var(--ehs-ink); font: inherit; font-size: 14px; text-align: left; cursor: pointer; }
.ehs-app .ehs-widen__opt:hover { border-color: #c99a1a; background: #fff; color: var(--ehs-ink); }
.ehs-app .ehs-widen__opt em { font-style: normal; font-weight: 800; color: #137a33; white-space: nowrap; display: inline-flex; align-items: center; gap: 4px; }
.ehs-app .ehs-widen__opt em .ehs-i { width: 15px; height: 15px; }

/* ---------- Usporedba ---------- */
.ehs-app .ehs-cmp-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--ehs-line); border-radius: 14px; }
.ehs-app .ehs-cmp { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 520px; margin: 0; }
.ehs-app .ehs-cmp th, .ehs-app .ehs-cmp td { padding: 10px 12px; border-bottom: 1px solid #eef1f5; text-align: center; vertical-align: middle; }
.ehs-app .ehs-cmp th:first-child, .ehs-app .ehs-cmp td:first-child { text-align: left; color: var(--ehs-mut); font-weight: 700; width: 30%; }
.ehs-app .ehs-cmp th img { width: 70px; height: 70px; object-fit: contain; display: block; margin: 0 auto 6px; }
.ehs-app .ehs-cmp th span { font-size: 12.5px; font-weight: 800; display: block; line-height: 1.3; }
.ehs-app .ehs-cmp .is-ok { color: var(--ehs-green); }
.ehs-app .ehs-cmp .is-no { color: #d14343; }
.ehs-app .ehs-cmp .is-unk { color: #9aa4b4; }
.ehs-app .ehs-cmp .ehs-i { width: 18px; height: 18px; stroke-width: 3; }

/* ---------- Nakon dodavanja ---------- */
.ehs-app .ehs-done { text-align: center; padding: 20px 0 6px; }
.ehs-app .ehs-done__ic { width: 74px; height: 74px; margin: 0 auto 16px; border-radius: 50%; background: linear-gradient(180deg, var(--ehs-green-l), var(--ehs-green)); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 16px 30px -12px rgba(32,164,71,.7); animation: ehsPop .45s cubic-bezier(.2,1.4,.4,1); }
.ehs-app .ehs-done__ic .ehs-i { width: 38px; height: 38px; stroke-width: 3; }
@keyframes ehsPop { from { transform: scale(.5); opacity: 0; } to { transform: none; opacity: 1; } }
.ehs-app .ehs-done__ic--warn { background: linear-gradient(180deg, #f5b544, #d98b00); box-shadow: 0 16px 30px -12px rgba(217,139,0,.6); }
.ehs-app .ehs-done__q { font-weight: 800; font-size: 16px; margin: 18px 0 10px !important; }
.ehs-app .ehs-done__choice { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; max-width: 560px; margin: 0 auto 16px; }
.ehs-app .ehs-choice { display: flex; align-items: center; gap: 12px; padding: 16px; border-radius: 14px; border: 1.5px solid var(--ehs-line); background: #fff; font: inherit; color: var(--ehs-ink) !important; text-align: left; cursor: pointer; text-decoration: none !important; transition: transform .12s, border-color .15s, box-shadow .15s; }
.ehs-app .ehs-choice:hover { background: #fff; border-color: var(--ehs-navy); transform: translateY(-2px); box-shadow: 0 14px 24px -16px rgba(19,31,54,.45); }
.ehs-app .ehs-choice > .ehs-i { width: 40px; height: 40px; padding: 9px; border-radius: 11px; background: var(--ehs-soft); color: var(--ehs-navy); }
.ehs-app .ehs-choice strong { display: block; font-size: 15px; font-weight: 800; }
.ehs-app .ehs-choice small { display: block; font-size: 12.5px; color: var(--ehs-mut); }
.ehs-app .ehs-choice--cart { background: linear-gradient(180deg, var(--ehs-green-l), var(--ehs-green)); border-color: #1d963f; color: #fff !important; box-shadow: 0 10px 20px -10px rgba(32,164,71,.7); }
.ehs-app .ehs-choice--cart > .ehs-i { background: rgba(255,255,255,.2); color: #fff; }
.ehs-app .ehs-choice--cart small { color: rgba(255,255,255,.85); }
.ehs-app .ehs-choice--cart:hover { border-color: #1d963f; background: linear-gradient(180deg, var(--ehs-green-l), var(--ehs-green)); }
@media (max-width: 767px) { .ehs-done__choice { grid-template-columns: 1fr; } }
.ehs-app .ehs-done__btns { display: flex; flex-direction: column; gap: 10px; max-width: 360px; margin: 18px auto 14px; }
.ehs-app .ehs-perks { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 16px; font-size: 13px; color: var(--ehs-mut); }
.ehs-app .ehs-perks li { display: flex; align-items: center; gap: 5px; margin: 0; }
.ehs-app .ehs-perks .ehs-i { width: 15px; height: 15px; color: var(--ehs-green); }
.ehs-app .ehs-ups { margin-top: 10px; background: #fff; border: 1px solid var(--ehs-line); border-radius: 14px; padding: 4px 0 6px; }
.ehs-app .ehs-ups .ehs-alts-t { margin: 12px 16px 6px; }
.ehs-app .ehs-row--ups { border-bottom: 0; }

/* ---------- Modal ---------- */
.ehs-lock, .ehs-lock body { overflow: hidden !important; }
.ehs-modal { position: fixed; inset: 0; z-index: 999999; display: none; align-items: center; justify-content: center; padding: 20px; }
.ehs-modal.is-open { display: flex; }
.ehs-modal__bg { position: absolute; inset: 0; background: rgba(10,16,30,.6); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); animation: ehsFade .25s ease; }
.ehs-modal__box { position: relative; width: 100%; max-width: 820px; height: min(88vh, 860px); border-radius: 20px; box-shadow: 0 40px 90px -30px rgba(0,0,0,.6); animation: ehsUp .35s cubic-bezier(.2,.9,.3,1.1); }
.ehs-modal__box .ehs-app { border-radius: 20px; min-height: 0; }
@keyframes ehsFade { from { opacity: 0; } }
@keyframes ehsUp { from { opacity: 0; transform: translateY(24px) scale(.98); } }

/* ---------- Plutajući gumb ---------- */
.ehs-float.ehs-float {
    position: fixed; left: 16px; bottom: 18px; z-index: 9989;
    display: inline-flex; align-items: center; gap: 9px;
    padding: 8px 18px 8px 8px; border: 0; border-radius: 999px; cursor: pointer;
    background: var(--ehs-navy); color: #fff; font: inherit; font-size: 14px; font-weight: 800;
    box-shadow: 0 14px 30px -10px rgba(19,31,54,.6);
    transform: translateY(140%); opacity: 0; transition: transform .45s cubic-bezier(.2,.9,.3,1.2), opacity .3s, box-shadow .2s;
}
.ehs-float.ehs-float.is-in { transform: none; opacity: 1; }
.ehs-float.ehs-float:hover { box-shadow: 0 18px 36px -10px rgba(19,31,54,.75); transform: translateY(-2px); }
.ehs-float__ic.ehs-float__ic { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(180deg, var(--ehs-green-l), var(--ehs-green)); display: flex; align-items: center; justify-content: center; }
.ehs-float__ic.ehs-float__ic .ehs-i { width: 18px; height: 18px; }
.ehs-float--product.ehs-float--product { bottom: 88px; }

/* ---------- Banner u kategoriji ---------- */
.ehs-adv-banner {
    position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 6px 18px;
    margin: 0 0 22px; padding: 18px 22px; border-radius: 16px; overflow: hidden;
    background: radial-gradient(120% 160% at 100% 0%, rgba(53,199,90,.22) 0%, transparent 50%), linear-gradient(120deg, #16254a 0%, var(--ehs-navy) 100%);
    color: #fff; font-family: inherit;
}
.ehs-adv-banner__ic { width: 56px; height: 56px; border-radius: 14px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); display: flex; align-items: center; justify-content: center; grid-row: span 2; }
.ehs-adv-banner__ic svg { width: 32px; height: 32px; fill: none; stroke: #fff; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.ehs-adv-banner__tx strong { display: block; font-size: 18px; font-weight: 800; line-height: 1.25; margin-bottom: 3px; color: #fff; }
.ehs-adv-banner__tx span { font-size: 14px; opacity: .85; line-height: 1.4; }
.ehs-adv-banner__btn.ehs-adv-banner__btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 20px; border-radius: 12px; border: 0; cursor: pointer; background: linear-gradient(180deg, #35c75a, #20a447); color: #fff; font: inherit; font-weight: 800; font-size: 15px; white-space: nowrap; box-shadow: 0 10px 20px -10px rgba(32,164,71,.8); grid-row: span 2; transition: transform .15s; }
.ehs-adv-banner__btn.ehs-adv-banner__btn:hover { transform: translateY(-2px); }
.ehs-adv-banner__btn.ehs-adv-banner__btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.ehs-adv-banner__time { grid-column: 2; font-size: 12px; opacity: .65; }

/* ---------- Mobitel ---------- */
@media (max-width: 767px) {
    .ehs-modal { padding: 0; align-items: stretch; }
    .ehs-modal__box { max-width: none; height: 100%; border-radius: 0; }
    .ehs-modal__box .ehs-app { border-radius: 0; }
    .ehs-app .ehs-body { padding: 18px 14px 24px; }
    .ehs-app h2 { font-size: 20px; }
    .ehs-app .ehs-tiles { grid-template-columns: 1fr 1fr; }
    .ehs-app .ehs-tile { min-height: 104px; }
    .ehs-app .ehs-opt { padding: 13px 13px; gap: 11px; }
    .ehs-app .ehs-opt__tx strong { font-size: 15px; }
    .ehs-app .ehs-opt__n { font-size: 11px; padding: 3px 7px; }
    .ehs-app .ehs-opts--brand { grid-template-columns: 1fr 1fr; }
    .ehs-app .ehs-foot { padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); }
    .ehs-app .ehs-live { font-size: 12px; }
    .ehs-app .ehs-btn { padding: 10px 14px; font-size: 14px; }
    .ehs-app .ehs-card__main { flex-wrap: wrap; }
    .ehs-app .ehs-card--big .ehs-card__img { flex-basis: 100px; width: 100px; height: 100px; }
    .ehs-app .ehs-card__img { flex-basis: 90px; width: 90px; height: 90px; }
    .ehs-app .ehs-card--big .ehs-card__info { flex: 1 1 calc(100% - 116px); }
    .ehs-app .ehs-card--big .ehs-ring { position: absolute; top: -16px; right: 12px; flex: none; width: 50px; height: 50px; background: #fff; border-radius: 50%; box-shadow: 0 6px 14px -6px rgba(19,31,54,.4); padding: 3px; }
    .ehs-app .ehs-card--big .ehs-ring svg { width: 44px; height: 44px; }
    .ehs-app .ehs-card--big .ehs-ring b { top: 17px; font-size: 12px; }
    .ehs-app .ehs-card--big .ehs-ring span { display: none; }
    .ehs-app .ehs-card__buy { flex-direction: column; align-items: stretch; }
    .ehs-app .ehs-card__cta { min-width: 0; }
    .ehs-app .ehs-alts { grid-template-columns: 1fr; gap: 20px; }
    .ehs-app .ehs-alts .ehs-card__main { flex-direction: row; flex-wrap: nowrap; }
    .ehs-app .ehs-alts .ehs-card__info { flex: 1 1 0; }
    .ehs-app .ehs-alts .ehs-card__img { width: 90px; flex-basis: 90px; height: 90px; }
    .ehs-app .ehs-lead__f { grid-template-columns: 1fr; }
    .ehs-float.ehs-float { left: 12px; bottom: 14px; font-size: 13px; padding-right: 14px; }
    .ehs-float--product.ehs-float--product { bottom: 96px; }
    .ehs-adv-banner { grid-template-columns: auto 1fr; padding: 16px; }
    .ehs-adv-banner__ic { width: 46px; height: 46px; grid-row: auto; }
    .ehs-adv-banner__tx strong { font-size: 16px; }
    .ehs-adv-banner__btn.ehs-adv-banner__btn { grid-column: 1 / -1; grid-row: auto; justify-content: center; }
    .ehs-adv-banner__time { grid-column: 1 / -1; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
    .ehs-app *, .ehs-float.ehs-float, .ehs-modal__box, .ehs-modal__bg { animation: none !important; transition: none !important; }
}

/* Ikone izvan okvira savjetnika (plutajući gumb) */
.ehs-float.ehs-float .ehs-i { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Stanja gumba (teme na mobitelu mijenjaju hover/focus/active) ---------- */
.ehs-app .ehs-btn--ghost, .ehs-app .ehs-btn--ghost:hover, .ehs-app .ehs-btn--ghost:focus, .ehs-app .ehs-btn--ghost:active, .ehs-app .ehs-btn--ghost:visited { background: #fff !important; color: var(--ehs-ink) !important; border-color: #cfd6e0; }
.ehs-app .ehs-btn--primary, .ehs-app .ehs-btn--primary:hover, .ehs-app .ehs-btn--primary:focus, .ehs-app .ehs-btn--primary:active, .ehs-app .ehs-btn--primary:visited { background: var(--ehs-navy) !important; color: #fff !important; }
.ehs-app .ehs-lead .ehs-btn--primary, .ehs-app .ehs-lead .ehs-btn--primary:hover, .ehs-app .ehs-lead .ehs-btn--primary:focus, .ehs-app .ehs-lead .ehs-btn--primary:active { background: var(--ehs-green) !important; }
.ehs-app .ehs-btn--buy, .ehs-app .ehs-btn--buy:hover, .ehs-app .ehs-btn--buy:focus, .ehs-app .ehs-btn--buy:active, .ehs-app .ehs-btn--buy:visited { background: linear-gradient(180deg, var(--ehs-green-l), var(--ehs-green)) !important; color: #fff !important; }
.ehs-app .ehs-opt:focus, .ehs-app .ehs-opt:active, .ehs-app .ehs-tile:focus, .ehs-app .ehs-tile:active, .ehs-app .ehs-chip:focus, .ehs-app .ehs-chip:active, .ehs-app .ehs-resbar__btn:focus, .ehs-app .ehs-resbar__btn:active, .ehs-app .ehs-widen__opt:focus, .ehs-app .ehs-widen__opt:active, .ehs-app .ehs-choice:not(.ehs-choice--cart):focus, .ehs-app .ehs-choice:not(.ehs-choice--cart):active { background: #fff !important; color: var(--ehs-ink) !important; }
.ehs-app .ehs-opt.is-sel, .ehs-app .ehs-opt.is-sel:focus, .ehs-app .ehs-opt.is-sel:active { background: #f3fbf5 !important; }
.ehs-app .ehs-choice--cart, .ehs-app .ehs-choice--cart:hover, .ehs-app .ehs-choice--cart:focus, .ehs-app .ehs-choice--cart:active { background: linear-gradient(180deg, var(--ehs-green-l), var(--ehs-green)) !important; color: #fff !important; }
.ehs-app .ehs-link-btn, .ehs-app .ehs-link-btn:focus, .ehs-app .ehs-link-btn:active { background: transparent !important; color: var(--ehs-navy) !important; }
.ehs-app .ehs-link-btn:hover { background: var(--ehs-soft) !important; }
.ehs-app .ehs-hbtn, .ehs-app .ehs-hbtn:focus, .ehs-app .ehs-hbtn:active { background: rgba(255,255,255,.1) !important; color: #fff !important; }
.ehs-app .ehs-hbtn:hover { background: rgba(255,255,255,.2) !important; }
.ehs-app .ehs-hbtn--ghost { background: transparent !important; }
.ehs-float.ehs-float, .ehs-float.ehs-float:hover, .ehs-float.ehs-float:focus, .ehs-float.ehs-float:active { background: var(--ehs-navy) !important; color: #fff !important; }
.ehs-adv-banner__btn.ehs-adv-banner__btn, .ehs-adv-banner__btn.ehs-adv-banner__btn:hover, .ehs-adv-banner__btn.ehs-adv-banner__btn:focus, .ehs-adv-banner__btn.ehs-adv-banner__btn:active { background: linear-gradient(180deg, #35c75a, #20a447) !important; color: #fff !important; }
.ehs-app button:focus-visible, .ehs-app a:focus-visible { outline: 3px solid rgba(32,164,71,.45); outline-offset: 2px; }

/* Savjetnik iznad chat widgeta; widgeti se skrivaju dok je savjetnik otvoren */
.ehs-modal { z-index: 2147483000; }
html.ehs-lock iframe[title*="chat" i], html.ehs-lock iframe[title*="messaging" i], html.ehs-lock #tidio-chat, html.ehs-lock #crisp-chatbox, html.ehs-lock .tawk-min-container, html.ehs-lock #hubspot-messages-iframe-container, html.ehs-lock .fb_dialog, html.ehs-lock #launcher, html.ehs-lock [class*="chat-widget"], html.ehs-lock [id*="chat-widget"], html.ehs-lock .joinchat, html.ehs-lock #wh-widget-send-button { display: none !important; }

/* ---------- Odmah dostupno ---------- */
.ehs-app .ehs-stock.is-now { display: inline-flex; align-items: center; gap: 4px; color: #fff; background: linear-gradient(180deg, var(--ehs-green-l), var(--ehs-green)); font-weight: 800; }
.ehs-app .ehs-stock.is-now .ehs-i { width: 12px; height: 12px; fill: currentColor; stroke-width: 1.5; }
.ehs-app .ehs-card.is-ready:not(.is-best) { border-color: #9fd8b1; }
.ehs-app .ehs-ready-pill { display: inline-flex; align-items: center; gap: 6px; margin: 2px auto 12px; padding: 7px 13px; border-radius: 999px; background: #e9f8ee; border: 1px solid #bfe8cc; color: #137a33; font-size: 13px; font-weight: 800; }
.ehs-app .ehs-ready-pill .ehs-i { width: 15px; height: 15px; fill: currentColor; stroke-width: 1.5; }
.ehs-app .ehs-now-txt { color: #137a33; font-weight: 800; }

/* ---------- Akcije ---------- */
.ehs-app .ehs-promo-tag { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 800; color: #fff; background: var(--ehs-red); padding: 3px 8px; border-radius: 999px; }
.ehs-app .ehs-promo-tag .ehs-i { width: 11px; height: 11px; }
.ehs-app .ehs-promos { list-style: none; margin: 8px 0 0; padding: 0; display: grid; gap: 4px; }
.ehs-app .ehs-promos li { display: flex; align-items: center; gap: 6px; margin: 0; font-size: 12.5px; color: var(--ehs-mut); line-height: 1.3; }
.ehs-app .ehs-promos li .ehs-i { width: 13px; height: 13px; color: var(--ehs-red); flex: 0 0 auto; }
.ehs-app .ehs-promos li span { flex: 1 1 auto; }
.ehs-app .ehs-promos li b { color: var(--ehs-ink); white-space: nowrap; }
.ehs-app .ehs-promos li.is-best { color: #9b1c1c; background: #fff1f1; border: 1px dashed #f3b4b4; border-radius: 8px; padding: 5px 8px; font-weight: 700; }
.ehs-app .ehs-promos li.is-best b { color: var(--ehs-red); font-size: 14px; }
.ehs-app .ehs-promo-txt { color: var(--ehs-red); font-weight: 800; }
.ehs-app .ehs-resbar__promo.is-on, .ehs-app .ehs-resbar__promo.is-on:hover, .ehs-app .ehs-resbar__promo.is-on:focus, .ehs-app .ehs-resbar__promo.is-on:active { background: var(--ehs-red) !important; border-color: var(--ehs-red); color: #fff !important; }
