.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 420px;
    background: #fff;
    border-radius: 14px;
    padding: 20px 20px 18px 20px;
    display: flex;
    gap: 15px;
    z-index: 9999;
    animation: fadeInUp 0.4s ease;
}

.cookie-icon {
    background: white;
    color: #20c997;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    padding: 5px;
}

.cookie-title {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    margin-bottom: 10px;
}

.cookie-text {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 12px;
}

.cookie-text a {
    color: #20c997;
    text-decoration: none;
    font-weight: 500;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-popup .btn-primary {
    background-color: #20c997;
    border-color: #20c997;
    border-radius: 8px;
}

.cookie-popup .btn-primary:hover {
    background-color: #1aa179;
    border-color: #1aa179;
}

.cookie-popup .btn-light {
    border-radius: 8px;
}

.cookie-close {
    position: absolute;
    top: 8px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 18px;
    color: #adb5bd;
    cursor: pointer;
}

.cookie-close:hover {
    color: #000;
}

/* Animasyon */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 576px) {
    .cookie-popup {
        left: 10px;
        right: 10px;
        max-width: unset;
    }
}