.tazaj-header-top {
    display: block;
    box-sizing: border-box;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 calc(50% - 50vw) !important;
    background: var(--primary, #0021ff) !important;
    color: #ffffff !important;
    position: relative;
    z-index: 7;
    border: 0 !important;
    border-radius: 0 !important;
}

.tazaj-header-top__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 6px 14px;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    text-align: center;
}

.tazaj-header-top__text {
    color: #ffffff !important;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
}

.tazaj-header-top__coupon {
    border: 0;
    outline: 0;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 29px;
    padding: 5px 14px;
    border-radius: 999px;
    border: 1px solid var(--header-top-coupon-border, #9cb2ff);
    background: var(--header-top-coupon-bg, #e8efff);
    color: var(--header-top-coupon-color, #1d4ed8);
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.tazaj-header-top__coupon:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(12, 24, 68, 0.2);
    color: var(--header-top-coupon-color, #1d4ed8);
}

.tazaj-header-top__coupon .fa-copy {
    font-size: 13px;
}

.tazaj-header-top__coupon.is-copied {
    background: #e7fff0;
    color: #0e9f4f;
}

.tazaj-header-top__coupon--static {
    cursor: default;
    transform: none;
    box-shadow: none;
}

@media (max-width: 767px) {
    .tazaj-header-top__inner {
        padding: 6px 12px;
        gap: 6px;
        min-height: 34px;
    }

    .tazaj-header-top__text {
        font-size: 12px;
    }

    .tazaj-header-top__coupon {
        min-height: 26px;
        padding: 4px 10px;
        font-size: 12px;
        gap: 6px;
    }

    .tazaj-header-top__coupon .fa-copy {
        font-size: 11px;
    }
}
