.cookie-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 380px;
    width: 100%;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(20px);
}

.cookie-wrapper.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.cookie-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cookie-header i {
    font-size: 32px;
    color: #4f46e5;
}

.cookie-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.cookie-text {
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 18px;
}

.cookie-text a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn {
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.btn.accept {
    background: #4f46e5;
    color: #fff;
}

.btn.accept:hover {
    background: #4338ca;
}

.btn.decline {
    background: transparent;
    color: #374151;
}

.btn.decline:hover {
    background: #f3f4f6;
}