/**
 * Announcement Bar Styles
 * Dismissible promotional banner at top of page
 */

.announcement-bar {
    background: linear-gradient(90deg, #d4488e 0%, #b03a78 100%);
    color: #fff;
    padding: 12px 0;
    font-size: 14px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.announcement-bar.is-hidden {
    display: none;
}

.announcement-bar__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding-right: 40px;
}

.announcement-bar__text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.announcement-bar__text svg {
    flex-shrink: 0;
}

.announcement-bar a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

.announcement-bar a:hover {
    color: #f9d342;
}

.announcement-bar__close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.announcement-bar__close:hover {
    background: rgba(255,255,255,0.3);
}

/* Mobile */
@media (max-width: 1024px) {
    .announcement-bar {
        padding: 10px 40px 10px 16px;
    }

    .announcement-bar__text {
        font-size: 13px;
        text-align: center;
    }

    .announcement-bar__close {
        right: 10px;
    }
}
