@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 360px; /* Biraz daha geniş */
    background: #ffffff;
    padding: 25px; /* Daha geniş padding */
    border-radius: 12px; /* Daha yumuşak köşeler */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Daha zarif gölge */
    border-top: 3px solid #1b6fbf; /* Üstte mavi kenarlık */
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Daha yumuşak animasyon */
    font-family: 'Inter', sans-serif; /* Kurumsal font */
}

.cookie-popup.visible {
    opacity: 1;
    transform: translateY(0);
}

.cookie-popup h2 {
    font-size: 1.4rem; /* Biraz daha büyük başlık */
    font-weight: 600;
    color: #1a202c; /* Daha koyu gri */
    margin: 0 0 12px;
    line-height: 1.3;
}

.cookie-popup p {
    font-size: 0.95rem; /* Daha okunabilir font boyutu */
    font-weight: 400;
    color: #4a5568; /* Daha yumuşak gri */
    line-height: 1.6;
    margin: 0 0 20px;
}

.cookie-btn {
    padding: 10px 25px; /* Daha geniş butonlar */
    border: none;
    border-radius: 6px; /* Hafif yuvarlak köşeler */
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Hafif gölge */
}

.accept-btn {
    background: #1b6fbf; /* Daha sofistike bir mavi */
    color: #fff;
    margin-right: 15px;
}

.accept-btn:hover {
    background: #155a9b; /* Koyu mavi */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px); /* Hafif yukarı kalkma */
}

.reject-btn {
    background: #c53030; /* Kurumsal bir kırmızı */
    color: #fff;
}

.reject-btn:hover {
    background: #9b2c2c; /* Koyu kırmızı */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.cookie-link {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1b6fbf; /* Mavi */
    text-decoration: none;
    transition: all 0.3s ease;
}

.cookie-link:hover {
    color: #155a9b; /* Koyu mavi */
    text-decoration: underline;
}

.pulse-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.pulse-circle {
    width: 50px;
    height: 50px;
    background: #1b6fbf; /* Mavi, butonla uyumlu */
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: check 0.5s ease forwards; /* Pulse yerine check animasyonu */
}

.pulse-circle::after {
    content: '✔';
    font-size: 24px;
    color: #fff;
    opacity: 0;
    transform: scale(0);
    animation: checkmark 0.3s ease forwards 0.2s;
}

@keyframes check {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes checkmark {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}