.cookie-card {
    position: fixed;
    bottom: 30px;
    right: 30px; /* Genelde sağ taraf daha estetiktir */
    max-width: 350px;
    background: #ffffff;
    color: #333333;
    padding: 25px;
    z-index: 10000;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    display: none; /* JS ile açılacak */
    animation: cookieFadeIn 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.cookie-card-content {
    text-align: center;
}

.cookie-card-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.cookie-card h4 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.cookie-card p {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.cookie-card p a {
    color: #df9f00;
    text-decoration: none;
    font-weight: 600;
}

.cookie-card-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    flex: 1;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: #ffbf00;
    color: #000;
}

.cookie-btn-accept:hover {
    background: #e6ac00;
    transform: translateY(-2px);
}

.cookie-btn-reject {
    background: #f5f5f5;
    color: #888;
}

.cookie-btn-reject:hover {
    background: #eeeeee;
}

@keyframes cookieFadeIn {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 576px) {
    .cookie-card {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: none;
    }
}

.cookie-manage-btn {
    position: fixed;
    bottom: 170px;
    left: 25px;
    width: 55px;
    height: 55px;
    background: darkmagenta;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9998;
    transition: all 0.3s ease;
    border: none;
    font-size: 20px;

}

.cookie-manage-btn:hover {
    transform: scale(1.1) rotate(15deg);
    background: #e6ac00;
}

.cookie-manage-btn i {
    font-size: 20px;
}

/* Tooltip (Üzerine gelince yazı çıksın) */
.cookie-manage-btn::after {
    content: "Çerez Ayarları";
    position: absolute;
    left: 55px;
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.cookie-manage-btn:hover::after {
    opacity: 1;
}