.cookie-notification {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 370px;
    max-width: 90%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 16px;
    z-index: 1000;
    transform: translateX(120%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    display: none;
}

.cookie-notification--visible {
    transform: translateX(0);
    opacity: 1;
}

.cookie-notification__content {
    position: relative;
}

.cookie-notification__text {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #333;
}

#showFullConsent {
    color: #0066cc;
    text-decoration: underline;
}

.cookie-notification__buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cookie-notification__btn {
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s ease;
    flex-grow: 1;
    text-align: center;
}

.cookie-notification__btn--accept {
    background: #404040;
    color: #fff;
    border: none;
}

.cookie-notification__btn--accept:hover {
    background: #731919;
}

.cookie-notification__btn--reject {
    background: #fff;
    color: #333;
    border: 1px solid #ccc;
}

.cookie-notification__btn--reject:hover {
    background: #f5f5f5;
}

.cookie-notification__close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border: none;
    background: none;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    color: #999;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-notification__close:hover {
    color: #666;
}

.cookie-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}
.cookie-modal-overlay.active {
    display: flex;
}
.cookie-modal {
    background: #fff;
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    padding: 30px 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.cookie-modal__close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #888;
    line-height: 1;
}
.cookie-modal__close:hover {
    color: #333;
}
.cookie-modal__content h3 {
    font-size: 20px;
}
.cookie-modal__content h4 {
    font-size: 16px;
}
.cookie-modal__content p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}
.cookie-modal__link {
    color: #007bff;
    text-decoration: underline;
}
.cookie-modal__link:hover {
    text-decoration: none;
}

@media (max-width: 480px) {
    .cookie-notification {
        width: calc(100% - 40px);
        bottom: 10px;
        right: 10px;
    }

    .cookie-notification__buttons {
        flex-direction: column;
    }

    .cookie-notification__btn {
        width: 100%;
    }
}