/* =========================================================
   ALİBEYKÖY ADIYAMAN ÇİĞ KÖFTE
   KAMPANYA / DUYURU BARI
========================================================= */

.announcement-bar,
.announcement-bar * {
    box-sizing: border-box;
}

.announcement-bar {
    position: relative;
    z-index: 1000;
    width: 100%;
    overflow: hidden;
    background:
        linear-gradient(
            100deg,
            #032c20 0%,
            #074332 48%,
            #032c20 100%
        );
    color: #ffffff;
    font-family: "Inter", Arial, sans-serif;
}

.announcement-bar::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(240, 209, 122, 0.7),
            transparent
        );
}

.announcement-bar::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 260px;
    height: 180px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    filter: blur(24px);
    pointer-events: none;
}

.announcement-bar__inner {
    position: relative;
    display: grid;
    width: min(calc(100% - 48px), 1450px);
    min-height: 44px;
    grid-template-columns: 26px minmax(0, 1fr) 26px;
    align-items: center;
    gap: 16px;
    margin: 0 auto;
}

/* ALTIN VURGU ÇİZGİLERİ */

.announcement-bar__accent {
    position: relative;
    display: block;
    width: 26px;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            #e6bd56
        );
}

.announcement-bar__accent::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -1px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #f0d17a;
    box-shadow: 0 0 0 4px rgba(240, 209, 122, 0.1);
    transform: translateY(-50%);
}

.announcement-bar__accent--right {
    background:
        linear-gradient(
            90deg,
            #e6bd56,
            transparent
        );
}

.announcement-bar__accent--right::after {
    right: auto;
    left: -1px;
}

/* MESAJ SAHNESİ */

.announcement-bar__stage {
    position: relative;
    min-width: 0;
    height: 44px;
    overflow: hidden;
}

/* DUYURU MESAJLARI */

.announcement-message {
    position: absolute;
    inset: 0;
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    color: rgba(255, 255, 255, 0.93);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.012em;
    line-height: 1.35;
    text-align: center;
    white-space: nowrap;
    transform: translateX(54px);
    transition:
        opacity 0.48s ease,
        visibility 0.48s ease,
        transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.announcement-message.is-active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.announcement-message.is-leaving {
    z-index: 1;
    opacity: 0;
    visibility: visible;
    transform: translateX(-54px);
}

/* MESAJ ETİKETİ */

.announcement-message__label {
    flex: 0 0 auto;
    color: #f0d17a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.announcement-message__divider {
    width: 1px;
    height: 14px;
    flex: 0 0 1px;
    background: rgba(240, 209, 122, 0.46);
}

.announcement-message__text {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* TABLET */

@media (max-width: 900px) {
    .announcement-bar__inner {
        width: calc(100% - 32px);
        grid-template-columns: 18px minmax(0, 1fr) 18px;
        gap: 11px;
    }

    .announcement-bar__accent {
        width: 18px;
    }

    .announcement-message {
        gap: 10px;
        font-size: 11px;
    }

    .announcement-message__label {
        font-size: 9px;
    }
}

/* MOBİL */

@media (max-width: 640px) {
    .announcement-bar__inner {
        width: calc(100% - 20px);
        min-height: 46px;
        grid-template-columns: 8px minmax(0, 1fr) 8px;
        gap: 7px;
    }

    .announcement-bar__stage {
        height: 46px;
    }

    .announcement-bar__accent {
        width: 8px;
    }

    .announcement-bar__accent::after {
        width: 3px;
        height: 3px;
        box-shadow: none;
    }

    .announcement-message {
        gap: 7px;
        font-size: 10px;
        letter-spacing: 0;
    }

    .announcement-message__label {
        font-size: 8px;
        letter-spacing: 0.1em;
    }

    .announcement-message__divider {
        height: 12px;
    }
}

@media (max-width: 390px) {
    .announcement-message {
        font-size: 9.5px;
    }

    .announcement-message__label {
        display: none;
    }

    .announcement-message__divider {
        display: none;
    }
}

/* HAREKET AZALTMA TERCİHİ */

@media (prefers-reduced-motion: reduce) {
    .announcement-message {
        transition:
            opacity 0.01ms linear,
            visibility 0.01ms linear;
        transform: none;
    }

    .announcement-message.is-leaving {
        transform: none;
    }
}