/* ============================================================
   HOSH — USP Bar (konkurencni vyhody)
   Verze: 1.0
   Nahrat do: Shoptet Admin -> Vzhled -> Sablony -> Vlastni CSS
   HTML banner: hosh-usp-bar.html
   ============================================================ */

.hosh-usp {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-top: 2px solid var(--hosh-accent);
    border-bottom: 1px solid var(--hosh-border);
    font-family: var(--hosh-sans);
    width: 100%;
}

.hosh-usp-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 32px;
    border-right: 1px solid var(--hosh-border);
    border-bottom: none;
}
.hosh-usp-item:last-child { border-right: none; }

.hosh-usp-icon { flex-shrink: 0; opacity: 0.85; }
.hosh-usp-icon svg { display: block; width: 26px; height: 26px; }

.hosh-usp-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hosh-usp-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--hosh-text);
    line-height: 1.35;
}

.hosh-usp-sub {
    font-size: 12px;
    font-weight: 300;
    color: #666;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

/* Tablet — 2x2 grid */
@media (max-width: 992px) {
    .hosh-usp-item {
        flex: 0 0 50%;
        padding: 18px 20px;
        border-right: none;
        border-bottom: 1px solid var(--hosh-border);
    }
    .hosh-usp-item:nth-child(odd) {
        border-right: 1px solid var(--hosh-border);
    }
    .hosh-usp-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
    .hosh-usp-icon svg { width: 20px; height: 20px; }
    .hosh-usp-title { font-size: 9.5px; }
    .hosh-usp-sub { font-size: 10.5px; }
}

/* Mobil — 2x2 grid, kompaktnejsi */
@media (max-width: 480px) {
    .hosh-usp-item {
        flex: 0 0 50%;
        padding: 14px 14px;
        gap: 10px;
    }
    .hosh-usp-icon svg { width: 18px; height: 18px; }
    .hosh-usp-title { font-size: 8.5px; letter-spacing: 0.12em; }
    .hosh-usp-sub { font-size: 10px; }
}

/* Maly mobil — plna sirka, pod sebou */
@media (max-width: 360px) {
    .hosh-usp-item {
        flex: 0 0 100%;
        border-right: none !important;
        border-bottom: 1px solid var(--hosh-border) !important;
        padding: 13px 16px;
        gap: 12px;
    }
    .hosh-usp-item:last-child { border-bottom: none !important; }
    .hosh-usp-title { font-size: 9px; letter-spacing: 0.13em; }
    .hosh-usp-sub { font-size: 10.5px; }
}
