.cookie-box {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 600px;
    background: #fff;
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    z-index: 9999;
    border: 1px solid #e5e5e5;
    animation: fadeInUp .4s ease;
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-desc {
    font-size: 14px;
    color: #555;
}

.cookie-options label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 15px;
}

.cookie-mini {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0d6efd;
    color: #fff;
    padding: 10px 15px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    font-size: 14px;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translate(-50%, 20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}
