/* ════════════════════════════════════════════════════════════
   ALPENZAUN — Sales Boosters
   ════════════════════════════════════════════════════════════ */

.aze-boost-wrap {
    --azb-terra: #f04e23;
    --azb-terra-dark: #772008;
    --azb-black: #141414;
    --azb-khaki: #3d403a;
    --azb-cream: #fafaf8;
    --azb-steel: #a8a8a0;
    --azb-line: rgba(20, 20, 20, .08);
    --azb-green: #2e9e5b;

    font-family: 'Instrument Sans', system-ui, -apple-system, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 18px 0 0;
}
.aze-boost-wrap--cart { gap: 10px; margin: 14px 0 0; }
.aze-boost-wrap * { box-sizing: border-box; }

.aze-boost {
    font-size: 14px;
    color: var(--azb-black);
    line-height: 1.45;
}
.aze-boost-ico {
    display: inline-flex;
    flex-shrink: 0;
    color: var(--azb-terra);
}
.aze-boost-ico svg { width: 20px; height: 20px; }

/* ── PROGRESS (freeship / spend / gift) ── */
.aze-boost--progress {
    background: var(--azb-cream);
    border: 1px solid var(--azb-line);
    border-radius: 12px;
    padding: 14px 16px;
}
.aze-boost-progress-msg {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--azb-khaki);
}
.aze-boost-progress-msg strong { color: var(--azb-terra); font-weight: 800; }
.aze-boost-bar {
    height: 7px;
    background: rgba(20, 20, 20, .08);
    border-radius: 100px;
    overflow: hidden;
}
.aze-boost-bar > span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--azb-terra), #ff7a52);
    border-radius: 100px;
    transition: width .6s cubic-bezier(.4, 0, .2, 1);
}
.aze-boost--progress.is-done {
    background: rgba(46, 158, 91, .08);
    border-color: rgba(46, 158, 91, .3);
}
.aze-boost--progress.is-done .aze-boost-ico { color: var(--azb-green); }
.aze-boost--progress.is-done .aze-boost-progress-msg { color: var(--azb-green); font-weight: 700; }
.aze-boost--progress.is-done .aze-boost-progress-msg strong { color: var(--azb-green); }
.aze-boost--progress.is-done .aze-boost-bar > span { background: var(--azb-green); }

/* spend-save & gift akcenty */
.aze-boost--gift.is-done { background: rgba(240, 78, 35, .07); border-color: rgba(240, 78, 35, .3); }

/* ── COUNTDOWN ── */
.aze-boost--countdown {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, var(--azb-black) 0%, #1f1f1f 100%);
    border-radius: 12px;
    padding: 14px 18px;
    color: #fff;
}
.aze-boost--countdown .aze-boost-ico { color: var(--azb-terra); }
.aze-boost--countdown .aze-boost-ico svg { width: 24px; height: 24px; }
.aze-boost-cd-txt {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.aze-boost-cd-txt strong { font-size: 14px; font-weight: 700; color: #fff; }
.aze-boost-cd-txt span { font-size: 12px; color: rgba(255, 255, 255, .6); }
.aze-boost-cd-clock {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.aze-boost-cd-clock span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    padding: 7px 4px;
    background: rgba(255, 255, 255, .1);
    border-radius: 8px;
    font-size: 17px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: #fff;
}
.aze-boost-cd-clock i { color: var(--azb-terra); font-style: normal; font-weight: 800; }

/* ── LOW STOCK ── */
.aze-boost--lowstock {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff5f3;
    border: 1px solid rgba(240, 78, 35, .25);
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--azb-terra-dark);
}
.aze-boost--lowstock .aze-boost-ico { color: var(--azb-terra); }
.aze-boost--lowstock .aze-boost-ico svg { width: 18px; height: 18px; }
.aze-boost-lowstock-txt strong { color: var(--azb-terra); font-weight: 800; }

/* ── SOCIAL (viewers + sold) ── */
.aze-boost--social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    padding: 2px 0;
}
.aze-boost-social-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--azb-khaki);
}
.aze-boost-social-item strong { color: var(--azb-black); font-weight: 800; }
.aze-boost-social-item svg { width: 15px; height: 15px; color: var(--azb-green); }
.aze-boost-pulse {
    width: 9px; height: 9px;
    background: var(--azb-green);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}
.aze-boost-pulse::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--azb-green);
    opacity: .4;
    animation: aze-boost-pulse 1.8s ease-out infinite;
}
@keyframes aze-boost-pulse {
    0%   { transform: scale(.6); opacity: .5; }
    100% { transform: scale(1.9); opacity: 0; }
}

/* ── TRUST BADGES ── */
.aze-boost--trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 16px;
    background: var(--azb-cream);
    border: 1px solid var(--azb-line);
    border-radius: 12px;
    padding: 16px 18px;
}
.aze-boost-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--azb-black);
}
.aze-boost-trust-ico {
    width: 34px; height: 34px;
    flex-shrink: 0;
    background: rgba(240, 78, 35, .1);
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--azb-terra);
}
.aze-boost-trust-ico svg { width: 17px; height: 17px; }

/* ── VOLUME ── */
.aze-boost--volume {
    background: #fff;
    border: 1px solid var(--azb-line);
    border-radius: 12px;
    padding: 16px 18px;
}
.aze-boost-volume-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--azb-black);
    margin-bottom: 12px;
}
.aze-boost-volume-tiers {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.aze-boost-volume-tier {
    flex: 1;
    min-width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 12px 10px;
    background: var(--azb-cream);
    border: 1px solid var(--azb-line);
    border-radius: 10px;
    transition: border-color .2s, transform .2s;
}
.aze-boost-volume-tier:hover {
    border-color: rgba(240, 78, 35, .4);
    transform: translateY(-2px);
}
.aze-boost-volume-qty {
    font-size: 12px;
    font-weight: 600;
    color: var(--azb-khaki);
}
.aze-boost-volume-disc {
    font-size: 18px;
    font-weight: 800;
    color: var(--azb-terra);
    letter-spacing: -.02em;
}

/* ── ANNOUNCEMENT BAR ── */
.aze-boost-announce {
    position: relative;
    background: linear-gradient(135deg, var(--azb-terra, #f04e23) 0%, #d63d13 100%);
    color: #fff;
    font-family: 'Instrument Sans', system-ui, -apple-system, sans-serif;
    z-index: 1001;
}
.aze-boost-announce-in {
    max-width: 1650px;
    margin: 0 auto;
    padding: 9px 48px 9px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    text-align: center;
}
.aze-boost-announce-txt {
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: .01em;
}
.aze-boost-announce-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}
.aze-boost-announce-link svg { width: 13px; height: 13px; }
.aze-boost-announce-x {
    position: absolute;
    top: 50%; right: 14px;
    transform: translateY(-50%);
    width: 26px; height: 26px;
    background: rgba(255, 255, 255, .18);
    border: 0;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.aze-boost-announce-x:hover { background: rgba(0, 0, 0, .25); }
.aze-boost-announce-x svg { width: 13px; height: 13px; }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
    .aze-boost--countdown { flex-wrap: wrap; gap: 10px; }
    .aze-boost-cd-clock { width: 100%; justify-content: flex-start; }
    .aze-boost--trust { grid-template-columns: 1fr; }
    .aze-boost-volume-tiers { gap: 8px; }
    .aze-boost-volume-tier { min-width: 0; padding: 10px 6px; }
    .aze-boost-volume-disc { font-size: 16px; }
    .aze-boost-announce-in { padding: 8px 40px 8px 14px; gap: 8px; }
    .aze-boost-announce-txt { font-size: 12.5px; }
}
