.cookie-notice {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: none;
    align-items: center;
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 28px;
    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.cookie-notice.active {
    display: flex;
}

.cookie-notice__text {
    font-size: 14px;
    line-height: 1.5;
    color: #333333;
}

.cookie-notice__text a {
    color: #008841;
    text-decoration: underline;
}

.cookie-notice__btn {
    flex: 0 0 auto;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .cookie-notice {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 18px 20px;
    }

    .cookie-notice__btn {
        width: 100%;
    }
}
