.harmiderix-banner-visible.harmiderix-banner-position-top {
    padding-top: 116px;
}

.harmiderix-banner-visible.harmiderix-banner-position-bottom {
    padding-bottom: 116px;
}

.harmiderix-banner {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 99999;
    box-sizing: border-box;
    padding: 0;
    font-family: inherit;
}

.harmiderix-banner--top {
    top: 0;
}

.harmiderix-banner--bottom {
    bottom: 0;
}

.harmiderix-banner__inner {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
    box-sizing: border-box;
}

.harmiderix-banner__content {
    flex: 1 1 auto;
    min-width: 0;
}

.harmiderix-banner__text {
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

.harmiderix-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 0 0 auto;
}

.harmiderix-banner__form {
    margin: 0;
}

.harmiderix-button {
    appearance: none;
    border: 0;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.2;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
}

.harmiderix-button:hover,
.harmiderix-button:focus {
    transform: translateY(-1px);
    opacity: 0.96;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.harmiderix-button--primary {
    background: #2563eb;
    color: #ffffff;
}

.harmiderix-button--secondary {
    background: #ffffff;
    color: #0f172a;
}

@media (max-width: 980px) {
    .harmiderix-banner-visible.harmiderix-banner-position-top {
        padding-top: 170px;
    }

    .harmiderix-banner-visible.harmiderix-banner-position-bottom {
        padding-bottom: 170px;
    }

    .harmiderix-banner__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .harmiderix-banner__actions {
        width: 100%;
    }

    .harmiderix-banner__form,
    .harmiderix-button {
        width: 100%;
    }
}
