:root {
    --top-banner-height: 0px;
}

.site-top-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(90deg, #8a356a 0%, #a8447a 45%, #c45a2e 100%);
    box-shadow: 0 2px 12px rgba(138, 53, 106, 0.35);
    border-bottom: 2px solid rgba(238, 215, 21, 0.45);
}

.site-top-banner__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.site-top-banner__icon {
    flex-shrink: 0;
    color: #eed715;
    font-size: 1rem;
    line-height: 1;
}

.site-top-banner__text {
    margin: 0;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

body.has-top-banner {
    padding-top: calc(var(--navbar-height, 96px) + var(--top-banner-height)) !important;
}

@media (max-width: 576px) {
    .site-top-banner__text {
        font-size: 0.85rem;
    }
}

/* —— Geri sayım (kampanya) tipi —— */
.site-top-banner--countdown {
    padding: 0.6rem 1.25rem;
    min-height: 56px;
}

.site-top-banner__inner--countdown {
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.site-top-banner__promo {
    flex: 1 1 200px;
    min-width: 0;
    text-align: start;
}

.site-top-banner__headline {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.35;
}

.site-top-banner__coupon {
    color: var(--secondary-color, #eed715);
    font-weight: 800;
    letter-spacing: 0.04em;
}

.site-top-banner__subtitle {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0.15rem;
}

.site-top-banner__timer {
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
    flex-shrink: 0;
}

.site-top-banner__timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.site-top-banner__digits {
    display: flex;
    gap: 0.2rem;
}

.site-top-banner__digit {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 1.65rem;
    height: 2rem;
    padding: 0 0.25rem;
    background: var(--primary-dark, #6f2a56);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    border-radius: 4px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-top-banner__sep {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 2rem;
    padding: 0 0.1rem;
    user-select: none;
}

.site-top-banner__timer-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .site-top-banner__inner--countdown {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .site-top-banner__promo {
        text-align: center;
    }

    .site-top-banner__headline {
        font-size: 0.85rem;
    }

    .site-top-banner__digit {
        min-width: 1.45rem;
        height: 1.75rem;
        font-size: 0.95rem;
    }
}
