.package-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    width: 400px;
    max-width: 90%;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    text-align: center;
    z-index: 9999;
    animation: fadeIn 0.4s ease-in-out;
}

.popup-content h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.popup-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.popup-btn {
    margin: 10px;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
    font-size: 16px;
    font-weight: bold;
}

#popup-yes {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
}

#popup-no {
    background: #ccc;
    color: black;
}

.popup-btn:hover {
    opacity: 0.8;
}

/* Kapatma butonu */
.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}

.popup-close:hover {
    color: red;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -55%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}
.cookie-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s ease;
    z-index: 9999;
}
.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.cookie-buttons {
    margin-top: 10px;
}
.cookie-btn {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
    font-weight: bold;
    transition: 0.3s;
}
.accept {
    background: #4caf50;
    color: white;
}
.accept:hover {
    background: #45a049;
}
.reject {
    background: #f44336;
    color: white;
}
.reject:hover {
    background: #d32f2f;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}