.adapt-r-notification {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.4;
}

.adapt-r-notification-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    width: 100%;
    padding: 12px 48px 12px 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: #004f7e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adapt-r-notification-header .adapt-r-notification-text {
    display: inline;
    max-width: calc(100% - 40px);
}

.adapt-r-notification-close {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    min-width: 32px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adapt-r-notification-info { background: #004f7e; }
.adapt-r-notification-warning { background: #d97706; }
.adapt-r-notification-success { background: #059669; }
.adapt-r-notification-error { background: #dc2626; }

.adapt-r-notification-product {
    display: block;
    width: 100%;
    flex-basis: 100%;
    order: 9999;
    margin: 12px 0 0;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: #fff;
    background: #004f7e;
    box-sizing: border-box;
    line-height: 1.4;
    clear: both;
}

@media (max-width: 480px) {
    .adapt-r-notification-header {
        font-size: 13px;
        padding: 10px 40px 10px 12px;
    }
    .adapt-r-notification-header .adapt-r-notification-text {
        max-width: 100%;
    }
}
