.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
}

.cookie-notice--hidden {
    display: none;
}

.cookie-notice__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.cookie-notice__content {
    flex: 1 1 16rem;
    min-width: 0;
}

.cookie-notice__title {
    font-weight: 600;
    color: #212529;
}

.cookie-notice__text {
    font-size: 0.9375rem;
    color: #495057;
}

.cookie-notice__link {
    font-weight: 500;
    white-space: nowrap;
}

.cookie-notice__actions {
    flex: 0 0 auto;
}

.cookie-notice__button {
    min-width: 5.5rem;
}

@media (prefers-reduced-motion: no-preference) {
    .cookie-notice:not(.cookie-notice--hidden) {
        animation: cookie-notice-slide-in 0.25s ease-out;
    }
}

@keyframes cookie-notice-slide-in {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 575.98px) {
    .cookie-notice__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-notice__actions {
        width: 100%;
    }

    .cookie-notice__button {
        width: 100%;
    }
}
